ETH Price: $3,434.61 (-1.42%)

Contract

0x2C6693389078B6f8B0691E3cb97a85E5E3CFcc04
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve207749062024-09-18 3:49:5999 days ago1726631399IN
0x2C669338...5E3CFcc04
0 ETH0.000244485.25120069
Approve206335842024-08-29 10:16:11118 days ago1724926571IN
0x2C669338...5E3CFcc04
0 ETH0.000072771.57069058
Approve200720992024-06-12 0:14:23197 days ago1718151263IN
0x2C669338...5E3CFcc04
0 ETH0.000331727.12492749
Approve194783792024-03-20 20:46:47280 days ago1710967607IN
0x2C669338...5E3CFcc04
0 ETH0.0022023747.24291415
Approve194201062024-03-12 16:10:59288 days ago1710259859IN
0x2C669338...5E3CFcc04
0 ETH0.0017885773.68269835
Approve189089782024-01-01 0:17:23360 days ago1704068243IN
0x2C669338...5E3CFcc04
0 ETH0.0005938112.75424904
Approve188869532023-12-28 22:03:23363 days ago1703801003IN
0x2C669338...5E3CFcc04
0 ETH0.0009513320.43325737
Transfer188869362023-12-28 21:59:59363 days ago1703800799IN
0x2C669338...5E3CFcc04
0 ETH0.0011341420.01696965
Transfer188869002023-12-28 21:52:47363 days ago1703800367IN
0x2C669338...5E3CFcc04
0 ETH0.0008308621.01596298
Approve187271542023-12-06 12:01:23385 days ago1701864083IN
0x2C669338...5E3CFcc04
0 ETH0.0022366247.97776614
Approve187199102023-12-05 11:41:11386 days ago1701776471IN
0x2C669338...5E3CFcc04
0 ETH0.0012625152.01096605
Approve187100252023-12-04 2:28:59388 days ago1701656939IN
0x2C669338...5E3CFcc04
0 ETH0.0021464646.10304929
Approve186862942023-11-30 18:46:23391 days ago1701369983IN
0x2C669338...5E3CFcc04
0 ETH0.0031837368.38204509
Transfer186381062023-11-24 0:49:47398 days ago1700786987IN
0x2C669338...5E3CFcc04
0 ETH0.0007911417.84461092
Approve185733512023-11-14 23:13:47407 days ago1700003627IN
0x2C669338...5E3CFcc04
0 ETH0.0018709740.13407945
Approve185026052023-11-05 1:42:11417 days ago1699148531IN
0x2C669338...5E3CFcc04
0 ETH0.0006537514.04175528
Approve184973002023-11-04 7:51:11417 days ago1699084271IN
0x2C669338...5E3CFcc04
0 ETH0.0005824612.57545325
Approve184942292023-11-03 21:31:47418 days ago1699047107IN
0x2C669338...5E3CFcc04
0 ETH0.0009388120.26891178
Approve184434012023-10-27 18:42:35425 days ago1698432155IN
0x2C669338...5E3CFcc04
0 ETH0.0010513822.67572111
Approve184407292023-10-27 9:44:23425 days ago1698399863IN
0x2C669338...5E3CFcc04
0 ETH0.0006895614.79187917
Approve183814632023-10-19 2:39:47434 days ago1697683187IN
0x2C669338...5E3CFcc04
0 ETH0.000340497.35502301
Approve182279942023-09-27 15:29:47455 days ago1695828587IN
0x2C669338...5E3CFcc04
0 ETH0.0007490916.16026865
Approve181580292023-09-17 20:12:23465 days ago1694981543IN
0x2C669338...5E3CFcc04
0 ETH0.000425179.13218529
Approve181570782023-09-17 16:58:47465 days ago1694969927IN
0x2C669338...5E3CFcc04
0 ETH0.0004981410.74088431
Approve181488952023-09-16 13:07:23466 days ago1694869643IN
0x2C669338...5E3CFcc04
0 ETH0.000410958.81528485
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
IQ

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 2000 runs

Other Settings:
default evmVersion
File 1 of 6 : IQ.sol
// SPDX-License-Identifier: SEE LICENSE IN LICENSE
pragma solidity ^0.8.0;

import {ERC20} from "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol";

