ETH Price: $3,930.55 (-1.32%)

Contract

0x51Dd4f8647256D9bd966436Eb826A804a829a791
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve210021542024-10-19 20:57:5954 days ago1729371479IN
0x51Dd4f86...4a829a791
0 ETH0.000209438.6356733
Approve203193692024-07-16 13:27:59150 days ago1721136479IN
0x51Dd4f86...4a829a791
0 ETH0.000224079.23962491
Transfer202506022024-07-06 22:57:47159 days ago1720306667IN
0x51Dd4f86...4a829a791
0 ETH0.000058321.61246505
Transfer202505982024-07-06 22:56:59159 days ago1720306619IN
0x51Dd4f86...4a829a791
0 ETH0.00008591.61260425
Approve198178322024-05-07 11:16:35220 days ago1715080595IN
0x51Dd4f86...4a829a791
0 ETH0.000136415.61081533
Approve197171672024-04-23 9:21:35234 days ago1713864095IN
0x51Dd4f86...4a829a791
0 ETH0.000207428.55275634
Approve195344552024-03-28 18:55:11259 days ago1711652111IN
0x51Dd4f86...4a829a791
0 ETH0.0009531539.20491984
Approve191190412024-01-30 11:31:23318 days ago1706614283IN
0x51Dd4f86...4a829a791
0 ETH0.0008536735.20014369
Approve189355812024-01-04 17:54:47343 days ago1704390887IN
0x51Dd4f86...4a829a791
0 ETH0.0005759623.7492441
Approve187379372023-12-08 0:21:59371 days ago1701994919IN
0x51Dd4f86...4a829a791
0 ETH0.0025441754.60075182
Approve183754312023-10-18 6:23:23422 days ago1697610203IN
0x51Dd4f86...4a829a791
0 ETH0.000182567.50925397
Approve182901202023-10-06 7:57:59434 days ago1696579079IN
0x51Dd4f86...4a829a791
0 ETH0.000302226.52142874
Approve182285362023-09-27 17:18:47442 days ago1695835127IN
0x51Dd4f86...4a829a791
0 ETH0.0008004917.29976562
Approve182203102023-09-26 13:40:35444 days ago1695735635IN
0x51Dd4f86...4a829a791
0 ETH0.000458359.84957254
Approve182091462023-09-25 0:11:23445 days ago1695600683IN
0x51Dd4f86...4a829a791
0 ETH0.000338017.254244
Approve181449832023-09-15 23:52:47454 days ago1694821967IN
0x51Dd4f86...4a829a791
0 ETH0.000396698.52438537
Approve181152612023-09-11 19:41:11458 days ago1694461271IN
0x51Dd4f86...4a829a791
0 ETH0.001399130.22088664
Approve180516262023-09-02 21:53:47467 days ago1693691627IN
0x51Dd4f86...4a829a791
0 ETH0.0004861510.50913261
Approve180404682023-09-01 8:19:59469 days ago1693556399IN
0x51Dd4f86...4a829a791
0 ETH0.0002479610.19932662
Approve180056762023-08-27 11:22:59474 days ago1693135379IN
0x51Dd4f86...4a829a791
0 ETH0.0003452214.23501227
Approve179558062023-08-20 11:58:11481 days ago1692532691IN
0x51Dd4f86...4a829a791
0 ETH0.0008407318.04314452
Transfer179557952023-08-20 11:55:47481 days ago1692532547IN
0x51Dd4f86...4a829a791
0 ETH0.0005064914.00188511
Approve179123892023-08-14 10:08:23487 days ago1692007703IN
0x51Dd4f86...4a829a791
0 ETH0.0006505713.96201734
Transfer179123762023-08-14 10:05:47487 days ago1692007547IN
0x51Dd4f86...4a829a791
0 ETH0.0005703515.76751483
Transfer179123492023-08-14 10:00:23487 days ago1692007223IN
0x51Dd4f86...4a829a791
0 ETH0.0006470717.8883355
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:
Miracle

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 7 : MyToken.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.18;

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

