ETH Price: $2,982.03 (+2.12%)
Gas: 2 Gwei

Token

(0x2696Fc1896F2D5F3DEAA2D91338B1D2E5f4E1D44)
 

Overview

Max Total Supply

21,696,969,696 ERC-20 TOKEN*

Holders

644

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 3 Decimals)

Balance
5,487,853.85 ERC-20 TOKEN*

Value
$0.00
0x6f4EfAf5429703649BEAa30da7e934bB42993C47
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:
Puppy

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 7 : Puppy.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.4.22 <0.9.0;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";

/**
 * @title Puppy
 */
contract Puppy is ERC20, Ownable {
    string public constant NAME = "Puppy";
    string public constant SYMBOL = "PUP";

    uint public constant INITIAL_PRESALE_PRICE_WEI = 1000000000;
    uint public constant PUPPY_WEI_PER_PUPPY = 1000;
    uint public presalePriceWei;
    bool public presaleOpen;

    constructor () public ERC20(NAME, SYMBOL) {
      presaleOpen = true;
      presalePriceWei = INITIAL_PRESALE_PRICE_WEI;
    }

    function decimals() public view virtual override returns (uint8) {
        return 3;
    }

    function presalePurchase(uint num) public payable {
      require(presaleOpen, "Presale is closed");
      require(msg.value >= SafeMath.mul(num, presalePriceWei), "Insufficent amount sent");
      _mint(msg.sender, SafeMath.mul(num, PUPPY_WEI_PER_PUPPY));
    }

    function setPresalePriceWei(uint newValue) public onlyOwner {
      presalePriceWei = newValue;
    }

    function endPresale() public onlyOwner {
      presaleOpen = false;
    }

    function withdraw() public onlyOwner {
      uint balance = address(this).balance;
      payable(msg.sender).transfer(balance);
    }
}

File 2 of 7 : SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

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

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

File 5 of 7 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

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

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

File 7 of 7 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

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

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

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

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