contract IQ is ERC20, Ownable {
	bool public botBlockerActive;
	bool public limited;
	uint8 public feeDecimals;
	uint32 public feePercentage;
	uint256 public maxHoldAmount;
	uint256 public minHoldAmount;
	address public uniswapV2Pair;
	mapping(address => bool) public blacklist;

	constructor(uint256 _totalSupply) ERC20("IQ", "IQ") {
		_mint(msg.sender, _totalSupply);
	}

	function blackList(address _address, bool isBlackListed) external onlyOwner {
		blacklist[_address] = isBlackListed;
	}

	function setRules(
		bool _botBlockerEnabled,
		bool _limited,
		address _uniswapV2Pair,
		uint8 _feeDecimals,
		uint32 _feePercentage,
		uint256 _maxHoldAmount,
		uint256 _minHoldAmount
	) external onlyOwner {
		botBlockerActive = _botBlockerEnabled;
		limited = _limited;
		uniswapV2Pair = _uniswapV2Pair;
		feeDecimals = _feeDecimals;
		feePercentage = _feePercentage;
		maxHoldAmount = _maxHoldAmount;
		minHoldAmount = _minHoldAmount;
	}

	function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual override {
		require(!blacklist[to] && !blacklist[from], "Blacklisted");

		//trading start protection
		if (uniswapV2Pair == address(0)) {
			require(from == owner() || to == owner(), "TradingNotStarted");
		}

		if (limited && from == uniswapV2Pair && to != address(this)) {
			require(
				super.balanceOf(to) + amount <= maxHoldAmount && super.balanceOf(to) + amount >= minHoldAmount,
				"Limited"
			);
		}
	}

	function _transfer(address sender, address recipient, uint256 amount) internal virtual override {
		_beforeTokenTransfer(sender, recipient, amount);

		if (botBlockerActive && sender == uniswapV2Pair) {
			uint256 collection = calculateTokenFee(amount);
			uint256 tokensToTransfer = amount - collection;

			super._transfer(sender, recipient, tokensToTransfer);
			super._transfer(sender, address(this), collection);
		} else {
			super._transfer(sender, recipient, amount);
		}
	}

	function calculateTokenFee(uint256 _amount) internal view returns (uint256 locked) {
		locked = (_amount * feePercentage) / (10 ** (uint256(feeDecimals) + 2));
	}

	// withdraw any stuck tokens sent here by mistake + fees
	function withdrawFees() external onlyOwner {
		uint256 balance = balanceOf(address(this));
		super._transfer(address(this), owner(), balance);
	}

	function burn(uint256 amount) external {
		_burn(msg.sender, amount);
	}
}

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

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

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

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

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

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