contract Miracle is Ownable, ERC20, ERC20Burnable {
    string public tokenName;
    string public tokenSymbol;
    address public pairAddress;
    uint256 public maxTokenHoldings;
    mapping(address => bool) public blacklist;
    constructor(string memory _tokenName, string memory _tokenSymbol, address[] memory recipients, uint256[] memory amounts) ERC20(_tokenName, _tokenSymbol) {
        require(recipients.length == amounts.length, "Recipients and amounts arrays must have the same length");
        tokenName = _tokenName;
        tokenSymbol = _tokenSymbol;
        maxTokenHoldings = 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff;
        for (uint i = 0; i < recipients.length; i++) {
            _mint(recipients[i], amounts[i]);
        }
    }
    function setBlacklisted(address _address, bool _isBlacklisted) external onlyOwner {
        blacklist[_address] = _isBlacklisted;
    }
    function setPair(address _pair) external onlyOwner {
        pairAddress = _pair;
    }
    function setMaxHoldings(uint256 _maxTokenHoldings) external onlyOwner {
        maxTokenHoldings = _maxTokenHoldings;
    }
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) override internal virtual {
        require(!blacklist[to] && !blacklist[from], "Blacklisted, sorry");
        if (from == pairAddress) {
            require(super.balanceOf(to) + amount <= maxTokenHoldings, "Bag too large, sorry");
        }
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

File 3 of 7 : ERC20Burnable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        _spendAllowance(account, _msgSender(), amount);
        _burn(account, amount);
    }
}

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

pragma solidity ^0.8.0;

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

File 6 of 7 : 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 7 of 7 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_tokenName","type":"string"},{"internalType":"string","name":"_tokenSymbol","type":"string"},{"internalType":"address[]","name":"recipients","type":"address[]"},{"internalType":"uint256[]","name":"amounts","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":"","type":"address"}],"name":"blacklist","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":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","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":"maxTokenHoldings","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":"pairAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_isBlacklisted","type":"bool"}],"name":"setBlacklisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTokenHoldings","type":"uint256"}],"name":"setMaxHoldings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_pair","type":"address"}],"name":"setPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenName","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenSymbol","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"}]