Settings
{
  "remappings": [],
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "evmVersion": "london",
  "libraries": {},
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"INITIAL_PRESALE_PRICE_WEI","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":"PUPPY_WEI_PER_PUPPY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SYMBOL","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"endPresale","outputs":[],"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":"presaleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presalePriceWei","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"}],"name":"presalePurchase","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newValue","type":"uint256"}],"name":"setPresalePriceWei","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280600581526020017f50757070790000000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f5055500000000000000000000000000000000000000000000000000000000000815250816003908051906020019062000096929190620001cc565b508060049080519060200190620000af929190620001cc565b505050620000d2620000c6620000fe60201b60201c565b6200010660201b60201c565b6001600760006101000a81548160ff021916908315150217905550633b9aca00600681905550620002e1565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001da906200027c565b90600052602060002090601f016020900481019282620001fe57600085556200024a565b82601f106200021957805160ff19168380011785556200024a565b828001600101855582156200024a579182015b82811115620002495782518255916020019190600101906200022c565b5b5090506200025991906200025d565b5090565b5b80821115620002785760008160009055506001016200025e565b5090565b600060028204905060018216806200029557607f821691505b60208210811415620002ac57620002ab620002b2565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6120cc80620002f16000396000f3fe60806040526004361061014b5760003560e01c80638da5cb5b116100b6578063a9059cbb1161006f578063a9059cbb14610463578063b1b3b1c4146104a0578063bee6348a146104cb578063dd62ed3e146104f6578063f2fde38b14610533578063f76f8d781461055c5761014b565b80638da5cb5b1461036357806395d89b411461038e578063a074fd67146103b9578063a3f4df7e146103e4578063a43be57b1461040f578063a457c2d7146104265761014b565b8063395093511161010857806339509351146102675780633ccfd60b146102a457806370a08231146102bb578063715018a6146102f8578063730e33851461030f5780638ba25a3a1461033a5761014b565b806306fdde0314610150578063095ea7b31461017b57806318160ddd146101b857806319311ebc146101e357806323b872dd146101ff578063313ce5671461023c575b600080fd5b34801561015c57600080fd5b50610165610587565b604051610172919061197a565b60405180910390f35b34801561018757600080fd5b506101a2600480360381019061019d91906116be565b610619565b6040516101af919061195f565b60405180910390f35b3480156101c457600080fd5b506101cd610637565b6040516101da9190611b1c565b60405180910390f35b6101fd60048036038101906101f891906116fe565b610641565b005b34801561020b57600080fd5b506102266004803603810190610221919061166b565b6106f6565b604051610233919061195f565b60405180910390f35b34801561024857600080fd5b506102516107ee565b60405161025e9190611b37565b60405180910390f35b34801561027357600080fd5b5061028e600480360381019061028991906116be565b6107f7565b60405161029b919061195f565b60405180910390f35b3480156102b057600080fd5b506102b96108a3565b005b3480156102c757600080fd5b506102e260048036038101906102dd91906115fe565b61096e565b6040516102ef9190611b1c565b60405180910390f35b34801561030457600080fd5b5061030d6109b6565b005b34801561031b57600080fd5b50610324610a3e565b6040516103319190611b1c565b60405180910390f35b34801561034657600080fd5b50610361600480360381019061035c91906116fe565b610a44565b005b34801561036f57600080fd5b50610378610aca565b6040516103859190611944565b60405180910390f35b34801561039a57600080fd5b506103a3610af4565b6040516103b0919061197a565b60405180910390f35b3480156103c557600080fd5b506103ce610b86565b6040516103db9190611b1c565b60405180910390f35b3480156103f057600080fd5b506103f9610b8c565b604051610406919061197a565b60405180910390f35b34801561041b57600080fd5b50610424610bc5565b005b34801561043257600080fd5b5061044d600480360381019061044891906116be565b610c5e565b60405161045a919061195f565b60405180910390f35b34801561046f57600080fd5b5061048a600480360381019061048591906116be565b610d49565b604051610497919061195f565b60405180910390f35b3480156104ac57600080fd5b506104b5610d67565b6040516104c29190611b1c565b60405180910390f35b3480156104d757600080fd5b506104e0610d6f565b6040516104ed919061195f565b60405180910390f35b34801561050257600080fd5b5061051d6004803603810190610518919061162b565b610d82565b60405161052a9190611b1c565b60405180910390f35b34801561053f57600080fd5b5061055a600480360381019061055591906115fe565b610e09565b005b34801561056857600080fd5b50610571610f01565b60405161057e919061197a565b60405180910390f35b60606003805461059690611ca6565b80601f01602080910402602001604051908101604052809291908181526020018280546105c290611ca6565b801561060f5780601f106105e45761010080835404028352916020019161060f565b820191906000526020600020905b8154815290600101906020018083116105f257829003601f168201915b5050505050905090565b600061062d610626610f3a565b8484610f42565b6001905092915050565b6000600254905090565b600760009054906101000a900460ff16610690576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161068790611a1c565b60405180910390fd5b61069c8160065461110d565b3410156106de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106d5906119bc565b60405180910390fd5b6106f3336106ee836103e861110d565b611123565b50565b6000610703848484611283565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061074e610f3a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156107ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c590611a5c565b60405180910390fd5b6107e2856107da610f3a565b858403610f42565b60019150509392505050565b60006003905090565b6000610899610804610f3a565b848460016000610812610f3a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546108949190611b6e565b610f42565b6001905092915050565b6108ab610f3a565b73ffffffffffffffffffffffffffffffffffffffff166108c9610aca565b73ffffffffffffffffffffffffffffffffffffffff161461091f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091690611a7c565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561096a573d6000803e3d6000fd5b5050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6109be610f3a565b73ffffffffffffffffffffffffffffffffffffffff166109dc610aca565b73ffffffffffffffffffffffffffffffffffffffff1614610a32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2990611a7c565b60405180910390fd5b610a3c6000611504565b565b60065481565b610a4c610f3a565b73ffffffffffffffffffffffffffffffffffffffff16610a6a610aca565b73ffffffffffffffffffffffffffffffffffffffff1614610ac0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab790611a7c565b60405180910390fd5b8060068190555050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610b0390611ca6565b80601f0160208091040260200160405190810160405280929190818152602001828054610b2f90611ca6565b8015610b7c5780601f10610b5157610100808354040283529160200191610b7c565b820191906000526020600020905b815481529060010190602001808311610b5f57829003601f168201915b5050505050905090565b6103e881565b6040518060400160405280600581526020017f507570707900000000000000000000000000000000000000000000000000000081525081565b610bcd610f3a565b73ffffffffffffffffffffffffffffffffffffffff16610beb610aca565b73ffffffffffffffffffffffffffffffffffffffff1614610c41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3890611a7c565b60405180910390fd5b6000600760006101000a81548160ff021916908315150217905550565b60008060016000610c6d610f3a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610d2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2190611adc565b60405180910390fd5b610d3e610d35610f3a565b85858403610f42565b600191505092915050565b6000610d5d610d56610f3a565b8484611283565b6001905092915050565b633b9aca0081565b600760009054906101000a900460ff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610e11610f3a565b73ffffffffffffffffffffffffffffffffffffffff16610e2f610aca565b73ffffffffffffffffffffffffffffffffffffffff1614610e85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7c90611a7c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ef5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eec906119dc565b60405180910390fd5b610efe81611504565b50565b6040518060400160405280600381526020017f505550000000000000000000000000000000000000000000000000000000000081525081565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610fb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa990611abc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611022576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611019906119fc565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516111009190611b1c565b60405180910390a3505050565b6000818361111b9190611bc4565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611193576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118a90611afc565b60405180910390fd5b61119f600083836115ca565b80600260008282546111b19190611b6e565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112069190611b6e565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161126b9190611b1c565b60405180910390a361127f600083836115cf565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156112f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ea90611a9c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611363576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135a9061199c565b60405180910390fd5b61136e8383836115ca565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156113f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113eb90611a3c565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114879190611b6e565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516114eb9190611b1c565b60405180910390a36114fe8484846115cf565b50505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b6000813590506115e381612068565b92915050565b6000813590506115f88161207f565b92915050565b60006020828403121561161457611613611d36565b5b6000611622848285016115d4565b91505092915050565b6000806040838503121561164257611641611d36565b5b6000611650858286016115d4565b9250506020611661858286016115d4565b9150509250929050565b60008060006060848603121561168457611683611d36565b5b6000611692868287016115d4565b93505060206116a3868287016115d4565b92505060406116b4868287016115e9565b9150509250925092565b600080604083850312156116d5576116d4611d36565b5b60006116e3858286016115d4565b92505060206116f4858286016115e9565b9150509250929050565b60006020828403121561171457611713611d36565b5b6000611722848285016115e9565b91505092915050565b61173481611c1e565b82525050565b61174381611c30565b82525050565b600061175482611b52565b61175e8185611b5d565b935061176e818560208601611c73565b61177781611d3b565b840191505092915050565b600061178f602383611b5d565b915061179a82611d4c565b604082019050919050565b60006117b2601783611b5d565b91506117bd82611d9b565b602082019050919050565b60006117d5602683611b5d565b91506117e082611dc4565b604082019050919050565b60006117f8602283611b5d565b915061180382611e13565b604082019050919050565b600061181b601183611b5d565b915061182682611e62565b602082019050919050565b600061183e602683611b5d565b915061184982611e8b565b604082019050919050565b6000611861602883611b5d565b915061186c82611eda565b604082019050919050565b6000611884602083611b5d565b915061188f82611f29565b602082019050919050565b60006118a7602583611b5d565b91506118b282611f52565b604082019050919050565b60006118ca602483611b5d565b91506118d582611fa1565b604082019050919050565b60006118ed602583611b5d565b91506118f882611ff0565b604082019050919050565b6000611910601f83611b5d565b915061191b8261203f565b602082019050919050565b61192f81611c5c565b82525050565b61193e81611c66565b82525050565b6000602082019050611959600083018461172b565b92915050565b6000602082019050611974600083018461173a565b92915050565b600060208201905081810360008301526119948184611749565b905092915050565b600060208201905081810360008301526119b581611782565b9050919050565b600060208201905081810360008301526119d5816117a5565b9050919050565b600060208201905081810360008301526119f5816117c8565b9050919050565b60006020820190508181036000830152611a15816117eb565b9050919050565b60006020820190508181036000830152611a358161180e565b9050919050565b60006020820190508181036000830152611a5581611831565b9050919050565b60006020820190508181036000830152611a7581611854565b9050919050565b60006020820190508181036000830152611a9581611877565b9050919050565b60006020820190508181036000830152611ab58161189a565b9050919050565b60006020820190508181036000830152611ad5816118bd565b9050919050565b60006020820190508181036000830152611af5816118e0565b9050919050565b60006020820190508181036000830152611b1581611903565b9050919050565b6000602082019050611b316000830184611926565b92915050565b6000602082019050611b4c6000830184611935565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611b7982611c5c565b9150611b8483611c5c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611bb957611bb8611cd8565b5b828201905092915050565b6000611bcf82611c5c565b9150611bda83611c5c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611c1357611c12611cd8565b5b828202905092915050565b6000611c2982611c3c565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611c91578082015181840152602081019050611c76565b83811115611ca0576000848401525b50505050565b60006002820490506001821680611cbe57607f821691505b60208210811415611cd257611cd1611d07565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f496e737566666963656e7420616d6f756e742073656e74000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f50726573616c6520697320636c6f736564000000000000000000000000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b61207181611c1e565b811461207c57600080fd5b50565b61208881611c5c565b811461209357600080fd5b5056fea264697066735822122002a724d72b66e48f4b3c4fcf49b2f5a358acc0138b34127abe4a7891b6e9da2d64736f6c63430008070033

Deployed Bytecode

0x60806040526004361061014b5760003560e01c80638da5cb5b116100b6578063a9059cbb1161006f578063a9059cbb14610463578063b1b3b1c4146104a0578063bee6348a146104cb578063dd62ed3e146104f6578063f2fde38b14610533578063f76f8d781461055c5761014b565b80638da5cb5b1461036357806395d89b411461038e578063a074fd67146103b9578063a3f4df7e146103e4578063a43be57b1461040f578063a457c2d7146104265761014b565b8063395093511161010857806339509351146102675780633ccfd60b146102a457806370a08231146102bb578063715018a6146102f8578063730e33851461030f5780638ba25a3a1461033a5761014b565b806306fdde0314610150578063095ea7b31461017b57806318160ddd146101b857806319311ebc146101e357806323b872dd146101ff578063313ce5671461023c575b600080fd5b34801561015c57600080fd5b50610165610587565b604051610172919061197a565b60405180910390f35b34801561018757600080fd5b506101a2600480360381019061019d91906116be565b610619565b6040516101af919061195f565b60405180910390f35b3480156101c457600080fd5b506101cd610637565b6040516101da9190611b1c565b60405180910390f35b6101fd60048036038101906101f891906116fe565b610641565b005b34801561020b57600080fd5b506102266004803603810190610221919061166b565b6106f6565b604051610233919061195f565b60405180910390f35b34801561024857600080fd5b506102516107ee565b60405161025e9190611b37565b60405180910390f35b34801561027357600080fd5b5061028e600480360381019061028991906116be565b6107f7565b60405161029b919061195f565b60405180910390f35b3480156102b057600080fd5b506102b96108a3565b005b3480156102c757600080fd5b506102e260048036038101906102dd91906115fe565b61096e565b6040516102ef9190611b1c565b60405180910390f35b34801561030457600080fd5b5061030d6109b6565b005b34801561031b57600080fd5b50610324610a3e565b6040516103319190611b1c565b60405180910390f35b34801561034657600080fd5b50610361600480360381019061035c91906116fe565b610a44565b005b34801561036f57600080fd5b50610378610aca565b6040516103859190611944565b60405180910390f35b34801561039a57600080fd5b506103a3610af4565b6040516103b0919061197a565b60405180910390f35b3480156103c557600080fd5b506103ce610b86565b6040516103db9190611b1c565b60405180910390f35b3480156103f057600080fd5b506103f9610b8c565b604051610406919061197a565b60405180910390f35b34801561041b57600080fd5b50610424610bc5565b005b34801561043257600080fd5b5061044d600480360381019061044891906116be565b610c5e565b60405161045a919061195f565b60405180910390f35b34801561046f57600080fd5b5061048a600480360381019061048591906116be565b610d49565b604051610497919061195f565b60405180910390f35b3480156104ac57600080fd5b506104b5610d67565b6040516104c29190611b1c565b60405180910390f35b3480156104d757600080fd5b506104e0610d6f565b6040516104ed919061195f565b60405180910390f35b34801561050257600080fd5b5061051d6004803603810190610518919061162b565b610d82565b60405161052a9190611b1c565b60405180910390f35b34801561053f57600080fd5b5061055a600480360381019061055591906115fe565b610e09565b005b34801561056857600080fd5b50610571610f01565b60405161057e919061197a565b60405180910390f35b60606003805461059690611ca6565b80601f01602080910402602001604051908101604052809291908181526020018280546105c290611ca6565b801561060f5780601f106105e45761010080835404028352916020019161060f565b820191906000526020600020905b8154815290600101906020018083116105f257829003601f168201915b5050505050905090565b600061062d610626610f3a565b8484610f42565b6001905092915050565b6000600254905090565b600760009054906101000a900460ff16610690576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161068790611a1c565b60405180910390fd5b61069c8160065461110d565b3410156106de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106d5906119bc565b60405180910390fd5b6106f3336106ee836103e861110d565b611123565b50565b6000610703848484611283565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061074e610f3a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156107ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c590611a5c565b60405180910390fd5b6107e2856107da610f3a565b858403610f42565b60019150509392505050565b60006003905090565b6000610899610804610f3a565b848460016000610812610f3a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546108949190611b6e565b610f42565b6001905092915050565b6108ab610f3a565b73ffffffffffffffffffffffffffffffffffffffff166108c9610aca565b73ffffffffffffffffffffffffffffffffffffffff161461091f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091690611a7c565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561096a573d6000803e3d6000fd5b5050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6109be610f3a565b73ffffffffffffffffffffffffffffffffffffffff166109dc610aca565b73ffffffffffffffffffffffffffffffffffffffff1614610a32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2990611a7c565b60405180910390fd5b610a3c6000611504565b565b60065481565b610a4c610f3a565b73ffffffffffffffffffffffffffffffffffffffff16610a6a610aca565b73ffffffffffffffffffffffffffffffffffffffff1614610ac0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab790611a7c565b60405180910390fd5b8060068190555050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610b0390611ca6565b80601f0160208091040260200160405190810160405280929190818152602001828054610b2f90611ca6565b8015610b7c5780601f10610b5157610100808354040283529160200191610b7c565b820191906000526020600020905b815481529060010190602001808311610b5f57829003601f168201915b5050505050905090565b6103e881565b6040518060400160405280600581526020017f507570707900000000000000000000000000000000000000000000000000000081525081565b610bcd610f3a565b73ffffffffffffffffffffffffffffffffffffffff16610beb610aca565b73ffffffffffffffffffffffffffffffffffffffff1614610c41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3890611a7c565b60405180910390fd5b6000600760006101000a81548160ff021916908315150217905550565b60008060016000610c6d610f3a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610d2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2190611adc565b60405180910390fd5b610d3e610d35610f3a565b85858403610f42565b600191505092915050565b6000610d5d610d56610f3a565b8484611283565b6001905092915050565b633b9aca0081565b600760009054906101000a900460ff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610e11610f3a565b73ffffffffffffffffffffffffffffffffffffffff16610e2f610aca565b73ffffffffffffffffffffffffffffffffffffffff1614610e85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7c90611a7c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ef5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eec906119dc565b60405180910390fd5b610efe81611504565b50565b6040518060400160405280600381526020017f505550000000000000000000000000000000000000000000000000000000000081525081565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610fb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa990611abc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611022576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611019906119fc565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516111009190611b1c565b60405180910390a3505050565b6000818361111b9190611bc4565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611193576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118a90611afc565b60405180910390fd5b61119f600083836115ca565b80600260008282546111b19190611b6e565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112069190611b6e565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161126b9190611b1c565b60405180910390a361127f600083836115cf565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156112f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ea90611a9c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611363576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135a9061199c565b60405180910390fd5b61136e8383836115ca565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156113f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113eb90611a3c565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114879190611b6e565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516114eb9190611b1c565b60405180910390a36114fe8484846115cf565b50505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b6000813590506115e381612068565b92915050565b6000813590506115f88161207f565b92915050565b60006020828403121561161457611613611d36565b5b6000611622848285016115d4565b91505092915050565b6000806040838503121561164257611641611d36565b5b6000611650858286016115d4565b9250506020611661858286016115d4565b9150509250929050565b60008060006060848603121561168457611683611d36565b5b6000611692868287016115d4565b93505060206116a3868287016115d4565b92505060406116b4868287016115e9565b9150509250925092565b600080604083850312156116d5576116d4611d36565b5b60006116e3858286016115d4565b92505060206116f4858286016115e9565b9150509250929050565b60006020828403121561171457611713611d36565b5b6000611722848285016115e9565b91505092915050565b61173481611c1e565b82525050565b61174381611c30565b82525050565b600061175482611b52565b61175e8185611b5d565b935061176e818560208601611c73565b61177781611d3b565b840191505092915050565b600061178f602383611b5d565b915061179a82611d4c565b604082019050919050565b60006117b2601783611b5d565b91506117bd82611d9b565b602082019050919050565b60006117d5602683611b5d565b91506117e082611dc4565b604082019050919050565b60006117f8602283611b5d565b915061180382611e13565b604082019050919050565b600061181b601183611b5d565b915061182682611e62565b602082019050919050565b600061183e602683611b5d565b915061184982611e8b565b604082019050919050565b6000611861602883611b5d565b915061186c82611eda565b604082019050919050565b6000611884602083611b5d565b915061188f82611f29565b602082019050919050565b60006118a7602583611b5d565b91506118b282611f52565b604082019050919050565b60006118ca602483611b5d565b91506118d582611fa1565b604082019050919050565b60006118ed602583611b5d565b91506118f882611ff0565b604082019050919050565b6000611910601f83611b5d565b915061191b8261203f565b602082019050919050565b61192f81611c5c565b82525050565b61193e81611c66565b82525050565b6000602082019050611959600083018461172b565b92915050565b6000602082019050611974600083018461173a565b92915050565b600060208201905081810360008301526119948184611749565b905092915050565b600060208201905081810360008301526119b581611782565b9050919050565b600060208201905081810360008301526119d5816117a5565b9050919050565b600060208201905081810360008301526119f5816117c8565b9050919050565b60006020820190508181036000830152611a15816117eb565b9050919050565b60006020820190508181036000830152611a358161180e565b9050919050565b60006020820190508181036000830152611a5581611831565b9050919050565b60006020820190508181036000830152611a7581611854565b9050919050565b60006020820190508181036000830152611a9581611877565b9050919050565b60006020820190508181036000830152611ab58161189a565b9050919050565b60006020820190508181036000830152611ad5816118bd565b9050919050565b60006020820190508181036000830152611af5816118e0565b9050919050565b60006020820190508181036000830152611b1581611903565b9050919050565b6000602082019050611b316000830184611926565b92915050565b6000602082019050611b4c6000830184611935565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611b7982611c5c565b9150611b8483611c5c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611bb957611bb8611cd8565b5b828201905092915050565b6000611bcf82611c5c565b9150611bda83611c5c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611c1357611c12611cd8565b5b828202905092915050565b6000611c2982611c3c565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611c91578082015181840152602081019050611c76565b83811115611ca0576000848401525b50505050565b60006002820490506001821680611cbe57607f821691505b60208210811415611cd257611cd1611d07565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f496e737566666963656e7420616d6f756e742073656e74000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f50726573616c6520697320636c6f736564000000000000000000000000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b61207181611c1e565b811461207c57600080fd5b50565b61208881611c5c565b811461209357600080fd5b5056fea264697066735822122002a724d72b66e48f4b3c4fcf49b2f5a358acc0138b34127abe4a7891b6e9da2d64736f6c63430008070033

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.