pragma solidity ^0.8.0;

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

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

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

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

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"_totalSupply","type":"uint256"}],"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":"address","name":"_address","type":"address"},{"internalType":"bool","name":"isBlackListed","type":"bool"}],"name":"blackList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blacklist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"botBlockerActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feeDecimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feePercentage","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"limited","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxHoldAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minHoldAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_botBlockerEnabled","type":"bool"},{"internalType":"bool","name":"_limited","type":"bool"},{"internalType":"address","name":"_uniswapV2Pair","type":"address"},{"internalType":"uint8","name":"_feeDecimals","type":"uint8"},{"internalType":"uint32","name":"_feePercentage","type":"uint32"},{"internalType":"uint256","name":"_maxHoldAmount","type":"uint256"},{"internalType":"uint256","name":"_minHoldAmount","type":"uint256"}],"name":"setRules","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawFees","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060405162001b7538038062001b758339810160408190526200003491620003c8565b604080518082018252600280825261495160f01b60208084018290528451808601909552918452908301529060036200006e838262000486565b5060046200007d828262000486565b5050506200009a62000094620000ad60201b60201c565b620000b1565b620000a6338262000103565b506200057a565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166200015f5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b6200016d60008383620001d8565b806002600082825462000181919062000552565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b03821660009081526009602052604090205460ff161580156200021b57506001600160a01b03831660009081526009602052604090205460ff16155b620002575760405162461bcd60e51b815260206004820152600b60248201526a109b1858dadb1a5cdd195960aa1b604482015260640162000156565b6008546001600160a01b0316620002d4576005546001600160a01b03848116911614806200029257506005546001600160a01b038381169116145b620002d45760405162461bcd60e51b8152602060048201526011602482015270151c98591a5b99d39bdd14dd185c9d1959607a1b604482015260640162000156565b600554600160a81b900460ff168015620002fb57506008546001600160a01b038481169116145b80156200031157506001600160a01b0382163014155b15620003a857600654816200033184620003ad60201b620002971760201c565b6200033d919062000552565b11158015620003705750600754816200036184620003ad60201b620002971760201c565b6200036d919062000552565b10155b620003a85760405162461bcd60e51b8152602060048201526007602482015266131a5b5a5d195960ca1b604482015260640162000156565b505050565b6001600160a01b031660009081526020819052604090205490565b600060208284031215620003db57600080fd5b5051919050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200040d57607f821691505b6020821081036200042e57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620003a857600081815260208120601f850160051c810160208610156200045d5750805b601f850160051c820191505b818110156200047e5782815560010162000469565b505050505050565b81516001600160401b03811115620004a257620004a2620003e2565b620004ba81620004b38454620003f8565b8462000434565b602080601f831160018114620004f25760008415620004d95750858301515b600019600386901b1c1916600185901b1785556200047e565b600085815260208120601f198616915b82811015620005235788860151825594840194600190910190840162000502565b5085821015620005425787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b808201808211156200057457634e487b7160e01b600052601160045260246000fd5b92915050565b6115eb806200058a6000396000f3fe608060405234801561001057600080fd5b50600436106101ae5760003560e01c806395d89b41116100ee578063c85c10d511610097578063dd62ed3e11610071578063dd62ed3e146103da578063f2fde38b14610413578063f9f92be414610426578063fddacd7b1461044957600080fd5b8063c85c10d514610385578063cc0f1786146103aa578063cd03425c146103d157600080fd5b8063a001ecdd116100c8578063a001ecdd1461031f578063a457c2d71461035f578063a9059cbb1461037257600080fd5b806395d89b41146102f15780639b1af873146102f95780639c8e841d1461030c57600080fd5b806342966c681161015b57806370a082311161013557806370a0823114610289578063715018a6146102b2578063860a32ec146102ba5780638da5cb5b146102e057600080fd5b806342966c6814610241578063476343ee1461025657806349bd5a5e1461025e57600080fd5b806323b872dd1161018c57806323b872dd14610206578063313ce56714610219578063395093511461022e57600080fd5b806306fdde03146101b3578063095ea7b3146101d157806318160ddd146101f4575b600080fd5b6101bb610452565b6040516101c891906111f4565b60405180910390f35b6101e46101df36600461127c565b6104e4565b60405190151581526020016101c8565b6002545b6040519081526020016101c8565b6101e46102143660046112a6565b6104fe565b60125b60405160ff90911681526020016101c8565b6101e461023c36600461127c565b610522565b61025461024f3660046112e2565b610561565b005b61025461056e565b600854610271906001600160a01b031681565b6040516001600160a01b0390911681526020016101c8565b6101f86102973660046112fb565b6001600160a01b031660009081526020819052604090205490565b61025461059e565b6005546101e4907501000000000000000000000000000000000000000000900460ff1681565b6005546001600160a01b0316610271565b6101bb6105b2565b61025461030736600461132d565b6105c1565b61025461031a3660046113b9565b610727565b60055461034a9077010000000000000000000000000000000000000000000000900463ffffffff1681565b60405163ffffffff90911681526020016101c8565b6101e461036d36600461127c565b610778565b6101e461038036600461127c565b610827565b6005546101e49074010000000000000000000000000000000000000000900460ff1681565b60055461021c90760100000000000000000000000000000000000000000000900460ff1681565b6101f860065481565b6101f86103e83660046113ec565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6102546104213660046112fb565b610835565b6101e46104343660046112fb565b60096020526000908152604090205460ff1681565b6101f860075481565b60606003805461046190611416565b80601f016020809104026020016040519081016040528092919081815260200182805461048d90611416565b80156104da5780601f106104af576101008083540402835291602001916104da565b820191906000526020600020905b8154815290600101906020018083116104bd57829003601f168201915b5050505050905090565b6000336104f28185856108c2565b60019150505b92915050565b60003361050c858285610a1a565b610517858585610aac565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091906104f2908290869061055c908790611466565b6108c2565b61056b3382610b3b565b50565b610576610cb0565b30600081815260208190526040902054600554909161056b916001600160a01b031683610d0a565b6105a6610cb0565b6105b06000610f02565b565b60606004805461046190611416565b6105c9610cb0565b60058054600880546001600160a01b039098167fffffffffffffffffffffffff00000000000000000000000000000000000000009098169790971790965563ffffffff90931677010000000000000000000000000000000000000000000000027fffffffffff00000000ffffffffffffffffffffffffffffffffffffffffffffff60ff9590951676010000000000000000000000000000000000000000000002949094167fffffffffff0000000000ffffffffffffffffffffffffffffffffffffffffffff9615157501000000000000000000000000000000000000000000027fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff9815157401000000000000000000000000000000000000000002989098167fffffffffffffffffffff0000ffffffffffffffffffffffffffffffffffffffff90961695909517969096179490941692909217179055600655600755565b61072f610cb0565b6001600160a01b0391909116600090815260096020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091908381101561081a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b61051782868684036108c2565b6000336104f2818585610aac565b61083d610cb0565b6001600160a01b0381166108b95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610811565b61056b81610f02565b6001600160a01b03831661093d5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610811565b6001600160a01b0382166109b95760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610811565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038381166000908152600160209081526040808320938616835292905220546000198114610aa65781811015610a995760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610811565b610aa684848484036108c2565b50505050565b610ab7838383610f6c565b60055474010000000000000000000000000000000000000000900460ff168015610aee57506008546001600160a01b038481169116145b15610b2b576000610afe82611183565b90506000610b0c8284611479565b9050610b19858583610d0a565b610b24853084610d0a565b5050505050565b610b36838383610d0a565b505050565b6001600160a01b038216610bb75760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610811565b610bc382600083610f6c565b6001600160a01b03821660009081526020819052604090205481811015610c525760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f63650000000000000000000000000000000000000000000000000000000000006064820152608401610811565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b6005546001600160a01b031633146105b05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610811565b6001600160a01b038316610d865760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610811565b6001600160a01b038216610e025760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610811565b610e0d838383610f6c565b6001600160a01b03831660009081526020819052604090205481811015610e9c5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610811565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610aa6565b600580546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03821660009081526009602052604090205460ff16158015610fae57506001600160a01b03831660009081526009602052604090205460ff16155b610ffa5760405162461bcd60e51b815260206004820152600b60248201527f426c61636b6c69737465640000000000000000000000000000000000000000006044820152606401610811565b6008546001600160a01b031661107f576005546001600160a01b038481169116148061103357506005546001600160a01b038381169116145b61107f5760405162461bcd60e51b815260206004820152601160248201527f54726164696e674e6f74537461727465640000000000000000000000000000006044820152606401610811565b6005547501000000000000000000000000000000000000000000900460ff1680156110b757506008546001600160a01b038481169116145b80156110cc57506001600160a01b0382163014155b15610b3657600654816110f4846001600160a01b031660009081526020819052604090205490565b6110fe9190611466565b1115801561113757506007548161112a846001600160a01b031660009081526020819052604090205490565b6111349190611466565b10155b610b365760405162461bcd60e51b815260206004820152600760248201527f4c696d69746564000000000000000000000000000000000000000000000000006044820152606401610811565b6005546000906111b190760100000000000000000000000000000000000000000000900460ff166002611466565b6111bc90600a611570565b6005546111ea9077010000000000000000000000000000000000000000000000900463ffffffff168461157c565b6104f89190611593565b600060208083528351808285015260005b8181101561122157858101830151858201604001528201611205565b5060006040828601015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8301168501019250505092915050565b80356001600160a01b038116811461127757600080fd5b919050565b6000806040838503121561128f57600080fd5b61129883611260565b946020939093013593505050565b6000806000606084860312156112bb57600080fd5b6112c484611260565b92506112d260208501611260565b9150604084013590509250925092565b6000602082840312156112f457600080fd5b5035919050565b60006020828403121561130d57600080fd5b61131682611260565b9392505050565b8035801515811461127757600080fd5b600080600080600080600060e0888a03121561134857600080fd5b6113518861131d565b965061135f6020890161131d565b955061136d60408901611260565b9450606088013560ff8116811461138357600080fd5b9350608088013563ffffffff8116811461139c57600080fd5b9699959850939692959460a0840135945060c09093013592915050565b600080604083850312156113cc57600080fd5b6113d583611260565b91506113e36020840161131d565b90509250929050565b600080604083850312156113ff57600080fd5b61140883611260565b91506113e360208401611260565b600181811c9082168061142a57607f821691505b60208210810361144a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156104f8576104f8611450565b818103818111156104f8576104f8611450565b600181815b808511156114c75781600019048211156114ad576114ad611450565b808516156114ba57918102915b93841c9390800290611491565b509250929050565b6000826114de575060016104f8565b816114eb575060006104f8565b8160018114611501576002811461150b57611527565b60019150506104f8565b60ff84111561151c5761151c611450565b50506001821b6104f8565b5060208310610133831016604e8410600b841016171561154a575081810a6104f8565b611554838361148c565b806000190482111561156857611568611450565b029392505050565b600061131683836114cf565b80820281158282048414176104f8576104f8611450565b6000826115b057634e487b7160e01b600052601260045260246000fd5b50049056fea26469706673582212203a8459659fcabee78d24b5804986e6802ed548e4e4ab74b198f7f636d348303564736f6c634300081100330000000000000000000000000000000000000027a708891c48e3eddfd7340000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101ae5760003560e01c806395d89b41116100ee578063c85c10d511610097578063dd62ed3e11610071578063dd62ed3e146103da578063f2fde38b14610413578063f9f92be414610426578063fddacd7b1461044957600080fd5b8063c85c10d514610385578063cc0f1786146103aa578063cd03425c146103d157600080fd5b8063a001ecdd116100c8578063a001ecdd1461031f578063a457c2d71461035f578063a9059cbb1461037257600080fd5b806395d89b41146102f15780639b1af873146102f95780639c8e841d1461030c57600080fd5b806342966c681161015b57806370a082311161013557806370a0823114610289578063715018a6146102b2578063860a32ec146102ba5780638da5cb5b146102e057600080fd5b806342966c6814610241578063476343ee1461025657806349bd5a5e1461025e57600080fd5b806323b872dd1161018c57806323b872dd14610206578063313ce56714610219578063395093511461022e57600080fd5b806306fdde03146101b3578063095ea7b3146101d157806318160ddd146101f4575b600080fd5b6101bb610452565b6040516101c891906111f4565b60405180910390f35b6101e46101df36600461127c565b6104e4565b60405190151581526020016101c8565b6002545b6040519081526020016101c8565b6101e46102143660046112a6565b6104fe565b60125b60405160ff90911681526020016101c8565b6101e461023c36600461127c565b610522565b61025461024f3660046112e2565b610561565b005b61025461056e565b600854610271906001600160a01b031681565b6040516001600160a01b0390911681526020016101c8565b6101f86102973660046112fb565b6001600160a01b031660009081526020819052604090205490565b61025461059e565b6005546101e4907501000000000000000000000000000000000000000000900460ff1681565b6005546001600160a01b0316610271565b6101bb6105b2565b61025461030736600461132d565b6105c1565b61025461031a3660046113b9565b610727565b60055461034a9077010000000000000000000000000000000000000000000000900463ffffffff1681565b60405163ffffffff90911681526020016101c8565b6101e461036d36600461127c565b610778565b6101e461038036600461127c565b610827565b6005546101e49074010000000000000000000000000000000000000000900460ff1681565b60055461021c90760100000000000000000000000000000000000000000000900460ff1681565b6101f860065481565b6101f86103e83660046113ec565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6102546104213660046112fb565b610835565b6101e46104343660046112fb565b60096020526000908152604090205460ff1681565b6101f860075481565b60606003805461046190611416565b80601f016020809104026020016040519081016040528092919081815260200182805461048d90611416565b80156104da5780601f106104af576101008083540402835291602001916104da565b820191906000526020600020905b8154815290600101906020018083116104bd57829003601f168201915b5050505050905090565b6000336104f28185856108c2565b60019150505b92915050565b60003361050c858285610a1a565b610517858585610aac565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091906104f2908290869061055c908790611466565b6108c2565b61056b3382610b3b565b50565b610576610cb0565b30600081815260208190526040902054600554909161056b916001600160a01b031683610d0a565b6105a6610cb0565b6105b06000610f02565b565b60606004805461046190611416565b6105c9610cb0565b60058054600880546001600160a01b039098167fffffffffffffffffffffffff00000000000000000000000000000000000000009098169790971790965563ffffffff90931677010000000000000000000000000000000000000000000000027fffffffffff00000000ffffffffffffffffffffffffffffffffffffffffffffff60ff9590951676010000000000000000000000000000000000000000000002949094167fffffffffff0000000000ffffffffffffffffffffffffffffffffffffffffffff9615157501000000000000000000000000000000000000000000027fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff9815157401000000000000000000000000000000000000000002989098167fffffffffffffffffffff0000ffffffffffffffffffffffffffffffffffffffff90961695909517969096179490941692909217179055600655600755565b61072f610cb0565b6001600160a01b0391909116600090815260096020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091908381101561081a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b61051782868684036108c2565b6000336104f2818585610aac565b61083d610cb0565b6001600160a01b0381166108b95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610811565b61056b81610f02565b6001600160a01b03831661093d5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610811565b6001600160a01b0382166109b95760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610811565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038381166000908152600160209081526040808320938616835292905220546000198114610aa65781811015610a995760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610811565b610aa684848484036108c2565b50505050565b610ab7838383610f6c565b60055474010000000000000000000000000000000000000000900460ff168015610aee57506008546001600160a01b038481169116145b15610b2b576000610afe82611183565b90506000610b0c8284611479565b9050610b19858583610d0a565b610b24853084610d0a565b5050505050565b610b36838383610d0a565b505050565b6001600160a01b038216610bb75760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610811565b610bc382600083610f6c565b6001600160a01b03821660009081526020819052604090205481811015610c525760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f63650000000000000000000000000000000000000000000000000000000000006064820152608401610811565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b6005546001600160a01b031633146105b05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610811565b6001600160a01b038316610d865760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610811565b6001600160a01b038216610e025760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610811565b610e0d838383610f6c565b6001600160a01b03831660009081526020819052604090205481811015610e9c5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610811565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610aa6565b600580546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03821660009081526009602052604090205460ff16158015610fae57506001600160a01b03831660009081526009602052604090205460ff16155b610ffa5760405162461bcd60e51b815260206004820152600b60248201527f426c61636b6c69737465640000000000000000000000000000000000000000006044820152606401610811565b6008546001600160a01b031661107f576005546001600160a01b038481169116148061103357506005546001600160a01b038381169116145b61107f5760405162461bcd60e51b815260206004820152601160248201527f54726164696e674e6f74537461727465640000000000000000000000000000006044820152606401610811565b6005547501000000000000000000000000000000000000000000900460ff1680156110b757506008546001600160a01b038481169116145b80156110cc57506001600160a01b0382163014155b15610b3657600654816110f4846001600160a01b031660009081526020819052604090205490565b6110fe9190611466565b1115801561113757506007548161112a846001600160a01b031660009081526020819052604090205490565b6111349190611466565b10155b610b365760405162461bcd60e51b815260206004820152600760248201527f4c696d69746564000000000000000000000000000000000000000000000000006044820152606401610811565b6005546000906111b190760100000000000000000000000000000000000000000000900460ff166002611466565b6111bc90600a611570565b6005546111ea9077010000000000000000000000000000000000000000000000900463ffffffff168461157c565b6104f89190611593565b600060208083528351808285015260005b8181101561122157858101830151858201604001528201611205565b5060006040828601015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8301168501019250505092915050565b80356001600160a01b038116811461127757600080fd5b919050565b6000806040838503121561128f57600080fd5b61129883611260565b946020939093013593505050565b6000806000606084860312156112bb57600080fd5b6112c484611260565b92506112d260208501611260565b9150604084013590509250925092565b6000602082840312156112f457600080fd5b5035919050565b60006020828403121561130d57600080fd5b61131682611260565b9392505050565b8035801515811461127757600080fd5b600080600080600080600060e0888a03121561134857600080fd5b6113518861131d565b965061135f6020890161131d565b955061136d60408901611260565b9450606088013560ff8116811461138357600080fd5b9350608088013563ffffffff8116811461139c57600080fd5b9699959850939692959460a0840135945060c09093013592915050565b600080604083850312156113cc57600080fd5b6113d583611260565b91506113e36020840161131d565b90509250929050565b600080604083850312156113ff57600080fd5b61140883611260565b91506113e360208401611260565b600181811c9082168061142a57607f821691505b60208210810361144a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156104f8576104f8611450565b818103818111156104f8576104f8611450565b600181815b808511156114c75781600019048211156114ad576114ad611450565b808516156114ba57918102915b93841c9390800290611491565b509250929050565b6000826114de575060016104f8565b816114eb575060006104f8565b8160018114611501576002811461150b57611527565b60019150506104f8565b60ff84111561151c5761151c611450565b50506001821b6104f8565b5060208310610133831016604e8410600b841016171561154a575081810a6104f8565b611554838361148c565b806000190482111561156857611568611450565b029392505050565b600061131683836114cf565b80820281158282048414176104f8576104f8611450565b6000826115b057634e487b7160e01b600052601260045260246000fd5b50049056fea26469706673582212203a8459659fcabee78d24b5804986e6802ed548e4e4ab74b198f7f636d348303564736f6c63430008110033

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

0000000000000000000000000000000000000027a708891c48e3eddfd7340000

-----Decoded View---------------
Arg [0] : _totalSupply (uint256): 3141592653589000000000000000000

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000027a708891c48e3eddfd7340000


Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

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

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]

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