ETH Price: $2,461.46 (+0.64%)

Token

Simple (SIMPLE)
 

Overview

Max Total Supply

909,680,737,743.634881287366344013 SIMPLE

Holders

34

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
2,855,149,153.180732273570598811 SIMPLE

Value
$0.00
0x84ed6aea5021eece9b6c17d3692a8ec98eaca154
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
Simple

Compiler Version
v0.8.21+commit.d9974bed

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 6 : SIMPLENEW.sol
// SPDX-License-Identifier: MIT
/**

Website: https://ercsimple.xyz
Telegram: https://t.me/ercsimple
Twitter: https://twitter.com/ercsimple

* Simple (SIMPLE)
*
*In the crypto world, scams are everyehre. Trust is scarce. 95% of new tokens aim to deceive or profit at your expense.
*
* Simple stands out - clean code, rigorous audits, no hidden traps. Simplicity is perfection in crypto.
*
* Every line of code ensures transparency and trust. We redefine the standards for a safe and reliable investment.
*
* Contract Features:
* - Clean and Audited Code 
* - No Team Tokens -> 100% tokens Pink Pre-Sale -> Liquidity -> No massive selloffs
* - Locked Liquidity -> Pink Lock -> No Rug Pulls
* - 5% burn tax on every transaction -> Hyper-deflationary -> Moon
* - Contract Ownership Renounced -> No owner privileges or functions
*
* Join us in our mission to redefine trust and create a brighter future for the community.
*
* Learn more at ercsimple.xyz.
*
**/

pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol"; // Import Ownable contract, Ownership will be renounced after the presale is finalized

contract Simple is ERC20, Ownable(address(msg.sender)) { // Needed to set the Pink Sale presale address. Ownership will be renounced after the presale is finalized
    uint256 private constant BURN_RATE = 5; // 5% burn rate

    address private pinkSaleAddress;

    constructor(uint256 initialSupply) ERC20("Simple", "SIMPLE") {
    _mint(msg.sender, initialSupply * (10**uint256(decimals())));
    pinkSaleAddress = address(0); 
    }


    // Set the Pink Sale address after deployment
    function setPinkSaleAddress(address _pinkSaleAddress) external onlyOwner { // Pink Sale presale address
        pinkSaleAddress = _pinkSaleAddress;
    }

    // Transfer function with burn mechanism
    function transfer(address to, uint256 value) public override returns (bool) {
        require(value > 0, "ERC20: Transfer value must be greater than zero");

        uint256 burnvalue;
        uint256 transfervalue;

        if (
            msg.sender != owner() && // Check if the sender is not the owner
            msg.sender != pinkSaleAddress &&
            to != owner() && // Check if the recipient is not the owner
            to != pinkSaleAddress
        ) {
            burnvalue = (value * BURN_RATE) / 100;
            transfervalue = value - burnvalue;
        } else {
            burnvalue = 0;
            transfervalue = value;
        }

        if (burnvalue > 0) {
            _burn(msg.sender, burnvalue);
        }

        _transfer(msg.sender, to, transfervalue);
        return true;
    }

    function transferFrom(address from, address to, uint256 value) public override returns (bool) {
        require(from != address(0), "ERC20: Transfer from the zero address");
        require(value > 0, "ERC20: Transfer value must be greater than zero");

        uint256 burnvalue;
        uint256 transfervalue;

        address spender = _msgSender();

        if (
            from != owner() && // Check if the sender is not the owner
            from != pinkSaleAddress &&
            to != owner() && // Check if the recipient is not the owner
            to != pinkSaleAddress
        ) {
            burnvalue = (value * BURN_RATE) / 100;
            transfervalue = value - burnvalue;
        } else {
            burnvalue = 0;
            transfervalue = value;
        }

        if (burnvalue > 0) {
            _burn(from, burnvalue);
        }
        

        _spendAllowance(from, spender, value);
        _transfer(from, to, transfervalue);

        return true;
    }

}

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

pragma solidity ^0.8.20;