60806040523480156200001157600080fd5b50604051620017243803806200172483398101604081905262000034916200053e565b8383620000413362000179565b60046200004f8382620006f5565b5060056200005e8282620006f5565b5050508051825114620000de5760405162461bcd60e51b815260206004820152603760248201527f526563697069656e747320616e6420616d6f756e747320617272617973206d7560448201527f73742068617665207468652073616d65206c656e67746800000000000000000060648201526084015b60405180910390fd5b6006620000ec8582620006f5565b506007620000fb8482620006f5565b5060001960095560005b82518110156200016e5762000159838281518110620001285762000128620007c1565b6020026020010151838381518110620001455762000145620007c1565b6020026020010151620001c960201b60201c565b806200016581620007ed565b91505062000105565b505050505062000825565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620002215760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620000d5565b6200022f600083836200029c565b806003600082825462000243919062000809565b90915550506001600160a01b0382166000818152600160209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b0382166000908152600a602052604090205460ff16158015620002df57506001600160a01b0383166000908152600a602052604090205460ff16155b620003225760405162461bcd60e51b8152602060048201526012602482015271426c61636b6c69737465642c20736f72727960701b6044820152606401620000d5565b6008546001600160a01b0390811690841603620003af57600954816200035384620003b460201b620004c31760201c565b6200035f919062000809565b1115620003af5760405162461bcd60e51b815260206004820152601460248201527f42616720746f6f206c617267652c20736f7272790000000000000000000000006044820152606401620000d5565b505050565b6001600160a01b031660009081526001602052604090205490565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715620004105762000410620003cf565b604052919050565b600082601f8301126200042a57600080fd5b81516001600160401b03811115620004465762000446620003cf565b60206200045c601f8301601f19168201620003e5565b82815285828487010111156200047157600080fd5b60005b838110156200049157858101830151828201840152820162000474565b506000928101909101919091529392505050565b60006001600160401b03821115620004c157620004c1620003cf565b5060051b60200190565b600082601f830112620004dd57600080fd5b81516020620004f6620004f083620004a5565b620003e5565b82815260059290921b840181019181810190868411156200051657600080fd5b8286015b848110156200053357805183529183019183016200051a565b509695505050505050565b600080600080608085870312156200055557600080fd5b84516001600160401b03808211156200056d57600080fd5b6200057b8883890162000418565b95506020915081870151818111156200059357600080fd5b620005a189828a0162000418565b955050604087015181811115620005b757600080fd5b8701601f81018913620005c957600080fd5b8051620005da620004f082620004a5565b81815260059190911b8201840190848101908b831115620005fa57600080fd5b928501925b82841015620006315783516001600160a01b0381168114620006215760008081fd5b82529285019290850190620005ff565b60608b01519097509450505050808211156200064c57600080fd5b506200065b87828801620004cb565b91505092959194509250565b600181811c908216806200067c57607f821691505b6020821081036200069d57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620003af57600081815260208120601f850160051c81016020861015620006cc5750805b601f850160051c820191505b81811015620006ed57828155600101620006d8565b505050505050565b81516001600160401b03811115620007115762000711620003cf565b620007298162000722845462000667565b84620006a3565b602080601f831160018114620007615760008415620007485750858301515b600019600386901b1c1916600185901b178555620006ed565b600085815260208120601f198616915b82811015620007925788860151825594840194600190910190840162000771565b5085821015620007b15787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060018201620008025762000802620007d7565b5060010190565b808201808211156200081f576200081f620007d7565b92915050565b610eef80620008356000396000f3fe608060405234801561001057600080fd5b50600436106101585760003560e01c80637b61c320116100c3578063a8b089821161007c578063a8b08982146102a7578063a9059cbb146102ba578063d01dd6d2146102cd578063dd62ed3e146102e0578063f2fde38b146102f3578063f9f92be41461030657600080fd5b80637b61c320146102435780638187f5161461024b5780638da5cb5b1461025e57806395d89b4114610283578063a457c2d71461028b578063a6f200821461029e57600080fd5b806342966c681161011557806342966c68146101e55780635ae9e94b146101fa5780636c02a9311461020d57806370a0823114610215578063715018a61461022857806379cc67901461023057600080fd5b806306fdde031461015d578063095ea7b31461017b57806318160ddd1461019e57806323b872dd146101b0578063313ce567146101c357806339509351146101d2575b600080fd5b610165610329565b6040516101729190610ce4565b60405180910390f35b61018e610189366004610d4e565b6103bb565b6040519015158152602001610172565b6003545b604051908152602001610172565b61018e6101be366004610d78565b6103d5565b60405160128152602001610172565b61018e6101e0366004610d4e565b6103f9565b6101f86101f3366004610db4565b61041b565b005b6101f8610208366004610db4565b610428565b610165610435565b6101a2610223366004610dcd565b6104c3565b6101f86104de565b6101f861023e366004610d4e565b6104f2565b61016561050b565b6101f8610259366004610dcd565b610518565b6000546001600160a01b03165b6040516001600160a01b039091168152602001610172565b610165610542565b61018e610299366004610d4e565b610551565b6101a260095481565b60085461026b906001600160a01b031681565b61018e6102c8366004610d4e565b6105d1565b6101f86102db366004610def565b6105df565b6101a26102ee366004610e2b565b610612565b6101f8610301366004610dcd565b61063d565b61018e610314366004610dcd565b600a6020526000908152604090205460ff1681565b60606004805461033890610e5e565b80601f016020809104026020016040519081016040528092919081815260200182805461036490610e5e565b80156103b15780601f10610386576101008083540402835291602001916103b1565b820191906000526020600020905b81548152906001019060200180831161039457829003601f168201915b5050505050905090565b6000336103c98185856106b3565b60019150505b92915050565b6000336103e38582856107d8565b6103ee858585610852565b506001949350505050565b6000336103c981858561040c8383610612565b6104169190610e98565b6106b3565b6104253382610a08565b50565b610430610b45565b600955565b6006805461044290610e5e565b80601f016020809104026020016040519081016040528092919081815260200182805461046e90610e5e565b80156104bb5780601f10610490576101008083540402835291602001916104bb565b820191906000526020600020905b81548152906001019060200180831161049e57829003601f168201915b505050505081565b6001600160a01b031660009081526001602052604090205490565b6104e6610b45565b6104f06000610b9f565b565b6104fd8233836107d8565b6105078282610a08565b5050565b6007805461044290610e5e565b610520610b45565b600880546001600160a01b0319166001600160a01b0392909216919091179055565b60606005805461033890610e5e565b6000338161055f8286610612565b9050838110156105c45760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b6103ee82868684036106b3565b6000336103c9818585610852565b6105e7610b45565b6001600160a01b03919091166000908152600a60205260409020805460ff1916911515919091179055565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b610645610b45565b6001600160a01b0381166106aa5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105bb565b61042581610b9f565b6001600160a01b0383166107155760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016105bb565b6001600160a01b0382166107765760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016105bb565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b60006107e48484610612565b9050600019811461084c578181101561083f5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016105bb565b61084c84848484036106b3565b50505050565b6001600160a01b0383166108b65760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016105bb565b6001600160a01b0382166109185760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016105bb565b610923838383610bef565b6001600160a01b0383166000908152600160205260409020548181101561099b5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016105bb565b6001600160a01b0380851660008181526001602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906109fb9086815260200190565b60405180910390a361084c565b6001600160a01b038216610a685760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016105bb565b610a7482600083610bef565b6001600160a01b03821660009081526001602052604090205481811015610ae85760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016105bb565b6001600160a01b03831660008181526001602090815260408083208686039055600380548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91016107cb565b505050565b6000546001600160a01b031633146104f05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105bb565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166000908152600a602052604090205460ff16158015610c3157506001600160a01b0383166000908152600a602052604090205460ff16155b610c725760405162461bcd60e51b8152602060048201526012602482015271426c61636b6c69737465642c20736f72727960701b60448201526064016105bb565b6008546001600160a01b0390811690841603610b405760095481610c95846104c3565b610c9f9190610e98565b1115610b405760405162461bcd60e51b815260206004820152601460248201527342616720746f6f206c617267652c20736f72727960601b60448201526064016105bb565b600060208083528351808285015260005b81811015610d1157858101830151858201604001528201610cf5565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610d4957600080fd5b919050565b60008060408385031215610d6157600080fd5b610d6a83610d32565b946020939093013593505050565b600080600060608486031215610d8d57600080fd5b610d9684610d32565b9250610da460208501610d32565b9150604084013590509250925092565b600060208284031215610dc657600080fd5b5035919050565b600060208284031215610ddf57600080fd5b610de882610d32565b9392505050565b60008060408385031215610e0257600080fd5b610e0b83610d32565b915060208301358015158114610e2057600080fd5b809150509250929050565b60008060408385031215610e3e57600080fd5b610e4783610d32565b9150610e5560208401610d32565b90509250929050565b600181811c90821680610e7257607f821691505b602082108103610e9257634e487b7160e01b600052602260045260246000fd5b50919050565b808201808211156103cf57634e487b7160e01b600052601160045260246000fdfea2646970667358221220b61a5468445f1be7b84d72a228057143d46b168177575244a14fe2d1050f53c264736f6c63430008120033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000034000000000000000000000000000000000000000000000000000000000000000074d495241434c450000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000074d495241434c45000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011000000000000000000000000fc922e548b0dbd02916c0cb575eac89c8632697e0000000000000000000000003d59b7aa3fb0ce43189acab64b8b58aacc98a959000000000000000000000000b8092e5aa5c527ef7c45727c068b0bcebb568f9c00000000000000000000000008dc48eef509f0faee2c133a0a8ab9dc0b8d127c0000000000000000000000001c2cdbd654042607732ede74677d1beef68d90c90000000000000000000000007202a954b6a9b5af2f507965e32f9241259816f40000000000000000000000000782800a85376a8eae18909b0bf87990e3a5930800000000000000000000000077ebec0b934b669445c37918a5ae9b5413db142b0000000000000000000000004340d45c27b5480f1e40710d384e2b16f2f2cb750000000000000000000000006a08223e7e96b1b63fc3c0430c1be344c5649955000000000000000000000000cae978a83e56da8ba3acbeb2dfd70e2b66e51df10000000000000000000000007d097e927d5543c44d7ff866df1fe6afd7dcfdb5000000000000000000000000033cfe1f1ccec8e5317025a371aa03bb49ac99580000000000000000000000008b43cada504ebfae555a94940bd7061d51dfd4eb0000000000000000000000003afb34e27caf79ed6ab082bae39b29229e8478ae00000000000000000000000014c4c75f569f9b7cb33d931d05e059b2db916a9e000000000000000000000000932b5030609a40fa41572728b1170360dffb911200000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000422ca8b0a00a42500000000000000000000000000000000000000000000000039e7139a8c08fa06000000000000000000000000000000000000000000000000084595161401484a000000000000000000000000000000000000000000000000021165458500521280000000000000000000000000000000000000000000000000d3c21bcecceda100000000000000000000000000000000000000000000000000d3c21bcecceda100000000000000000000000000000000000000000000000000d3c21bcecceda100000000000000000000000000000000000000000000000000d3c21bcecceda100000000000000000000000000000000000000000000000000d3c21bcecceda100000000000000000000000000000000000000000000000000d3c21bcecceda100000000000000000000000000000000000000000000000000d3c21bcecceda100000000000000000000000000000000000000000000000000d3c21bcecceda100000000000000000000000000000000000000000000000000d3c21bcecceda100000000000000000000000000000000000000000000000000d3c21bcecceda100000000000000000000000000000000000000000000000000d3c21bcecceda100000000000000000000000000000000000000000000000000d3c21bcecceda10000000000000000000000000000000000000000000000000069e10de76676d0800000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101585760003560e01c80637b61c320116100c3578063a8b089821161007c578063a8b08982146102a7578063a9059cbb146102ba578063d01dd6d2146102cd578063dd62ed3e146102e0578063f2fde38b146102f3578063f9f92be41461030657600080fd5b80637b61c320146102435780638187f5161461024b5780638da5cb5b1461025e57806395d89b4114610283578063a457c2d71461028b578063a6f200821461029e57600080fd5b806342966c681161011557806342966c68146101e55780635ae9e94b146101fa5780636c02a9311461020d57806370a0823114610215578063715018a61461022857806379cc67901461023057600080fd5b806306fdde031461015d578063095ea7b31461017b57806318160ddd1461019e57806323b872dd146101b0578063313ce567146101c357806339509351146101d2575b600080fd5b610165610329565b6040516101729190610ce4565b60405180910390f35b61018e610189366004610d4e565b6103bb565b6040519015158152602001610172565b6003545b604051908152602001610172565b61018e6101be366004610d78565b6103d5565b60405160128152602001610172565b61018e6101e0366004610d4e565b6103f9565b6101f86101f3366004610db4565b61041b565b005b6101f8610208366004610db4565b610428565b610165610435565b6101a2610223366004610dcd565b6104c3565b6101f86104de565b6101f861023e366004610d4e565b6104f2565b61016561050b565b6101f8610259366004610dcd565b610518565b6000546001600160a01b03165b6040516001600160a01b039091168152602001610172565b610165610542565b61018e610299366004610d4e565b610551565b6101a260095481565b60085461026b906001600160a01b031681565b61018e6102c8366004610d4e565b6105d1565b6101f86102db366004610def565b6105df565b6101a26102ee366004610e2b565b610612565b6101f8610301366004610dcd565b61063d565b61018e610314366004610dcd565b600a6020526000908152604090205460ff1681565b60606004805461033890610e5e565b80601f016020809104026020016040519081016040528092919081815260200182805461036490610e5e565b80156103b15780601f10610386576101008083540402835291602001916103b1565b820191906000526020600020905b81548152906001019060200180831161039457829003601f168201915b5050505050905090565b6000336103c98185856106b3565b60019150505b92915050565b6000336103e38582856107d8565b6103ee858585610852565b506001949350505050565b6000336103c981858561040c8383610612565b6104169190610e98565b6106b3565b6104253382610a08565b50565b610430610b45565b600955565b6006805461044290610e5e565b80601f016020809104026020016040519081016040528092919081815260200182805461046e90610e5e565b80156104bb5780601f10610490576101008083540402835291602001916104bb565b820191906000526020600020905b81548152906001019060200180831161049e57829003601f168201915b505050505081565b6001600160a01b031660009081526001602052604090205490565b6104e6610b45565b6104f06000610b9f565b565b6104fd8233836107d8565b6105078282610a08565b5050565b6007805461044290610e5e565b610520610b45565b600880546001600160a01b0319166001600160a01b0392909216919091179055565b60606005805461033890610e5e565b6000338161055f8286610612565b9050838110156105c45760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b6103ee82868684036106b3565b6000336103c9818585610852565b6105e7610b45565b6001600160a01b03919091166000908152600a60205260409020805460ff1916911515919091179055565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b610645610b45565b6001600160a01b0381166106aa5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105bb565b61042581610b9f565b6001600160a01b0383166107155760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016105bb565b6001600160a01b0382166107765760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016105bb565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b60006107e48484610612565b9050600019811461084c578181101561083f5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016105bb565b61084c84848484036106b3565b50505050565b6001600160a01b0383166108b65760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016105bb565b6001600160a01b0382166109185760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016105bb565b610923838383610bef565b6001600160a01b0383166000908152600160205260409020548181101561099b5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016105bb565b6001600160a01b0380851660008181526001602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906109fb9086815260200190565b60405180910390a361084c565b6001600160a01b038216610a685760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016105bb565b610a7482600083610bef565b6001600160a01b03821660009081526001602052604090205481811015610ae85760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016105bb565b6001600160a01b03831660008181526001602090815260408083208686039055600380548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91016107cb565b505050565b6000546001600160a01b031633146104f05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105bb565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166000908152600a602052604090205460ff16158015610c3157506001600160a01b0383166000908152600a602052604090205460ff16155b610c725760405162461bcd60e51b8152602060048201526012602482015271426c61636b6c69737465642c20736f72727960701b60448201526064016105bb565b6008546001600160a01b0390811690841603610b405760095481610c95846104c3565b610c9f9190610e98565b1115610b405760405162461bcd60e51b815260206004820152601460248201527342616720746f6f206c617267652c20736f72727960601b60448201526064016105bb565b600060208083528351808285015260005b81811015610d1157858101830151858201604001528201610cf5565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610d4957600080fd5b919050565b60008060408385031215610d6157600080fd5b610d6a83610d32565b946020939093013593505050565b600080600060608486031215610d8d57600080fd5b610d9684610d32565b9250610da460208501610d32565b9150604084013590509250925092565b600060208284031215610dc657600080fd5b5035919050565b600060208284031215610ddf57600080fd5b610de882610d32565b9392505050565b60008060408385031215610e0257600080fd5b610e0b83610d32565b915060208301358015158114610e2057600080fd5b809150509250929050565b60008060408385031215610e3e57600080fd5b610e4783610d32565b9150610e5560208401610d32565b90509250929050565b600181811c90821680610e7257607f821691505b602082108103610e9257634e487b7160e01b600052602260045260246000fd5b50919050565b808201808211156103cf57634e487b7160e01b600052601160045260246000fdfea2646970667358221220b61a5468445f1be7b84d72a228057143d46b168177575244a14fe2d1050f53c264736f6c63430008120033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000034000000000000000000000000000000000000000000000000000000000000000074d495241434c450000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000074d495241434c45000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011000000000000000000000000fc922e548b0dbd02916c0cb575eac89c8632697e0000000000000000000000003d59b7aa3fb0ce43189acab64b8b58aacc98a959000000000000000000000000b8092e5aa5c527ef7c45727c068b0bcebb568f9c00000000000000000000000008dc48eef509f0faee2c133a0a8ab9dc0b8d127c0000000000000000000000001c2cdbd654042607732ede74677d1beef68d90c90000000000000000000000007202a954b6a9b5af2f507965e32f9241259816f40000000000000000000000000782800a85376a8eae18909b0bf87990e3a5930800000000000000000000000077ebec0b934b669445c37918a5ae9b5413db142b0000000000000000000000004340d45c27b5480f1e40710d384e2b16f2f2cb750000000000000000000000006a08223e7e96b1b63fc3c0430c1be344c5649955000000000000000000000000cae978a83e56da8ba3acbeb2dfd70e2b66e51df10000000000000000000000007d097e927d5543c44d7ff866df1fe6afd7dcfdb5000000000000000000000000033cfe1f1ccec8e5317025a371aa03bb49ac99580000000000000000000000008b43cada504ebfae555a94940bd7061d51dfd4eb0000000000000000000000003afb34e27caf79ed6ab082bae39b29229e8478ae00000000000000000000000014c4c75f569f9b7cb33d931d05e059b2db916a9e000000000000000000000000932b5030609a40fa41572728b1170360dffb911200000000000000000000000000000000000000000000000000000000000000110000000000000000000000000000000000000000000422ca8b0a00a42500000000000000000000000000000000000000000000000039e7139a8c08fa06000000000000000000000000000000000000000000000000084595161401484a000000000000000000000000000000000000000000000000021165458500521280000000000000000000000000000000000000000000000000d3c21bcecceda100000000000000000000000000000000000000000000000000d3c21bcecceda100000000000000000000000000000000000000000000000000d3c21bcecceda100000000000000000000000000000000000000000000000000d3c21bcecceda100000000000000000000000000000000000000000000000000d3c21bcecceda100000000000000000000000000000000000000000000000000d3c21bcecceda100000000000000000000000000000000000000000000000000d3c21bcecceda100000000000000000000000000000000000000000000000000d3c21bcecceda100000000000000000000000000000000000000000000000000d3c21bcecceda100000000000000000000000000000000000000000000000000d3c21bcecceda100000000000000000000000000000000000000000000000000d3c21bcecceda100000000000000000000000000000000000000000000000000d3c21bcecceda10000000000000000000000000000000000000000000000000069e10de76676d0800000

