POL Price: $0.442687 (-2.23%)
 

Overview

Max Total Supply

1,000,000,000 H3RO3S

Holders

1,033

Total Transfers

-

Market

Price

$0.00 @ 0.000000 POL

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
H3RO3S

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at polygonscan.com on 2021-12-16
*/

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/Address.sol


// OpenZeppelin Contracts v4.4.0 (utils/Address.sol)

pragma solidity ^0.8.0;

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

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

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

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

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

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

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

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

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

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

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

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

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

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.0 (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: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

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() {
        _transferOwnership(_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 {
        _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: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)

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/utils/SafeERC20.sol


// OpenZeppelin Contracts v4.4.0 (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;



/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using Address for address;

    function safeTransfer(
        IERC20 token,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(
        IERC20 token,
        address from,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        uint256 newAllowance = token.allowance(address(this), spender) + value;
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            uint256 newAllowance = oldAllowance - value;
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
        }
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        if (returndata.length > 0) {
            // Return data is optional
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol)

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/token/ERC20/ERC20.sol


// OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol)

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 Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `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: g.sol


pragma solidity ^0.8.0;






contract H3RO3S is ERC20,Ownable {

    using SafeERC20 for ERC20;

    address payable public treasury;

    uint256 public publicPriceWei;

    mapping(uint256 => uint256) public specificPrices;  // Price including all decimals for different walletTypes

    mapping(address => uint256) public specificWallets; // 0 for publicSale, choose number for others

    mapping(IERC20 => bool) public supportedBuyTokens;  // supported Tokens used for buying


    constructor(string memory _name,string memory _symbol,uint256 supply,address payable _treasury) ERC20(_name,_symbol){
        _mint(_msgSender(),supply*(10**decimals()));
        treasury = _treasury;
    }

    function setPublicPrice(uint256 _priceWei) onlyOwner() public {
        publicPriceWei = _priceWei;
    }

    function setSpecificPrices(uint256[] memory walletTypes,uint256[] memory priceInWei) onlyOwner() public {
        require(walletTypes.length == priceInWei.length,"Array length not equal");
        for (uint256 i = 0; i < walletTypes.length; i++) {
            specificPrices[walletTypes[i]] = priceInWei[i];
        }
    }

    function setSpecificWallets(address[] memory wallets,uint256[] memory pricesInWei) onlyOwner() public {
        require(wallets.length == pricesInWei.length,"Array length not equal");
        for (uint256 i = 0; i < wallets.length; i++) {
            specificWallets[wallets[i]] = pricesInWei[i];
        }
    }

    function setSupportedBuyTokens(address[] memory tokens,bool[] memory supportedOr) public onlyOwner() {
        require(tokens.length == supportedOr.length,"Array length not equal");
        for (uint256 i = 0; i < tokens.length; i++) {
            supportedBuyTokens[IERC20(tokens[i])] = supportedOr[i];
        }
    }

    function buy(uint256 amountOfHero,address BuyToken) public {
        require(supportedBuyTokens[IERC20(BuyToken)],"Unsupported Token for Buying");
        uint256 cost;
        if(specificWallets[_msgSender()] == 0){
            cost = amountOfHero * publicPriceWei;
        }else{
            cost = amountOfHero * specificPrices[specificWallets[_msgSender()]];
        }
        require(ERC20(BuyToken).transferFrom(_msgSender(),treasury,cost),"Transfer of Buying TOken Failed");
    }


}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint256","name":"supply","type":"uint256"},{"internalType":"address payable","name":"_treasury","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":[{"internalType":"uint256","name":"amountOfHero","type":"uint256"},{"internalType":"address","name":"BuyToken","type":"address"}],"name":"buy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicPriceWei","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_priceWei","type":"uint256"}],"name":"setPublicPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"walletTypes","type":"uint256[]"},{"internalType":"uint256[]","name":"priceInWei","type":"uint256[]"}],"name":"setSpecificPrices","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"wallets","type":"address[]"},{"internalType":"uint256[]","name":"pricesInWei","type":"uint256[]"}],"name":"setSpecificWallets","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"tokens","type":"address[]"},{"internalType":"bool[]","name":"supportedOr","type":"bool[]"}],"name":"setSupportedBuyTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"specificPrices","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"specificWallets","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"name":"supportedBuyTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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"},{"inputs":[],"name":"treasury","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b50604051620019793803806200197983398101604081905262000034916200036a565b8351849084906200004d9060039060208501906200020d565b508051620000639060049060208401906200020d565b505050620000806200007a620000cf60201b60201c565b620000d3565b620000a533620000936012600a62000463565b6200009f908562000531565b62000125565b600680546001600160a01b0319166001600160a01b039290921691909117905550620005bc915050565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620001805760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060026000828254620001949190620003ff565b90915550506001600160a01b03821660009081526020819052604081208054839290620001c3908490620003ff565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b8280546200021b9062000553565b90600052602060002090601f0160209004810192826200023f57600085556200028a565b82601f106200025a57805160ff19168380011785556200028a565b828001600101855582156200028a579182015b828111156200028a5782518255916020019190600101906200026d565b50620002989291506200029c565b5090565b5b808211156200029857600081556001016200029d565b600082601f830112620002c557600080fd5b81516001600160401b0380821115620002e257620002e2620005a6565b604051601f8301601f19908116603f011681019082821181831017156200030d576200030d620005a6565b816040528381526020925086838588010111156200032a57600080fd5b600091505b838210156200034e57858201830151818301840152908201906200032f565b83821115620003605760008385830101525b9695505050505050565b600080600080608085870312156200038157600080fd5b84516001600160401b03808211156200039957600080fd5b620003a788838901620002b3565b95506020870151915080821115620003be57600080fd5b50620003cd87828801620002b3565b60408701516060880151919550935090506001600160a01b0381168114620003f457600080fd5b939692955090935050565b6000821982111562000415576200041562000590565b500190565b600181815b808511156200045b5781600019048211156200043f576200043f62000590565b808516156200044d57918102915b93841c93908002906200041f565b509250929050565b60006200047460ff8416836200047b565b9392505050565b6000826200048c575060016200052b565b816200049b575060006200052b565b8160018114620004b45760028114620004bf57620004df565b60019150506200052b565b60ff841115620004d357620004d362000590565b50506001821b6200052b565b5060208310610133831016604e8410600b841016171562000504575081810a6200052b565b6200051083836200041a565b806000190482111562000527576200052762000590565b0290505b92915050565b60008160001904831182151516156200054e576200054e62000590565b500290565b600181811c908216806200056857607f821691505b602082108114156200058a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6113ad80620005cc6000396000f3fe608060405234801561001057600080fd5b50600436106101585760003560e01c80637deb6025116100c3578063a9059cbb1161007c578063a9059cbb146102f1578063c627525514610304578063da91a43114610317578063dd62ed3e1461032a578063e0bac19414610363578063f2fde38b1461038657600080fd5b80637deb60251461027f57806385c1cb89146102925780638da5cb5b146102b257806395d89b41146102c35780639f0cc5b3146102cb578063a457c2d7146102de57600080fd5b8063395093511161011557806339509351146101f2578063498a5ea4146102055780635d4638101461021a57806361d027b31461022357806370a082311461024e578063715018a61461027757600080fd5b806303966bf91461015d57806306fdde0314610190578063095ea7b3146101a557806318160ddd146101c857806323b872dd146101d0578063313ce567146101e3575b600080fd5b61017d61016b366004610eeb565b60096020526000908152604090205481565b6040519081526020015b60405180910390f35b610198610399565b6040516101879190611176565b6101b86101b3366004610f89565b61042b565b6040519015158152602001610187565b60025461017d565b6101b86101de366004610f48565b610441565b60405160128152602001610187565b6101b8610200366004610f89565b6104f0565b6102186102133660046110e4565b61052c565b005b61017d60075481565b600654610236906001600160a01b031681565b6040516001600160a01b039091168152602001610187565b61017d61025c366004610eeb565b6001600160a01b031660009081526020819052604090205490565b6102186105e5565b61021861028d366004611151565b61061b565b61017d6102a0366004611138565b60086020526000908152604090205481565b6005546001600160a01b0316610236565b6101986107bb565b6102186102d9366004610fb5565b6107ca565b6101b86102ec366004610f89565b610895565b6101b86102ff366004610f89565b61092e565b610218610312366004611138565b61093b565b610218610325366004611080565b61096a565b61017d610338366004610f0f565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6101b8610371366004610eeb565b600a6020526000908152604090205460ff1681565b610218610394366004610eeb565b610a30565b6060600380546103a8906112bc565b80601f01602080910402602001604051908101604052809291908181526020018280546103d4906112bc565b80156104215780601f106103f657610100808354040283529160200191610421565b820191906000526020600020905b81548152906001019060200180831161040457829003601f168201915b5050505050905090565b6000610438338484610acb565b50600192915050565b600061044e848484610bef565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156104d85760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6104e58533858403610acb565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610438918590610527908690611285565b610acb565b6005546001600160a01b031633146105565760405162461bcd60e51b81526004016104cf906111fb565b80518251146105775760405162461bcd60e51b81526004016104cf906111cb565b60005b82518110156105e05781818151811061059557610595611328565b6020026020010151600860008584815181106105b3576105b3611328565b602002602001015181526020019081526020016000208190555080806105d8906112f7565b91505061057a565b505050565b6005546001600160a01b0316331461060f5760405162461bcd60e51b81526004016104cf906111fb565b6106196000610dbe565b565b6001600160a01b0381166000908152600a602052604090205460ff166106835760405162461bcd60e51b815260206004820152601c60248201527f556e737570706f7274656420546f6b656e20666f7220427579696e670000000060448201526064016104cf565b336000908152600960205260408120546106ab576007546106a4908461129d565b90506106d5565b33600090815260096020908152604080832054835260089091529020546106d2908461129d565b90505b6001600160a01b0382166323b872dd3360065460405160e084901b6001600160e01b03191681526001600160a01b0392831660048201529116602482015260448101849052606401602060405180830381600087803b15801561073757600080fd5b505af115801561074b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061076f919061111b565b6105e05760405162461bcd60e51b815260206004820152601f60248201527f5472616e73666572206f6620427579696e6720544f6b656e204661696c65640060448201526064016104cf565b6060600480546103a8906112bc565b6005546001600160a01b031633146107f45760405162461bcd60e51b81526004016104cf906111fb565b80518251146108155760405162461bcd60e51b81526004016104cf906111cb565b60005b82518110156105e05781818151811061083357610833611328565b6020026020010151600a600085848151811061085157610851611328565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061088d816112f7565b915050610818565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156109175760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016104cf565b6109243385858403610acb565b5060019392505050565b6000610438338484610bef565b6005546001600160a01b031633146109655760405162461bcd60e51b81526004016104cf906111fb565b600755565b6005546001600160a01b031633146109945760405162461bcd60e51b81526004016104cf906111fb565b80518251146109b55760405162461bcd60e51b81526004016104cf906111cb565b60005b82518110156105e0578181815181106109d3576109d3611328565b6020026020010151600960008584815181106109f1576109f1611328565b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020819055508080610a28906112f7565b9150506109b8565b6005546001600160a01b03163314610a5a5760405162461bcd60e51b81526004016104cf906111fb565b6001600160a01b038116610abf5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104cf565b610ac881610dbe565b50565b6001600160a01b038316610b2d5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104cf565b6001600160a01b038216610b8e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104cf565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610c535760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016104cf565b6001600160a01b038216610cb55760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016104cf565b6001600160a01b03831660009081526020819052604090205481811015610d2d5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016104cf565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610d64908490611285565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610db091815260200190565b60405180910390a350505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600082601f830112610e2157600080fd5b81356020610e36610e3183611261565b611230565b80838252828201915082860187848660051b8901011115610e5657600080fd5b60005b85811015610e7e578135610e6c81611354565b84529284019290840190600101610e59565b5090979650505050505050565b600082601f830112610e9c57600080fd5b81356020610eac610e3183611261565b80838252828201915082860187848660051b8901011115610ecc57600080fd5b60005b85811015610e7e57813584529284019290840190600101610ecf565b600060208284031215610efd57600080fd5b8135610f0881611354565b9392505050565b60008060408385031215610f2257600080fd5b8235610f2d81611354565b91506020830135610f3d81611354565b809150509250929050565b600080600060608486031215610f5d57600080fd5b8335610f6881611354565b92506020840135610f7881611354565b929592945050506040919091013590565b60008060408385031215610f9c57600080fd5b8235610fa781611354565b946020939093013593505050565b60008060408385031215610fc857600080fd5b823567ffffffffffffffff80821115610fe057600080fd5b610fec86838701610e10565b935060209150818501358181111561100357600080fd5b85019050601f8101861361101657600080fd5b8035611024610e3182611261565b80828252848201915084840189868560051b870101111561104457600080fd5b600094505b8385101561107057803561105c81611369565b835260019490940193918501918501611049565b5080955050505050509250929050565b6000806040838503121561109357600080fd5b823567ffffffffffffffff808211156110ab57600080fd5b6110b786838701610e10565b935060208501359150808211156110cd57600080fd5b506110da85828601610e8b565b9150509250929050565b600080604083850312156110f757600080fd5b823567ffffffffffffffff8082111561110f57600080fd5b6110b786838701610e8b565b60006020828403121561112d57600080fd5b8151610f0881611369565b60006020828403121561114a57600080fd5b5035919050565b6000806040838503121561116457600080fd5b823591506020830135610f3d81611354565b600060208083528351808285015260005b818110156111a357858101830151858201604001528201611187565b818111156111b5576000604083870101525b50601f01601f1916929092016040019392505050565b602080825260169082015275105c9c985e481b195b99dd1a081b9bdd08195c5d585b60521b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b604051601f8201601f1916810167ffffffffffffffff811182821017156112595761125961133e565b604052919050565b600067ffffffffffffffff82111561127b5761127b61133e565b5060051b60200190565b6000821982111561129857611298611312565b500190565b60008160001904831182151516156112b7576112b7611312565b500290565b600181811c908216806112d057607f821691505b602082108114156112f157634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561130b5761130b611312565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610ac857600080fd5b8015158114610ac857600080fdfea264697066735822122086ba06a08ed52ac98034fc52fe236444beed1280c62b530b1bbfc412a33cdbdb64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000003b9aca0000000000000000000000000044c2588ea953739b439df6582b5b1492c3e7a44700000000000000000000000000000000000000000000000000000000000000064833524f3353000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064833524f33530000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101585760003560e01c80637deb6025116100c3578063a9059cbb1161007c578063a9059cbb146102f1578063c627525514610304578063da91a43114610317578063dd62ed3e1461032a578063e0bac19414610363578063f2fde38b1461038657600080fd5b80637deb60251461027f57806385c1cb89146102925780638da5cb5b146102b257806395d89b41146102c35780639f0cc5b3146102cb578063a457c2d7146102de57600080fd5b8063395093511161011557806339509351146101f2578063498a5ea4146102055780635d4638101461021a57806361d027b31461022357806370a082311461024e578063715018a61461027757600080fd5b806303966bf91461015d57806306fdde0314610190578063095ea7b3146101a557806318160ddd146101c857806323b872dd146101d0578063313ce567146101e3575b600080fd5b61017d61016b366004610eeb565b60096020526000908152604090205481565b6040519081526020015b60405180910390f35b610198610399565b6040516101879190611176565b6101b86101b3366004610f89565b61042b565b6040519015158152602001610187565b60025461017d565b6101b86101de366004610f48565b610441565b60405160128152602001610187565b6101b8610200366004610f89565b6104f0565b6102186102133660046110e4565b61052c565b005b61017d60075481565b600654610236906001600160a01b031681565b6040516001600160a01b039091168152602001610187565b61017d61025c366004610eeb565b6001600160a01b031660009081526020819052604090205490565b6102186105e5565b61021861028d366004611151565b61061b565b61017d6102a0366004611138565b60086020526000908152604090205481565b6005546001600160a01b0316610236565b6101986107bb565b6102186102d9366004610fb5565b6107ca565b6101b86102ec366004610f89565b610895565b6101b86102ff366004610f89565b61092e565b610218610312366004611138565b61093b565b610218610325366004611080565b61096a565b61017d610338366004610f0f565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6101b8610371366004610eeb565b600a6020526000908152604090205460ff1681565b610218610394366004610eeb565b610a30565b6060600380546103a8906112bc565b80601f01602080910402602001604051908101604052809291908181526020018280546103d4906112bc565b80156104215780601f106103f657610100808354040283529160200191610421565b820191906000526020600020905b81548152906001019060200180831161040457829003601f168201915b5050505050905090565b6000610438338484610acb565b50600192915050565b600061044e848484610bef565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156104d85760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6104e58533858403610acb565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610438918590610527908690611285565b610acb565b6005546001600160a01b031633146105565760405162461bcd60e51b81526004016104cf906111fb565b80518251146105775760405162461bcd60e51b81526004016104cf906111cb565b60005b82518110156105e05781818151811061059557610595611328565b6020026020010151600860008584815181106105b3576105b3611328565b602002602001015181526020019081526020016000208190555080806105d8906112f7565b91505061057a565b505050565b6005546001600160a01b0316331461060f5760405162461bcd60e51b81526004016104cf906111fb565b6106196000610dbe565b565b6001600160a01b0381166000908152600a602052604090205460ff166106835760405162461bcd60e51b815260206004820152601c60248201527f556e737570706f7274656420546f6b656e20666f7220427579696e670000000060448201526064016104cf565b336000908152600960205260408120546106ab576007546106a4908461129d565b90506106d5565b33600090815260096020908152604080832054835260089091529020546106d2908461129d565b90505b6001600160a01b0382166323b872dd3360065460405160e084901b6001600160e01b03191681526001600160a01b0392831660048201529116602482015260448101849052606401602060405180830381600087803b15801561073757600080fd5b505af115801561074b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061076f919061111b565b6105e05760405162461bcd60e51b815260206004820152601f60248201527f5472616e73666572206f6620427579696e6720544f6b656e204661696c65640060448201526064016104cf565b6060600480546103a8906112bc565b6005546001600160a01b031633146107f45760405162461bcd60e51b81526004016104cf906111fb565b80518251146108155760405162461bcd60e51b81526004016104cf906111cb565b60005b82518110156105e05781818151811061083357610833611328565b6020026020010151600a600085848151811061085157610851611328565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061088d816112f7565b915050610818565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156109175760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016104cf565b6109243385858403610acb565b5060019392505050565b6000610438338484610bef565b6005546001600160a01b031633146109655760405162461bcd60e51b81526004016104cf906111fb565b600755565b6005546001600160a01b031633146109945760405162461bcd60e51b81526004016104cf906111fb565b80518251146109b55760405162461bcd60e51b81526004016104cf906111cb565b60005b82518110156105e0578181815181106109d3576109d3611328565b6020026020010151600960008584815181106109f1576109f1611328565b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020819055508080610a28906112f7565b9150506109b8565b6005546001600160a01b03163314610a5a5760405162461bcd60e51b81526004016104cf906111fb565b6001600160a01b038116610abf5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104cf565b610ac881610dbe565b50565b6001600160a01b038316610b2d5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104cf565b6001600160a01b038216610b8e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104cf565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610c535760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016104cf565b6001600160a01b038216610cb55760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016104cf565b6001600160a01b03831660009081526020819052604090205481811015610d2d5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016104cf565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610d64908490611285565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610db091815260200190565b60405180910390a350505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600082601f830112610e2157600080fd5b81356020610e36610e3183611261565b611230565b80838252828201915082860187848660051b8901011115610e5657600080fd5b60005b85811015610e7e578135610e6c81611354565b84529284019290840190600101610e59565b5090979650505050505050565b600082601f830112610e9c57600080fd5b81356020610eac610e3183611261565b80838252828201915082860187848660051b8901011115610ecc57600080fd5b60005b85811015610e7e57813584529284019290840190600101610ecf565b600060208284031215610efd57600080fd5b8135610f0881611354565b9392505050565b60008060408385031215610f2257600080fd5b8235610f2d81611354565b91506020830135610f3d81611354565b809150509250929050565b600080600060608486031215610f5d57600080fd5b8335610f6881611354565b92506020840135610f7881611354565b929592945050506040919091013590565b60008060408385031215610f9c57600080fd5b8235610fa781611354565b946020939093013593505050565b60008060408385031215610fc857600080fd5b823567ffffffffffffffff80821115610fe057600080fd5b610fec86838701610e10565b935060209150818501358181111561100357600080fd5b85019050601f8101861361101657600080fd5b8035611024610e3182611261565b80828252848201915084840189868560051b870101111561104457600080fd5b600094505b8385101561107057803561105c81611369565b835260019490940193918501918501611049565b5080955050505050509250929050565b6000806040838503121561109357600080fd5b823567ffffffffffffffff808211156110ab57600080fd5b6110b786838701610e10565b935060208501359150808211156110cd57600080fd5b506110da85828601610e8b565b9150509250929050565b600080604083850312156110f757600080fd5b823567ffffffffffffffff8082111561110f57600080fd5b6110b786838701610e8b565b60006020828403121561112d57600080fd5b8151610f0881611369565b60006020828403121561114a57600080fd5b5035919050565b6000806040838503121561116457600080fd5b823591506020830135610f3d81611354565b600060208083528351808285015260005b818110156111a357858101830151858201604001528201611187565b818111156111b5576000604083870101525b50601f01601f1916929092016040019392505050565b602080825260169082015275105c9c985e481b195b99dd1a081b9bdd08195c5d585b60521b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b604051601f8201601f1916810167ffffffffffffffff811182821017156112595761125961133e565b604052919050565b600067ffffffffffffffff82111561127b5761127b61133e565b5060051b60200190565b6000821982111561129857611298611312565b500190565b60008160001904831182151516156112b7576112b7611312565b500290565b600181811c908216806112d057607f821691505b602082108114156112f157634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561130b5761130b611312565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610ac857600080fd5b8015158114610ac857600080fdfea264697066735822122086ba06a08ed52ac98034fc52fe236444beed1280c62b530b1bbfc412a33cdbdb64736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000003b9aca0000000000000000000000000044c2588ea953739b439df6582b5b1492c3e7a44700000000000000000000000000000000000000000000000000000000000000064833524f3353000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064833524f33530000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): H3RO3S
Arg [1] : _symbol (string): H3RO3S
Arg [2] : supply (uint256): 1000000000
Arg [3] : _treasury (address): 0x44C2588EA953739B439DF6582b5b1492c3e7A447

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 000000000000000000000000000000000000000000000000000000003b9aca00
Arg [3] : 00000000000000000000000044c2588ea953739b439df6582b5b1492c3e7a447
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [5] : 4833524f33530000000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [7] : 4833524f33530000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

31380:2301:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31651:50;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;12751:25:1;;;12739:2;12724:18;31651:50:0;;;;;;;;21362:100;;;:::i;:::-;;;;;;;:::i;23529:169::-;;;;;;:::i;:::-;;:::i;:::-;;;7300:14:1;;7293:22;7275:41;;7263:2;7248:18;23529:169:0;7135:187:1;22482:108:0;22570:12;;22482:108;;24180:492;;;;;;:::i;:::-;;:::i;22324:93::-;;;22407:2;12929:36:1;;12917:2;12902:18;22324:93:0;12787:184:1;25081:215:0;;;;;;:::i;:::-;;:::i;32185:328::-;;;;;;:::i;:::-;;:::i;:::-;;31496:29;;;;;;31456:31;;;;;-1:-1:-1;;;;;31456:31:0;;;;;;-1:-1:-1;;;;;6479:32:1;;;6461:51;;6449:2;6434:18;31456:31:0;6315:203:1;22653:127:0;;;;;;:::i;:::-;-1:-1:-1;;;;;22754:18:0;22727:7;22754:18;;;;;;;;;;;;22653:127;10790:103;;;:::i;33178:496::-;;;;;;:::i;:::-;;:::i;31534:49::-;;;;;;:::i;:::-;;;;;;;;;;;;;;10139:87;10212:6;;-1:-1:-1;;;;;10212:6:0;10139:87;;21581:104;;;:::i;32846:324::-;;;;;;:::i;:::-;;:::i;25799:413::-;;;;;;:::i;:::-;;:::i;22993:175::-;;;;;;:::i;:::-;;:::i;32070:107::-;;;;;;:::i;:::-;;:::i;32521:317::-;;;;;;:::i;:::-;;:::i;23231:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;23347:18:0;;;23320:7;23347:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;23231:151;31756:49;;;;;;:::i;:::-;;;;;;;;;;;;;;;;11048:201;;;;;;:::i;:::-;;:::i;21362:100::-;21416:13;21449:5;21442:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21362:100;:::o;23529:169::-;23612:4;23629:39;8943:10;23652:7;23661:6;23629:8;:39::i;:::-;-1:-1:-1;23686:4:0;23529:169;;;;:::o;24180:492::-;24320:4;24337:36;24347:6;24355:9;24366:6;24337:9;:36::i;:::-;-1:-1:-1;;;;;24413:19:0;;24386:24;24413:19;;;:11;:19;;;;;;;;8943:10;24413:33;;;;;;;;24465:26;;;;24457:79;;;;-1:-1:-1;;;24457:79:0;;10463:2:1;24457:79:0;;;10445:21:1;10502:2;10482:18;;;10475:30;10541:34;10521:18;;;10514:62;-1:-1:-1;;;10592:18:1;;;10585:38;10640:19;;24457:79:0;;;;;;;;;24572:57;24581:6;8943:10;24622:6;24603:16;:25;24572:8;:57::i;:::-;-1:-1:-1;24660:4:0;;24180:492;-1:-1:-1;;;;24180:492:0:o;25081:215::-;8943:10;25169:4;25218:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;25218:34:0;;;;;;;;;;25169:4;;25186:80;;25209:7;;25218:47;;25255:10;;25218:47;:::i;:::-;25186:8;:80::i;32185:328::-;10212:6;;-1:-1:-1;;;;;10212:6:0;8943:10;10359:23;10351:68;;;;-1:-1:-1;;;10351:68:0;;;;;;;:::i;:::-;32330:10:::1;:17;32308:11;:18;:39;32300:73;;;;-1:-1:-1::0;;;32300:73:0::1;;;;;;;:::i;:::-;32389:9;32384:122;32408:11;:18;32404:1;:22;32384:122;;;32481:10;32492:1;32481:13;;;;;;;;:::i;:::-;;;;;;;32448:14;:30;32463:11;32475:1;32463:14;;;;;;;;:::i;:::-;;;;;;;32448:30;;;;;;;;;;;:46;;;;32428:3;;;;;:::i;:::-;;;;32384:122;;;;32185:328:::0;;:::o;10790:103::-;10212:6;;-1:-1:-1;;;;;10212:6:0;8943:10;10359:23;10351:68;;;;-1:-1:-1;;;10351:68:0;;;;;;;:::i;:::-;10855:30:::1;10882:1;10855:18;:30::i;:::-;10790:103::o:0;33178:496::-;-1:-1:-1;;;;;33256:36:0;;;;;;:18;:36;;;;;;;;33248:76;;;;-1:-1:-1;;;33248:76:0;;12044:2:1;33248:76:0;;;12026:21:1;12083:2;12063:18;;;12056:30;12122;12102:18;;;12095:58;12170:18;;33248:76:0;11842:352:1;33248:76:0;8943:10;33335:12;33361:29;;;:15;:29;;;;;;33358:199;;33433:14;;33418:29;;:12;:29;:::i;:::-;33411:36;;33358:199;;;8943:10;33500:45;33515:29;;;:15;:29;;;;;;;;;33500:45;;:14;:45;;;;;;33485:60;;:12;:60;:::i;:::-;33478:67;;33358:199;-1:-1:-1;;;;;33575:28:0;;;8943:10;33617:8;;33575:56;;;;;;-1:-1:-1;;;;;;33575:56:0;;;-1:-1:-1;;;;;7013:15:1;;;33575:56:0;;;6995:34:1;33617:8:0;;7045:18:1;;;7038:43;7097:18;;;7090:34;;;6930:18;;33575:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;33567:99;;;;-1:-1:-1;;;33567:99:0;;10103:2:1;33567:99:0;;;10085:21:1;10142:2;10122:18;;;10115:30;10181:33;10161:18;;;10154:61;10232:18;;33567:99:0;9901:355:1;21581:104:0;21637:13;21670:7;21663:14;;;;;:::i;32846:324::-;10212:6;;-1:-1:-1;;;;;10212:6:0;8943:10;10359:23;10351:68;;;;-1:-1:-1;;;10351:68:0;;;;;;;:::i;:::-;32983:11:::1;:18;32966:6;:13;:35;32958:69;;;;-1:-1:-1::0;;;32958:69:0::1;;;;;;;:::i;:::-;33043:9;33038:125;33062:6;:13;33058:1;:17;33038:125;;;33137:11;33149:1;33137:14;;;;;;;;:::i;:::-;;;;;;;33097:18;:37;33123:6;33130:1;33123:9;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;33097:37:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;33097:37:0;:54;;-1:-1:-1;;33097:54:0::1;::::0;::::1;;::::0;;;::::1;::::0;;33077:3;::::1;::::0;::::1;:::i;:::-;;;;33038:125;;25799:413:::0;8943:10;25892:4;25936:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;25936:34:0;;;;;;;;;;25989:35;;;;25981:85;;;;-1:-1:-1;;;25981:85:0;;12401:2:1;25981:85:0;;;12383:21:1;12440:2;12420:18;;;12413:30;12479:34;12459:18;;;12452:62;-1:-1:-1;;;12530:18:1;;;12523:35;12575:19;;25981:85:0;12199:401:1;25981:85:0;26102:67;8943:10;26125:7;26153:15;26134:16;:34;26102:8;:67::i;:::-;-1:-1:-1;26200:4:0;;25799:413;-1:-1:-1;;;25799:413:0:o;22993:175::-;23079:4;23096:42;8943:10;23120:9;23131:6;23096:9;:42::i;32070:107::-;10212:6;;-1:-1:-1;;;;;10212:6:0;8943:10;10359:23;10351:68;;;;-1:-1:-1;;;10351:68:0;;;;;;;:::i;:::-;32143:14:::1;:26:::0;32070:107::o;32521:317::-;10212:6;;-1:-1:-1;;;;;10212:6:0;8943:10;10359:23;10351:68;;;;-1:-1:-1;;;10351:68:0;;;;;;;:::i;:::-;32660:11:::1;:18;32642:7;:14;:36;32634:70;;;;-1:-1:-1::0;;;32634:70:0::1;;;;;;;:::i;:::-;32720:9;32715:116;32739:7;:14;32735:1;:18;32715:116;;;32805:11;32817:1;32805:14;;;;;;;;:::i;:::-;;;;;;;32775:15;:27;32791:7;32799:1;32791:10;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;32775:27:0::1;-1:-1:-1::0;;;;;32775:27:0::1;;;;;;;;;;;;:44;;;;32755:3;;;;;:::i;:::-;;;;32715:116;;11048:201:::0;10212:6;;-1:-1:-1;;;;;10212:6:0;8943:10;10359:23;10351:68;;;;-1:-1:-1;;;10351:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;11137:22:0;::::1;11129:73;;;::::0;-1:-1:-1;;;11129:73:0;;8886:2:1;11129:73:0::1;::::0;::::1;8868:21:1::0;8925:2;8905:18;;;8898:30;8964:34;8944:18;;;8937:62;-1:-1:-1;;;9015:18:1;;;9008:36;9061:19;;11129:73:0::1;8684:402:1::0;11129:73:0::1;11213:28;11232:8;11213:18;:28::i;:::-;11048:201:::0;:::o;29483:380::-;-1:-1:-1;;;;;29619:19:0;;29611:68;;;;-1:-1:-1;;;29611:68:0;;11639:2:1;29611:68:0;;;11621:21:1;11678:2;11658:18;;;11651:30;11717:34;11697:18;;;11690:62;-1:-1:-1;;;11768:18:1;;;11761:34;11812:19;;29611:68:0;11437:400:1;29611:68:0;-1:-1:-1;;;;;29698:21:0;;29690:68;;;;-1:-1:-1;;;29690:68:0;;9293:2:1;29690:68:0;;;9275:21:1;9332:2;9312:18;;;9305:30;9371:34;9351:18;;;9344:62;-1:-1:-1;;;9422:18:1;;;9415:32;9464:19;;29690:68:0;9091:398:1;29690:68:0;-1:-1:-1;;;;;29771:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;29823:32;;12751:25:1;;;29823:32:0;;12724:18:1;29823:32:0;;;;;;;29483:380;;;:::o;26702:733::-;-1:-1:-1;;;;;26842:20:0;;26834:70;;;;-1:-1:-1;;;26834:70:0;;11233:2:1;26834:70:0;;;11215:21:1;11272:2;11252:18;;;11245:30;11311:34;11291:18;;;11284:62;-1:-1:-1;;;11362:18:1;;;11355:35;11407:19;;26834:70:0;11031:401:1;26834:70:0;-1:-1:-1;;;;;26923:23:0;;26915:71;;;;-1:-1:-1;;;26915:71:0;;8131:2:1;26915:71:0;;;8113:21:1;8170:2;8150:18;;;8143:30;8209:34;8189:18;;;8182:62;-1:-1:-1;;;8260:18:1;;;8253:33;8303:19;;26915:71:0;7929:399:1;26915:71:0;-1:-1:-1;;;;;27083:17:0;;27059:21;27083:17;;;;;;;;;;;27119:23;;;;27111:74;;;;-1:-1:-1;;;27111:74:0;;9696:2:1;27111:74:0;;;9678:21:1;9735:2;9715:18;;;9708:30;9774:34;9754:18;;;9747:62;-1:-1:-1;;;9825:18:1;;;9818:36;9871:19;;27111:74:0;9494:402:1;27111:74:0;-1:-1:-1;;;;;27221:17:0;;;:9;:17;;;;;;;;;;;27241:22;;;27221:42;;27285:20;;;;;;;;:30;;27257:6;;27221:9;27285:30;;27257:6;;27285:30;:::i;:::-;;;;;;;;27350:9;-1:-1:-1;;;;;27333:35:0;27342:6;-1:-1:-1;;;;;27333:35:0;;27361:6;27333:35;;;;12751:25:1;;12739:2;12724:18;;12605:177;27333:35:0;;;;;;;;26823:612;26702:733;;;:::o;11409:191::-;11502:6;;;-1:-1:-1;;;;;11519:17:0;;;-1:-1:-1;;;;;;11519:17:0;;;;;;;11552:40;;11502:6;;;11519:17;11502:6;;11552:40;;11483:16;;11552:40;11472:128;11409:191;:::o;14:748:1:-;68:5;121:3;114:4;106:6;102:17;98:27;88:55;;139:1;136;129:12;88:55;175:6;162:20;201:4;225:60;241:43;281:2;241:43;:::i;:::-;225:60;:::i;:::-;307:3;331:2;326:3;319:15;359:2;354:3;350:12;343:19;;394:2;386:6;382:15;446:3;441:2;435;432:1;428:10;420:6;416:23;412:32;409:41;406:61;;;463:1;460;453:12;406:61;485:1;495:238;509:2;506:1;503:9;495:238;;;580:3;567:17;597:31;622:5;597:31;:::i;:::-;641:18;;679:12;;;;711;;;;527:1;520:9;495:238;;;-1:-1:-1;751:5:1;;14:748;-1:-1:-1;;;;;;;14:748:1:o;767:673::-;821:5;874:3;867:4;859:6;855:17;851:27;841:55;;892:1;889;882:12;841:55;928:6;915:20;954:4;978:60;994:43;1034:2;994:43;:::i;978:60::-;1060:3;1084:2;1079:3;1072:15;1112:2;1107:3;1103:12;1096:19;;1147:2;1139:6;1135:15;1199:3;1194:2;1188;1185:1;1181:10;1173:6;1169:23;1165:32;1162:41;1159:61;;;1216:1;1213;1206:12;1159:61;1238:1;1248:163;1262:2;1259:1;1256:9;1248:163;;;1319:17;;1307:30;;1357:12;;;;1389;;;;1280:1;1273:9;1248:163;;1445:247;1504:6;1557:2;1545:9;1536:7;1532:23;1528:32;1525:52;;;1573:1;1570;1563:12;1525:52;1612:9;1599:23;1631:31;1656:5;1631:31;:::i;:::-;1681:5;1445:247;-1:-1:-1;;;1445:247:1:o;1697:388::-;1765:6;1773;1826:2;1814:9;1805:7;1801:23;1797:32;1794:52;;;1842:1;1839;1832:12;1794:52;1881:9;1868:23;1900:31;1925:5;1900:31;:::i;:::-;1950:5;-1:-1:-1;2007:2:1;1992:18;;1979:32;2020:33;1979:32;2020:33;:::i;:::-;2072:7;2062:17;;;1697:388;;;;;:::o;2090:456::-;2167:6;2175;2183;2236:2;2224:9;2215:7;2211:23;2207:32;2204:52;;;2252:1;2249;2242:12;2204:52;2291:9;2278:23;2310:31;2335:5;2310:31;:::i;:::-;2360:5;-1:-1:-1;2417:2:1;2402:18;;2389:32;2430:33;2389:32;2430:33;:::i;:::-;2090:456;;2482:7;;-1:-1:-1;;;2536:2:1;2521:18;;;;2508:32;;2090:456::o;2551:315::-;2619:6;2627;2680:2;2668:9;2659:7;2655:23;2651:32;2648:52;;;2696:1;2693;2686:12;2648:52;2735:9;2722:23;2754:31;2779:5;2754:31;:::i;:::-;2804:5;2856:2;2841:18;;;;2828:32;;-1:-1:-1;;;2551:315:1:o;2871:1218::-;2986:6;2994;3047:2;3035:9;3026:7;3022:23;3018:32;3015:52;;;3063:1;3060;3053:12;3015:52;3103:9;3090:23;3132:18;3173:2;3165:6;3162:14;3159:34;;;3189:1;3186;3179:12;3159:34;3212:61;3265:7;3256:6;3245:9;3241:22;3212:61;:::i;:::-;3202:71;;3292:2;3282:12;;3347:2;3336:9;3332:18;3319:32;3376:2;3366:8;3363:16;3360:36;;;3392:1;3389;3382:12;3360:36;3415:24;;;-1:-1:-1;3470:4:1;3462:13;;3458:27;-1:-1:-1;3448:55:1;;3499:1;3496;3489:12;3448:55;3535:2;3522:16;3558:60;3574:43;3614:2;3574:43;:::i;3558:60::-;3640:3;3664:2;3659:3;3652:15;3692:2;3687:3;3683:12;3676:19;;3723:2;3719;3715:11;3771:7;3766:2;3760;3757:1;3753:10;3749:2;3745:19;3741:28;3738:41;3735:61;;;3792:1;3789;3782:12;3735:61;3814:1;3805:10;;3824:235;3838:2;3835:1;3832:9;3824:235;;;3909:3;3896:17;3926:28;3948:5;3926:28;:::i;:::-;3967:18;;3856:1;3849:9;;;;;4005:12;;;;4037;;3824:235;;;3828:3;4078:5;4068:15;;;;;;;2871:1218;;;;;:::o;4094:595::-;4212:6;4220;4273:2;4261:9;4252:7;4248:23;4244:32;4241:52;;;4289:1;4286;4279:12;4241:52;4329:9;4316:23;4358:18;4399:2;4391:6;4388:14;4385:34;;;4415:1;4412;4405:12;4385:34;4438:61;4491:7;4482:6;4471:9;4467:22;4438:61;:::i;:::-;4428:71;;4552:2;4541:9;4537:18;4524:32;4508:48;;4581:2;4571:8;4568:16;4565:36;;;4597:1;4594;4587:12;4565:36;;4620:63;4675:7;4664:8;4653:9;4649:24;4620:63;:::i;:::-;4610:73;;;4094:595;;;;;:::o;4694:::-;4812:6;4820;4873:2;4861:9;4852:7;4848:23;4844:32;4841:52;;;4889:1;4886;4879:12;4841:52;4929:9;4916:23;4958:18;4999:2;4991:6;4988:14;4985:34;;;5015:1;5012;5005:12;4985:34;5038:61;5091:7;5082:6;5071:9;5067:22;5038:61;:::i;5294:245::-;5361:6;5414:2;5402:9;5393:7;5389:23;5385:32;5382:52;;;5430:1;5427;5420:12;5382:52;5462:9;5456:16;5481:28;5503:5;5481:28;:::i;5810:180::-;5869:6;5922:2;5910:9;5901:7;5897:23;5893:32;5890:52;;;5938:1;5935;5928:12;5890:52;-1:-1:-1;5961:23:1;;5810:180;-1:-1:-1;5810:180:1:o;5995:315::-;6063:6;6071;6124:2;6112:9;6103:7;6099:23;6095:32;6092:52;;;6140:1;6137;6130:12;6092:52;6176:9;6163:23;6153:33;;6236:2;6225:9;6221:18;6208:32;6249:31;6274:5;6249:31;:::i;7327:597::-;7439:4;7468:2;7497;7486:9;7479:21;7529:6;7523:13;7572:6;7567:2;7556:9;7552:18;7545:34;7597:1;7607:140;7621:6;7618:1;7615:13;7607:140;;;7716:14;;;7712:23;;7706:30;7682:17;;;7701:2;7678:26;7671:66;7636:10;;7607:140;;;7765:6;7762:1;7759:13;7756:91;;;7835:1;7830:2;7821:6;7810:9;7806:22;7802:31;7795:42;7756:91;-1:-1:-1;7908:2:1;7887:15;-1:-1:-1;;7883:29:1;7868:45;;;;7915:2;7864:54;;7327:597;-1:-1:-1;;;7327:597:1:o;8333:346::-;8535:2;8517:21;;;8574:2;8554:18;;;8547:30;-1:-1:-1;;;8608:2:1;8593:18;;8586:52;8670:2;8655:18;;8333:346::o;10670:356::-;10872:2;10854:21;;;10891:18;;;10884:30;10950:34;10945:2;10930:18;;10923:62;11017:2;11002:18;;10670:356::o;12976:275::-;13047:2;13041:9;13112:2;13093:13;;-1:-1:-1;;13089:27:1;13077:40;;13147:18;13132:34;;13168:22;;;13129:62;13126:88;;;13194:18;;:::i;:::-;13230:2;13223:22;12976:275;;-1:-1:-1;12976:275:1:o;13256:183::-;13316:4;13349:18;13341:6;13338:30;13335:56;;;13371:18;;:::i;:::-;-1:-1:-1;13416:1:1;13412:14;13428:4;13408:25;;13256:183::o;13444:128::-;13484:3;13515:1;13511:6;13508:1;13505:13;13502:39;;;13521:18;;:::i;:::-;-1:-1:-1;13557:9:1;;13444:128::o;13577:168::-;13617:7;13683:1;13679;13675:6;13671:14;13668:1;13665:21;13660:1;13653:9;13646:17;13642:45;13639:71;;;13690:18;;:::i;:::-;-1:-1:-1;13730:9:1;;13577:168::o;13750:380::-;13829:1;13825:12;;;;13872;;;13893:61;;13947:4;13939:6;13935:17;13925:27;;13893:61;14000:2;13992:6;13989:14;13969:18;13966:38;13963:161;;;14046:10;14041:3;14037:20;14034:1;14027:31;14081:4;14078:1;14071:15;14109:4;14106:1;14099:15;13963:161;;13750:380;;;:::o;14135:135::-;14174:3;-1:-1:-1;;14195:17:1;;14192:43;;;14215:18;;:::i;:::-;-1:-1:-1;14262:1:1;14251:13;;14135:135::o;14275:127::-;14336:10;14331:3;14327:20;14324:1;14317:31;14367:4;14364:1;14357:15;14391:4;14388:1;14381:15;14407:127;14468:10;14463:3;14459:20;14456:1;14449:31;14499:4;14496:1;14489:15;14523:4;14520:1;14513:15;14539:127;14600:10;14595:3;14591:20;14588:1;14581:31;14631:4;14628:1;14621:15;14655:4;14652:1;14645:15;14671:131;-1:-1:-1;;;;;14746:31:1;;14736:42;;14726:70;;14792:1;14789;14782:12;14807:118;14893:5;14886:13;14879:21;14872:5;14869:32;14859:60;;14915:1;14912;14905:12

Swarm Source

ipfs://86ba06a08ed52ac98034fc52fe236444beed1280c62b530b1bbfc412a33cdbdb
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.