import {Context} from "../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.
 *
 * The initial owner is set to the address provided by the deployer. 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;

    /**
     * @dev The caller account is not authorized to perform an operation.
     */
    error OwnableUnauthorizedAccount(address account);

    /**
     * @dev The owner is not a valid owner account. (eg. `address(0)`)
     */
    error OwnableInvalidOwner(address owner);

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

    /**
     * @dev Initializes the contract setting the address provided by the deployer as the initial owner.
     */
    constructor(address initialOwner) {
        if (initialOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(initialOwner);
    }

    /**
     * @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 {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

    /**
     * @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 {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _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.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 4 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;
    }
}

File 5 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 6 of 6 : 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": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"initialSupply","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_pinkSaleAddress","type":"address"}],"name":"setPinkSaleAddress","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":"value","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":"value","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"}]

608060405234801562000010575f80fd5b50604051620028af380380620028af83398181016040528101906200003691906200044a565b336040518060400160405280600681526020017f53696d706c6500000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f53494d504c4500000000000000000000000000000000000000000000000000008152508160039081620000b49190620006d5565b508060049081620000c69190620006d5565b5050505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036200013c575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401620001339190620007fc565b60405180910390fd5b6200014d81620001d460201b60201c565b506200018d33620001636200029760201b60201c565b60ff16600a62000174919062000994565b83620001819190620009e4565b6200029f60201b60201c565b5f60065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505062000b12565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f6012905090565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000310576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003079062000a8c565b60405180910390fd5b620003235f83836200040460201b60201c565b8060025f82825462000336919062000aac565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003e5919062000af7565b60405180910390a3620004005f83836200040960201b60201c565b5050565b505050565b505050565b5f80fd5b5f819050919050565b620004268162000412565b811462000431575f80fd5b50565b5f8151905062000444816200041b565b92915050565b5f602082840312156200046257620004616200040e565b5b5f620004718482850162000434565b91505092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680620004f657607f821691505b6020821081036200050c576200050b620004b1565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620005707fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000533565b6200057c868362000533565b95508019841693508086168417925050509392505050565b5f819050919050565b5f620005bd620005b7620005b18462000412565b62000594565b62000412565b9050919050565b5f819050919050565b620005d8836200059d565b620005f0620005e782620005c4565b8484546200053f565b825550505050565b5f90565b62000606620005f8565b62000613818484620005cd565b505050565b5b818110156200063a576200062e5f82620005fc565b60018101905062000619565b5050565b601f8211156200068957620006538162000512565b6200065e8462000524565b810160208510156200066e578190505b620006866200067d8562000524565b83018262000618565b50505b505050565b5f82821c905092915050565b5f620006ab5f19846008026200068e565b1980831691505092915050565b5f620006c583836200069a565b9150826002028217905092915050565b620006e0826200047a565b67ffffffffffffffff811115620006fc57620006fb62000484565b5b620007088254620004de565b620007158282856200063e565b5f60209050601f8311600181146200074b575f841562000736578287015190505b620007428582620006b8565b865550620007b1565b601f1984166200075b8662000512565b5f5b8281101562000784578489015182556001820191506020850194506020810190506200075d565b86831015620007a45784890151620007a0601f8916826200069a565b8355505b6001600288020188555050505b505050505050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f620007e482620007b9565b9050919050565b620007f681620007d8565b82525050565b5f602082019050620008115f830184620007eb565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b6001851115620008a15780860481111562000879576200087862000817565b5b6001851615620008895780820291505b8081029050620008998562000844565b945062000859565b94509492505050565b5f82620008bb57600190506200098d565b81620008ca575f90506200098d565b8160018114620008e35760028114620008ee5762000924565b60019150506200098d565b60ff84111562000903576200090262000817565b5b8360020a9150848211156200091d576200091c62000817565b5b506200098d565b5060208310610133831016604e8410600b84101617156200095e5782820a90508381111562000958576200095762000817565b5b6200098d565b6200096d848484600162000850565b9250905081840481111562000987576200098662000817565b5b81810290505b9392505050565b5f620009a08262000412565b9150620009ad8362000412565b9250620009dc7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620008aa565b905092915050565b5f620009f08262000412565b9150620009fd8362000412565b925082820262000a0d8162000412565b9150828204841483151762000a275762000a2662000817565b5b5092915050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f62000a74601f8362000a2e565b915062000a818262000a3e565b602082019050919050565b5f6020820190508181035f83015262000aa58162000a66565b9050919050565b5f62000ab88262000412565b915062000ac58362000412565b925082820190508082111562000ae05762000adf62000817565b5b92915050565b62000af18162000412565b82525050565b5f60208201905062000b0c5f83018462000ae6565b92915050565b611d8f8062000b205f395ff3fe608060405234801561000f575f80fd5b50600436106100f3575f3560e01c8063715018a611610095578063a457c2d711610064578063a457c2d714610273578063a9059cbb146102a3578063dd62ed3e146102d3578063f2fde38b14610303576100f3565b8063715018a6146102115780637c0d08b21461021b5780638da5cb5b1461023757806395d89b4114610255576100f3565b806323b872dd116100d157806323b872dd14610163578063313ce5671461019357806339509351146101b157806370a08231146101e1576100f3565b806306fdde03146100f7578063095ea7b31461011557806318160ddd14610145575b5f80fd5b6100ff61031f565b60405161010c9190611378565b60405180910390f35b61012f600480360381019061012a9190611429565b6103af565b60405161013c9190611481565b60405180910390f35b61014d6103d1565b60405161015a91906114a9565b60405180910390f35b61017d600480360381019061017891906114c2565b6103da565b60405161018a9190611481565b60405180910390f35b61019b610631565b6040516101a8919061152d565b60405180910390f35b6101cb60048036038101906101c69190611429565b610639565b6040516101d89190611481565b60405180910390f35b6101fb60048036038101906101f69190611546565b61066f565b60405161020891906114a9565b60405180910390f35b6102196106b4565b005b61023560048036038101906102309190611546565b6106c7565b005b61023f610712565b60405161024c9190611580565b60405180910390f35b61025d61073a565b60405161026a9190611378565b60405180910390f35b61028d60048036038101906102889190611429565b6107ca565b60405161029a9190611481565b60405180910390f35b6102bd60048036038101906102b89190611429565b61083f565b6040516102ca9190611481565b60405180910390f35b6102ed60048036038101906102e89190611599565b610a10565b6040516102fa91906114a9565b60405180910390f35b61031d60048036038101906103189190611546565b610a92565b005b60606003805461032e90611604565b80601f016020809104026020016040519081016040528092919081815260200182805461035a90611604565b80156103a55780601f1061037c576101008083540402835291602001916103a5565b820191905f5260205f20905b81548152906001019060200180831161038857829003601f168201915b5050505050905090565b5f806103b9610b16565b90506103c6818585610b1d565b600191505092915050565b5f600254905090565b5f8073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610449576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610440906116a4565b60405180910390fd5b5f821161048b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161048290611732565b60405180910390fd5b5f805f610496610b16565b90506104a0610712565b73ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff1614158015610528575060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff1614155b80156105675750610537610712565b73ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614155b80156105c0575060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614155b156105f35760646005866105d4919061177d565b6105de91906117eb565b925082856105ec919061181b565b91506105fa565b5f92508491505b5f83111561060d5761060c8784610ce0565b5b610618878287610ea3565b610623878784610f2e565b600193505050509392505050565b5f6012905090565b5f80610643610b16565b90506106648185856106558589610a10565b61065f919061184e565b610b1d565b600191505092915050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6106bc61119a565b6106c55f611221565b565b6106cf61119a565b8060065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461074990611604565b80601f016020809104026020016040519081016040528092919081815260200182805461077590611604565b80156107c05780601f10610797576101008083540402835291602001916107c0565b820191905f5260205f20905b8154815290600101906020018083116107a357829003601f168201915b5050505050905090565b5f806107d4610b16565b90505f6107e18286610a10565b905083811015610826576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081d906118f1565b60405180910390fd5b6108338286868403610b1d565b60019250505092915050565b5f808211610882576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087990611732565b60405180910390fd5b5f8061088c610712565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614158015610914575060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614155b80156109535750610923610712565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b80156109ac575060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b156109df5760646005856109c0919061177d565b6109ca91906117eb565b915081846109d8919061181b565b90506109e6565b5f91508390505b5f8211156109f9576109f83383610ce0565b5b610a04338683610f2e565b60019250505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610a9a61119a565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b0a575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610b019190611580565b60405180910390fd5b610b1381611221565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b829061197f565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bf9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf090611a0d565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610cd391906114a9565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4590611a9b565b60405180910390fd5b610d59825f836112e4565b5f805f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610ddc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd390611b29565b60405180910390fd5b8181035f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160025f82825403925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e8b91906114a9565b60405180910390a3610e9e835f846112e9565b505050565b5f610eae8484610a10565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610f285781811015610f1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1190611b91565b60405180910390fd5b610f278484848403610b1d565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9390611c1f565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361100a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100190611cad565b60405180910390fd5b6110158383836112e4565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611098576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108f90611d3b565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161118191906114a9565b60405180910390a36111948484846112e9565b50505050565b6111a2610b16565b73ffffffffffffffffffffffffffffffffffffffff166111c0610712565b73ffffffffffffffffffffffffffffffffffffffff161461121f576111e3610b16565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016112169190611580565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561132557808201518184015260208101905061130a565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61134a826112ee565b61135481856112f8565b9350611364818560208601611308565b61136d81611330565b840191505092915050565b5f6020820190508181035f8301526113908184611340565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6113c58261139c565b9050919050565b6113d5816113bb565b81146113df575f80fd5b50565b5f813590506113f0816113cc565b92915050565b5f819050919050565b611408816113f6565b8114611412575f80fd5b50565b5f81359050611423816113ff565b92915050565b5f806040838503121561143f5761143e611398565b5b5f61144c858286016113e2565b925050602061145d85828601611415565b9150509250929050565b5f8115159050919050565b61147b81611467565b82525050565b5f6020820190506114945f830184611472565b92915050565b6114a3816113f6565b82525050565b5f6020820190506114bc5f83018461149a565b92915050565b5f805f606084860312156114d9576114d8611398565b5b5f6114e6868287016113e2565b93505060206114f7868287016113e2565b925050604061150886828701611415565b9150509250925092565b5f60ff82169050919050565b61152781611512565b82525050565b5f6020820190506115405f83018461151e565b92915050565b5f6020828403121561155b5761155a611398565b5b5f611568848285016113e2565b91505092915050565b61157a816113bb565b82525050565b5f6020820190506115935f830184611571565b92915050565b5f80604083850312156115af576115ae611398565b5b5f6115bc858286016113e2565b92505060206115cd858286016113e2565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061161b57607f821691505b60208210810361162e5761162d6115d7565b5b50919050565b7f45524332303a205472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f61168e6025836112f8565b915061169982611634565b604082019050919050565b5f6020820190508181035f8301526116bb81611682565b9050919050565b7f45524332303a205472616e736665722076616c7565206d7573742062652067725f8201527f6561746572207468616e207a65726f0000000000000000000000000000000000602082015250565b5f61171c602f836112f8565b9150611727826116c2565b604082019050919050565b5f6020820190508181035f83015261174981611710565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611787826113f6565b9150611792836113f6565b92508282026117a0816113f6565b915082820484148315176117b7576117b6611750565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6117f5826113f6565b9150611800836113f6565b9250826118105761180f6117be565b5b828204905092915050565b5f611825826113f6565b9150611830836113f6565b925082820390508181111561184857611847611750565b5b92915050565b5f611858826113f6565b9150611863836113f6565b925082820190508082111561187b5761187a611750565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6118db6025836112f8565b91506118e682611881565b604082019050919050565b5f6020820190508181035f830152611908816118cf565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6119696024836112f8565b91506119748261190f565b604082019050919050565b5f6020820190508181035f8301526119968161195d565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6119f76022836112f8565b9150611a028261199d565b604082019050919050565b5f6020820190508181035f830152611a24816119eb565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f611a856021836112f8565b9150611a9082611a2b565b604082019050919050565b5f6020820190508181035f830152611ab281611a79565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f611b136022836112f8565b9150611b1e82611ab9565b604082019050919050565b5f6020820190508181035f830152611b4081611b07565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f611b7b601d836112f8565b9150611b8682611b47565b602082019050919050565b5f6020820190508181035f830152611ba881611b6f565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f611c096025836112f8565b9150611c1482611baf565b604082019050919050565b5f6020820190508181035f830152611c3681611bfd565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f611c976023836112f8565b9150611ca282611c3d565b604082019050919050565b5f6020820190508181035f830152611cc481611c8b565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f611d256026836112f8565b9150611d3082611ccb565b604082019050919050565b5f6020820190508181035f830152611d5281611d19565b905091905056fea26469706673582212207ea2121fa22145184d95bafd33f06a0ae93f6fb8c7caf9d74c27ff36b5580f6b64736f6c63430008150033000000000000000000000000000000000000000000000000000000e8d4a51000

Deployed Bytecode

0x608060405234801561000f575f80fd5b50600436106100f3575f3560e01c8063715018a611610095578063a457c2d711610064578063a457c2d714610273578063a9059cbb146102a3578063dd62ed3e146102d3578063f2fde38b14610303576100f3565b8063715018a6146102115780637c0d08b21461021b5780638da5cb5b1461023757806395d89b4114610255576100f3565b806323b872dd116100d157806323b872dd14610163578063313ce5671461019357806339509351146101b157806370a08231146101e1576100f3565b806306fdde03146100f7578063095ea7b31461011557806318160ddd14610145575b5f80fd5b6100ff61031f565b60405161010c9190611378565b60405180910390f35b61012f600480360381019061012a9190611429565b6103af565b60405161013c9190611481565b60405180910390f35b61014d6103d1565b60405161015a91906114a9565b60405180910390f35b61017d600480360381019061017891906114c2565b6103da565b60405161018a9190611481565b60405180910390f35b61019b610631565b6040516101a8919061152d565b60405180910390f35b6101cb60048036038101906101c69190611429565b610639565b6040516101d89190611481565b60405180910390f35b6101fb60048036038101906101f69190611546565b61066f565b60405161020891906114a9565b60405180910390f35b6102196106b4565b005b61023560048036038101906102309190611546565b6106c7565b005b61023f610712565b60405161024c9190611580565b60405180910390f35b61025d61073a565b60405161026a9190611378565b60405180910390f35b61028d60048036038101906102889190611429565b6107ca565b60405161029a9190611481565b60405180910390f35b6102bd60048036038101906102b89190611429565b61083f565b6040516102ca9190611481565b60405180910390f35b6102ed60048036038101906102e89190611599565b610a10565b6040516102fa91906114a9565b60405180910390f35b61031d60048036038101906103189190611546565b610a92565b005b60606003805461032e90611604565b80601f016020809104026020016040519081016040528092919081815260200182805461035a90611604565b80156103a55780601f1061037c576101008083540402835291602001916103a5565b820191905f5260205f20905b81548152906001019060200180831161038857829003601f168201915b5050505050905090565b5f806103b9610b16565b90506103c6818585610b1d565b600191505092915050565b5f600254905090565b5f8073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610449576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610440906116a4565b60405180910390fd5b5f821161048b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161048290611732565b60405180910390fd5b5f805f610496610b16565b90506104a0610712565b73ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff1614158015610528575060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff1614155b80156105675750610537610712565b73ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614155b80156105c0575060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614155b156105f35760646005866105d4919061177d565b6105de91906117eb565b925082856105ec919061181b565b91506105fa565b5f92508491505b5f83111561060d5761060c8784610ce0565b5b610618878287610ea3565b610623878784610f2e565b600193505050509392505050565b5f6012905090565b5f80610643610b16565b90506106648185856106558589610a10565b61065f919061184e565b610b1d565b600191505092915050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6106bc61119a565b6106c55f611221565b565b6106cf61119a565b8060065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461074990611604565b80601f016020809104026020016040519081016040528092919081815260200182805461077590611604565b80156107c05780601f10610797576101008083540402835291602001916107c0565b820191905f5260205f20905b8154815290600101906020018083116107a357829003601f168201915b5050505050905090565b5f806107d4610b16565b90505f6107e18286610a10565b905083811015610826576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081d906118f1565b60405180910390fd5b6108338286868403610b1d565b60019250505092915050565b5f808211610882576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087990611732565b60405180910390fd5b5f8061088c610712565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614158015610914575060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614155b80156109535750610923610712565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b80156109ac575060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b156109df5760646005856109c0919061177d565b6109ca91906117eb565b915081846109d8919061181b565b90506109e6565b5f91508390505b5f8211156109f9576109f83383610ce0565b5b610a04338683610f2e565b60019250505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610a9a61119a565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b0a575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610b019190611580565b60405180910390fd5b610b1381611221565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b829061197f565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bf9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf090611a0d565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610cd391906114a9565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4590611a9b565b60405180910390fd5b610d59825f836112e4565b5f805f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610ddc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd390611b29565b60405180910390fd5b8181035f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160025f82825403925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e8b91906114a9565b60405180910390a3610e9e835f846112e9565b505050565b5f610eae8484610a10565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610f285781811015610f1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1190611b91565b60405180910390fd5b610f278484848403610b1d565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9390611c1f565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361100a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100190611cad565b60405180910390fd5b6110158383836112e4565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611098576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108f90611d3b565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161118191906114a9565b60405180910390a36111948484846112e9565b50505050565b6111a2610b16565b73ffffffffffffffffffffffffffffffffffffffff166111c0610712565b73ffffffffffffffffffffffffffffffffffffffff161461121f576111e3610b16565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016112169190611580565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561132557808201518184015260208101905061130a565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61134a826112ee565b61135481856112f8565b9350611364818560208601611308565b61136d81611330565b840191505092915050565b5f6020820190508181035f8301526113908184611340565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6113c58261139c565b9050919050565b6113d5816113bb565b81146113df575f80fd5b50565b5f813590506113f0816113cc565b92915050565b5f819050919050565b611408816113f6565b8114611412575f80fd5b50565b5f81359050611423816113ff565b92915050565b5f806040838503121561143f5761143e611398565b5b5f61144c858286016113e2565b925050602061145d85828601611415565b9150509250929050565b5f8115159050919050565b61147b81611467565b82525050565b5f6020820190506114945f830184611472565b92915050565b6114a3816113f6565b82525050565b5f6020820190506114bc5f83018461149a565b92915050565b5f805f606084860312156114d9576114d8611398565b5b5f6114e6868287016113e2565b93505060206114f7868287016113e2565b925050604061150886828701611415565b9150509250925092565b5f60ff82169050919050565b61152781611512565b82525050565b5f6020820190506115405f83018461151e565b92915050565b5f6020828403121561155b5761155a611398565b5b5f611568848285016113e2565b91505092915050565b61157a816113bb565b82525050565b5f6020820190506115935f830184611571565b92915050565b5f80604083850312156115af576115ae611398565b5b5f6115bc858286016113e2565b92505060206115cd858286016113e2565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061161b57607f821691505b60208210810361162e5761162d6115d7565b5b50919050565b7f45524332303a205472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f61168e6025836112f8565b915061169982611634565b604082019050919050565b5f6020820190508181035f8301526116bb81611682565b9050919050565b7f45524332303a205472616e736665722076616c7565206d7573742062652067725f8201527f6561746572207468616e207a65726f0000000000000000000000000000000000602082015250565b5f61171c602f836112f8565b9150611727826116c2565b604082019050919050565b5f6020820190508181035f83015261174981611710565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f611787826113f6565b9150611792836113f6565b92508282026117a0816113f6565b915082820484148315176117b7576117b6611750565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6117f5826113f6565b9150611800836113f6565b9250826118105761180f6117be565b5b828204905092915050565b5f611825826113f6565b9150611830836113f6565b925082820390508181111561184857611847611750565b5b92915050565b5f611858826113f6565b9150611863836113f6565b925082820190508082111561187b5761187a611750565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6118db6025836112f8565b91506118e682611881565b604082019050919050565b5f6020820190508181035f830152611908816118cf565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f6119696024836112f8565b91506119748261190f565b604082019050919050565b5f6020820190508181035f8301526119968161195d565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6119f76022836112f8565b9150611a028261199d565b604082019050919050565b5f6020820190508181035f830152611a24816119eb565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f611a856021836112f8565b9150611a9082611a2b565b604082019050919050565b5f6020820190508181035f830152611ab281611a79565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f611b136022836112f8565b9150611b1e82611ab9565b604082019050919050565b5f6020820190508181035f830152611b4081611b07565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f611b7b601d836112f8565b9150611b8682611b47565b602082019050919050565b5f6020820190508181035f830152611ba881611b6f565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f611c096025836112f8565b9150611c1482611baf565b604082019050919050565b5f6020820190508181035f830152611c3681611bfd565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f611c976023836112f8565b9150611ca282611c3d565b604082019050919050565b5f6020820190508181035f830152611cc481611c8b565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f611d256026836112f8565b9150611d3082611ccb565b604082019050919050565b5f6020820190508181035f830152611d5281611d19565b905091905056fea26469706673582212207ea2121fa22145184d95bafd33f06a0ae93f6fb8c7caf9d74c27ff36b5580f6b64736f6c63430008150033

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

000000000000000000000000000000000000000000000000000000e8d4a51000

-----Decoded View---------------
Arg [0] : initialSupply (uint256): 1000000000000

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000000000000000e8d4a51000


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

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