-----Decoded View---------------
Arg [0] : _tokenName (string): MIRACLE
Arg [1] : _tokenSymbol (string): MIRACLE
Arg [2] : recipients (address[]): 0xfc922e548b0DBd02916c0CB575eAc89C8632697E,0x3D59B7AA3FB0ce43189aCAB64B8b58aAcC98A959,0xB8092e5Aa5c527eF7C45727C068B0bcEBb568f9C,0x08dC48eef509F0FAee2c133A0A8aB9dC0b8D127c,0x1C2cdBd654042607732edE74677d1Beef68D90C9,0x7202a954B6a9B5AF2F507965e32f9241259816F4,0x0782800A85376a8eAe18909b0bf87990e3A59308,0x77eBec0B934B669445C37918a5aE9B5413dB142b,0x4340D45C27B5480F1e40710d384e2B16f2F2CB75,0x6a08223e7e96B1b63fc3C0430C1bE344C5649955,0xCAE978A83E56Da8bA3aCbeb2dfD70e2b66e51dF1,0x7d097e927d5543c44d7fF866dF1fE6Afd7DcfdB5,0x033cfE1F1Ccec8e5317025a371AA03bB49Ac9958,0x8B43cada504eBFAE555a94940bd7061D51DfD4Eb,0x3AFb34E27CAf79ED6aB082Bae39b29229E8478ae,0x14C4C75f569F9B7CB33d931d05E059B2DB916a9e,0x932b5030609A40fa41572728B1170360dFFb9112
Arg [3] : amounts (uint256[]): 5000000000000000000000000,70000000000000000000000000,10000000000000000000000000,2500000000000000000000000,1000000000000000000000000,1000000000000000000000000,1000000000000000000000000,1000000000000000000000000,1000000000000000000000000,1000000000000000000000000,1000000000000000000000000,1000000000000000000000000,1000000000000000000000000,1000000000000000000000000,1000000000000000000000000,1000000000000000000000000,500000000000000000000000

-----Encoded View---------------
44 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000340
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [5] : 4d495241434c4500000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [7] : 4d495241434c4500000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000011
Arg [9] : 000000000000000000000000fc922e548b0dbd02916c0cb575eac89c8632697e
Arg [10] : 0000000000000000000000003d59b7aa3fb0ce43189acab64b8b58aacc98a959
Arg [11] : 000000000000000000000000b8092e5aa5c527ef7c45727c068b0bcebb568f9c
Arg [12] : 00000000000000000000000008dc48eef509f0faee2c133a0a8ab9dc0b8d127c
Arg [13] : 0000000000000000000000001c2cdbd654042607732ede74677d1beef68d90c9
Arg [14] : 0000000000000000000000007202a954b6a9b5af2f507965e32f9241259816f4
Arg [15] : 0000000000000000000000000782800a85376a8eae18909b0bf87990e3a59308
Arg [16] : 00000000000000000000000077ebec0b934b669445c37918a5ae9b5413db142b
Arg [17] : 0000000000000000000000004340d45c27b5480f1e40710d384e2b16f2f2cb75
Arg [18] : 0000000000000000000000006a08223e7e96b1b63fc3c0430c1be344c5649955
Arg [19] : 000000000000000000000000cae978a83e56da8ba3acbeb2dfd70e2b66e51df1
Arg [20] : 0000000000000000000000007d097e927d5543c44d7ff866df1fe6afd7dcfdb5
Arg [21] : 000000000000000000000000033cfe1f1ccec8e5317025a371aa03bb49ac9958
Arg [22] : 0000000000000000000000008b43cada504ebfae555a94940bd7061d51dfd4eb
Arg [23] : 0000000000000000000000003afb34e27caf79ed6ab082bae39b29229e8478ae
Arg [24] : 00000000000000000000000014c4c75f569f9b7cb33d931d05e059b2db916a9e
Arg [25] : 000000000000000000000000932b5030609a40fa41572728b1170360dffb9112
Arg [26] : 0000000000000000000000000000000000000000000000000000000000000011
Arg [27] : 0000000000000000000000000000000000000000000422ca8b0a00a425000000
Arg [28] : 00000000000000000000000000000000000000000039e7139a8c08fa06000000
Arg [29] : 000000000000000000000000000000000000000000084595161401484a000000
Arg [30] : 0000000000000000000000000000000000000000000211654585005212800000
Arg [31] : 00000000000000000000000000000000000000000000d3c21bcecceda1000000
Arg [32] : 00000000000000000000000000000000000000000000d3c21bcecceda1000000
Arg [33] : 00000000000000000000000000000000000000000000d3c21bcecceda1000000
Arg [34] : 00000000000000000000000000000000000000000000d3c21bcecceda1000000
Arg [35] : 00000000000000000000000000000000000000000000d3c21bcecceda1000000
Arg [36] : 00000000000000000000000000000000000000000000d3c21bcecceda1000000
Arg [37] : 00000000000000000000000000000000000000000000d3c21bcecceda1000000
Arg [38] : 00000000000000000000000000000000000000000000d3c21bcecceda1000000
Arg [39] : 00000000000000000000000000000000000000000000d3c21bcecceda1000000
Arg [40] : 00000000000000000000000000000000000000000000d3c21bcecceda1000000
Arg [41] : 00000000000000000000000000000000000000000000d3c21bcecceda1000000
Arg [42] : 00000000000000000000000000000000000000000000d3c21bcecceda1000000
Arg [43] : 0000000000000000000000000000000000000000000069e10de76676d0800000


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.