ETH Price: $2,680.94 (+2.39%)

Token

PEPEREUM (PEPEREUM)
 

Overview

Max Total Supply

800,001 PEPEREUM

Holders

20

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

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:
Pepereum

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2022-08-27
*/

/**

Pepereum is something that I’ve wanted to do since a long time but never got spare time to do so. 

Took few months of thinking and a dump in crypto space, I am finally gonna do it. 

Pepe is basically the cutest meme out there and personal favourite of mine that’s the reason why it’s named pepereum. 

The only coin that has ever made me big gains is ShibaInu so I have decided to use the contract of ShibaInu . 

It’s 0 tax by default along with no owner by default.

Liquidity will be added through Uniswap v2 router and I’ll send the Liquidity to the dead address.

I am a guy from Texas who moved to LA at the age of 17 to become an actor , its been 6 years or so . 

My dad is a well known producer and that’s the only reason I can survive in LA. 

It’s 4:50 Pm currently when I am writing this and I expect to launch this somewhere before 6 Pm.

This is all about Pepereum

In Pepes , we trust

https://t.me/Pepereum

// 0x838bdd6D8DF373119aa0D0235256774eB1413ed2 - Contract address

//0xD3468396A2a86a810582B5C890F012268b0E3079 - Dev Wallet

**/
// SPDX-License-Identifier: MIT

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;


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

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

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

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



pragma solidity ^0.8.0;


abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

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



pragma solidity ^0.8.0;



contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;
    uint256 private _decimals;
    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The defaut 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_,uint256 initialBalance_,uint256 decimals_,address tokenOwner) {
        _name = name_;
        _symbol = symbol_;
        _totalSupply = initialBalance_* 10**decimals_;
        _balances[tokenOwner] = _totalSupply;
        _decimals = decimals_;
        emit Transfer(address(0), tokenOwner, _totalSupply);
    }

    /**
     * @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 (uint256) {
        return _decimals;
    }

    /**
     * @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");
        _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");
        _approve(_msgSender(), spender, currentAllowance - subtractedValue);

        return true;
    }


    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");


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

        emit Transfer(sender, recipient, amount);
    }



    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);
    }

}





pragma solidity ^0.8.0;




contract Pepereum is ERC20 {
    constructor(
        string memory name_,
        string memory symbol_,
        uint256 decimals_,
        uint256 initialBalance_,
        address tokenOwner_,
        address payable feeReceiver_
    ) payable ERC20(name_, symbol_,initialBalance_,decimals_,tokenOwner_) {
        payable(feeReceiver_).transfer(msg.value);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint256","name":"decimals_","type":"uint256"},{"internalType":"uint256","name":"initialBalance_","type":"uint256"},{"internalType":"address","name":"tokenOwner_","type":"address"},{"internalType":"address payable","name":"feeReceiver_","type":"address"}],"stateMutability":"payable","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":"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":"uint256","name":"","type":"uint256"}],"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":"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"}]

608060405260405162000dc938038062000dc98339810160408190526200002691620002a1565b858584868584600490805190602001906200004392919062000115565b5083516200005990600590602087019062000115565b506200006782600a6200045e565b62000073908462000473565b60028190556001600160a01b038216600081815260208181526040808320859055600387905551938452919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a350506040516001600160a01b03851693503480156108fc02935091506000818181858888f1935050505015801562000108573d6000803e3d6000fd5b50505050505050620004d1565b828054620001239062000495565b90600052602060002090601f01602090048101928262000147576000855562000192565b82601f106200016257805160ff191683800117855562000192565b8280016001018555821562000192579182015b828111156200019257825182559160200191906001019062000175565b50620001a0929150620001a4565b5090565b5b80821115620001a05760008155600101620001a5565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620001e357600080fd5b81516001600160401b0380821115620002005762000200620001bb565b604051601f8301601f19908116603f011681019082821181831017156200022b576200022b620001bb565b816040528381526020925086838588010111156200024857600080fd5b600091505b838210156200026c57858201830151818301840152908201906200024d565b838211156200027e5760008385830101525b9695505050505050565b6001600160a01b03811681146200029e57600080fd5b50565b60008060008060008060c08789031215620002bb57600080fd5b86516001600160401b0380821115620002d357600080fd5b620002e18a838b01620001d1565b97506020890151915080821115620002f857600080fd5b506200030789828a01620001d1565b95505060408701519350606087015192506080870151620003288162000288565b60a08801519092506200033b8162000288565b809150509295509295509295565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620003a057816000190482111562000384576200038462000349565b808516156200039257918102915b93841c939080029062000364565b509250929050565b600082620003b95750600162000458565b81620003c85750600062000458565b8160018114620003e15760028114620003ec576200040c565b600191505062000458565b60ff84111562000400576200040062000349565b50506001821b62000458565b5060208310610133831016604e8410600b841016171562000431575081810a62000458565b6200043d83836200035f565b806000190482111562000454576200045462000349565b0290505b92915050565b60006200046c8383620003a8565b9392505050565b600081600019048311821515161562000490576200049062000349565b500290565b600181811c90821680620004aa57607f821691505b602082108103620004cb57634e487b7160e01b600052602260045260246000fd5b50919050565b6108e880620004e16000396000f3fe608060405234801561001057600080fd5b50600436106100a95760003560e01c80633950935111610071578063395093511461011c57806370a082311461012f57806395d89b4114610158578063a457c2d714610160578063a9059cbb14610173578063dd62ed3e1461018657600080fd5b806306fdde03146100ae578063095ea7b3146100cc57806318160ddd146100ef57806323b872dd14610101578063313ce56714610114575b600080fd5b6100b66101bf565b6040516100c39190610707565b60405180910390f35b6100df6100da366004610778565b610251565b60405190151581526020016100c3565b6002545b6040519081526020016100c3565b6100df61010f3660046107a2565b610267565b6003546100f3565b6100df61012a366004610778565b61031d565b6100f361013d3660046107de565b6001600160a01b031660009081526020819052604090205490565b6100b6610354565b6100df61016e366004610778565b610363565b6100df610181366004610778565b6103fe565b6100f3610194366004610800565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6060600480546101ce90610833565b80601f01602080910402602001604051908101604052809291908181526020018280546101fa90610833565b80156102475780601f1061021c57610100808354040283529160200191610247565b820191906000526020600020905b81548152906001019060200180831161022a57829003601f168201915b5050505050905090565b600061025e33848461040b565b50600192915050565b600061027484848461052f565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156102fe5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b610312853361030d8685610883565b61040b565b506001949350505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161025e91859061030d90869061089a565b6060600580546101ce90610833565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156103e55760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016102f5565b6103f4338561030d8685610883565b5060019392505050565b600061025e33848461052f565b6001600160a01b03831661046d5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016102f5565b6001600160a01b0382166104ce5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016102f5565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166105935760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016102f5565b6001600160a01b0382166105f55760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016102f5565b6001600160a01b0383166000908152602081905260409020548181101561066d5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016102f5565b6106778282610883565b6001600160a01b0380861660009081526020819052604080822093909355908516815290812080548492906106ad90849061089a565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516106f991815260200190565b60405180910390a350505050565b600060208083528351808285015260005b8181101561073457858101830151858201604001528201610718565b81811115610746576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b038116811461077357600080fd5b919050565b6000806040838503121561078b57600080fd5b6107948361075c565b946020939093013593505050565b6000806000606084860312156107b757600080fd5b6107c08461075c565b92506107ce6020850161075c565b9150604084013590509250925092565b6000602082840312156107f057600080fd5b6107f98261075c565b9392505050565b6000806040838503121561081357600080fd5b61081c8361075c565b915061082a6020840161075c565b90509250929050565b600181811c9082168061084757607f821691505b60208210810361086757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000828210156108955761089561086d565b500390565b600082198211156108ad576108ad61086d565b50019056fea26469706673582212204f1e043cb68c19d8bb0ff1c98ac141f1d532cecdcba62673211c556cc16a502364736f6c634300080d003300000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000900000000000000000000000000000000000000000000000000000000000c3501000000000000000000000000d3468396a2a86a810582b5c890f012268b0e3079000000000000000000000000d3468396a2a86a810582b5c890f012268b0e30790000000000000000000000000000000000000000000000000000000000000008504550455245554d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008504550455245554d000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100a95760003560e01c80633950935111610071578063395093511461011c57806370a082311461012f57806395d89b4114610158578063a457c2d714610160578063a9059cbb14610173578063dd62ed3e1461018657600080fd5b806306fdde03146100ae578063095ea7b3146100cc57806318160ddd146100ef57806323b872dd14610101578063313ce56714610114575b600080fd5b6100b66101bf565b6040516100c39190610707565b60405180910390f35b6100df6100da366004610778565b610251565b60405190151581526020016100c3565b6002545b6040519081526020016100c3565b6100df61010f3660046107a2565b610267565b6003546100f3565b6100df61012a366004610778565b61031d565b6100f361013d3660046107de565b6001600160a01b031660009081526020819052604090205490565b6100b6610354565b6100df61016e366004610778565b610363565b6100df610181366004610778565b6103fe565b6100f3610194366004610800565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6060600480546101ce90610833565b80601f01602080910402602001604051908101604052809291908181526020018280546101fa90610833565b80156102475780601f1061021c57610100808354040283529160200191610247565b820191906000526020600020905b81548152906001019060200180831161022a57829003601f168201915b5050505050905090565b600061025e33848461040b565b50600192915050565b600061027484848461052f565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156102fe5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b610312853361030d8685610883565b61040b565b506001949350505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161025e91859061030d90869061089a565b6060600580546101ce90610833565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156103e55760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016102f5565b6103f4338561030d8685610883565b5060019392505050565b600061025e33848461052f565b6001600160a01b03831661046d5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016102f5565b6001600160a01b0382166104ce5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016102f5565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166105935760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016102f5565b6001600160a01b0382166105f55760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016102f5565b6001600160a01b0383166000908152602081905260409020548181101561066d5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016102f5565b6106778282610883565b6001600160a01b0380861660009081526020819052604080822093909355908516815290812080548492906106ad90849061089a565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516106f991815260200190565b60405180910390a350505050565b600060208083528351808285015260005b8181101561073457858101830151858201604001528201610718565b81811115610746576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b038116811461077357600080fd5b919050565b6000806040838503121561078b57600080fd5b6107948361075c565b946020939093013593505050565b6000806000606084860312156107b757600080fd5b6107c08461075c565b92506107ce6020850161075c565b9150604084013590509250925092565b6000602082840312156107f057600080fd5b6107f98261075c565b9392505050565b6000806040838503121561081357600080fd5b61081c8361075c565b915061082a6020840161075c565b90509250929050565b600181811c9082168061084757607f821691505b60208210810361086757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000828210156108955761089561086d565b500390565b600082198211156108ad576108ad61086d565b50019056fea26469706673582212204f1e043cb68c19d8bb0ff1c98ac141f1d532cecdcba62673211c556cc16a502364736f6c634300080d0033

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

00000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000900000000000000000000000000000000000000000000000000000000000c3501000000000000000000000000d3468396a2a86a810582b5c890f012268b0e3079000000000000000000000000d3468396a2a86a810582b5c890f012268b0e30790000000000000000000000000000000000000000000000000000000000000008504550455245554d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008504550455245554d000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): PEPEREUM
Arg [1] : symbol_ (string): PEPEREUM
Arg [2] : decimals_ (uint256): 9
Arg [3] : initialBalance_ (uint256): 800001
Arg [4] : tokenOwner_ (address): 0xD3468396A2a86a810582B5C890F012268b0E3079
Arg [5] : feeReceiver_ (address): 0xD3468396A2a86a810582B5C890F012268b0E3079

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [3] : 00000000000000000000000000000000000000000000000000000000000c3501
Arg [4] : 000000000000000000000000d3468396a2a86a810582b5c890f012268b0e3079
Arg [5] : 000000000000000000000000d3468396a2a86a810582b5c890f012268b0e3079
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [7] : 504550455245554d000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [9] : 504550455245554d000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

11945:377:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6228:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8404:169;;;;;;:::i;:::-;;:::i;:::-;;;1218:14:1;;1211:22;1193:41;;1181:2;1166:18;8404:169:0;1053:187:1;7357:108:0;7445:12;;7357:108;;;1391:25:1;;;1379:2;1364:18;7357:108:0;1245:177:1;9055:422:0;;;;;;:::i;:::-;;:::i;7190:102::-;7275:9;;7190:102;;9886:215;;;;;;:::i;:::-;;:::i;7528:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;7629:18:0;7602:7;7629:18;;;;;;;;;;;;7528:127;6447:104;;;:::i;10604:377::-;;;;;;:::i;:::-;;:::i;7868:175::-;;;;;;:::i;:::-;;:::i;8106:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;8222:18:0;;;8195:7;8222:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8106:151;6228:100;6282:13;6315:5;6308:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6228:100;:::o;8404:169::-;8487:4;8504:39;4796:10;8527:7;8536:6;8504:8;:39::i;:::-;-1:-1:-1;8561:4:0;8404:169;;;;:::o;9055:422::-;9161:4;9178:36;9188:6;9196:9;9207:6;9178:9;:36::i;:::-;-1:-1:-1;;;;;9254:19:0;;9227:24;9254:19;;;:11;:19;;;;;;;;4796:10;9254:33;;;;;;;;9306:26;;;;9298:79;;;;-1:-1:-1;;;9298:79:0;;2803:2:1;9298:79:0;;;2785:21:1;2842:2;2822:18;;;2815:30;2881:34;2861:18;;;2854:62;-1:-1:-1;;;2932:18:1;;;2925:38;2980:19;;9298:79:0;;;;;;;;;9388:57;9397:6;4796:10;9419:25;9438:6;9419:16;:25;:::i;:::-;9388:8;:57::i;:::-;-1:-1:-1;9465:4:0;;9055:422;-1:-1:-1;;;;9055:422:0:o;9886:215::-;4796:10;9974:4;10023:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;10023:34:0;;;;;;;;;;9974:4;;9991:80;;10014:7;;10023:47;;10060:10;;10023:47;:::i;6447:104::-;6503:13;6536:7;6529:14;;;;;:::i;10604:377::-;4796:10;10697:4;10741:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;10741:34:0;;;;;;;;;;10794:35;;;;10786:85;;;;-1:-1:-1;;;10786:85:0;;3607:2:1;10786:85:0;;;3589:21:1;3646:2;3626:18;;;3619:30;3685:34;3665:18;;;3658:62;-1:-1:-1;;;3736:18:1;;;3729:35;3781:19;;10786:85:0;3405:401:1;10786:85:0;10882:67;4796:10;10905:7;10914:34;10933:15;10914:16;:34;:::i;10882:67::-;-1:-1:-1;10969:4:0;;10604:377;-1:-1:-1;;;10604:377:0:o;7868:175::-;7954:4;7971:42;4796:10;7995:9;8006:6;7971:9;:42::i;11549:346::-;-1:-1:-1;;;;;11651:19:0;;11643:68;;;;-1:-1:-1;;;11643:68:0;;4013:2:1;11643:68:0;;;3995:21:1;4052:2;4032:18;;;4025:30;4091:34;4071:18;;;4064:62;-1:-1:-1;;;4142:18:1;;;4135:34;4186:19;;11643:68:0;3811:400:1;11643:68:0;-1:-1:-1;;;;;11730:21:0;;11722:68;;;;-1:-1:-1;;;11722:68:0;;4418:2:1;11722:68:0;;;4400:21:1;4457:2;4437:18;;;4430:30;4496:34;4476:18;;;4469:62;-1:-1:-1;;;4547:18:1;;;4540:32;4589:19;;11722:68:0;4216:398:1;11722:68:0;-1:-1:-1;;;;;11803:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;11855:32;;1391:25:1;;;11855:32:0;;1364:18:1;11855:32:0;;;;;;;11549:346;;;:::o;10991:546::-;-1:-1:-1;;;;;11097:20:0;;11089:70;;;;-1:-1:-1;;;11089:70:0;;4821:2:1;11089:70:0;;;4803:21:1;4860:2;4840:18;;;4833:30;4899:34;4879:18;;;4872:62;-1:-1:-1;;;4950:18:1;;;4943:35;4995:19;;11089:70:0;4619:401:1;11089:70:0;-1:-1:-1;;;;;11178:23:0;;11170:71;;;;-1:-1:-1;;;11170:71:0;;5227:2:1;11170:71:0;;;5209:21:1;5266:2;5246:18;;;5239:30;5305:34;5285:18;;;5278:62;-1:-1:-1;;;5356:18:1;;;5349:33;5399:19;;11170:71:0;5025:399:1;11170:71:0;-1:-1:-1;;;;;11280:17:0;;11256:21;11280:17;;;;;;;;;;;11316:23;;;;11308:74;;;;-1:-1:-1;;;11308:74:0;;5631:2:1;11308:74:0;;;5613:21:1;5670:2;5650:18;;;5643:30;5709:34;5689:18;;;5682:62;-1:-1:-1;;;5760:18:1;;;5753:36;5806:19;;11308:74:0;5429:402:1;11308:74:0;11413:22;11429:6;11413:13;:22;:::i;:::-;-1:-1:-1;;;;;11393:17:0;;;:9;:17;;;;;;;;;;;:42;;;;11446:20;;;;;;;;:30;;11470:6;;11393:9;11446:30;;11470:6;;11446:30;:::i;:::-;;;;;;;;11511:9;-1:-1:-1;;;;;11494:35:0;11503:6;-1:-1:-1;;;;;11494:35:0;;11522:6;11494:35;;;;1391:25:1;;1379:2;1364:18;;1245:177;11494:35:0;;;;;;;;11078:459;10991:546;;;:::o;14:597:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:173::-;684:20;;-1:-1:-1;;;;;733:31:1;;723:42;;713:70;;779:1;776;769:12;713:70;616:173;;;:::o;794:254::-;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;962:29;981:9;962:29;:::i;:::-;952:39;1038:2;1023:18;;;;1010:32;;-1:-1:-1;;;794:254:1:o;1427:328::-;1504:6;1512;1520;1573:2;1561:9;1552:7;1548:23;1544:32;1541:52;;;1589:1;1586;1579:12;1541:52;1612:29;1631:9;1612:29;:::i;:::-;1602:39;;1660:38;1694:2;1683:9;1679:18;1660:38;:::i;:::-;1650:48;;1745:2;1734:9;1730:18;1717:32;1707:42;;1427:328;;;;;:::o;1760:186::-;1819:6;1872:2;1860:9;1851:7;1847:23;1843:32;1840:52;;;1888:1;1885;1878:12;1840:52;1911:29;1930:9;1911:29;:::i;:::-;1901:39;1760:186;-1:-1:-1;;;1760:186:1:o;1951:260::-;2019:6;2027;2080:2;2068:9;2059:7;2055:23;2051:32;2048:52;;;2096:1;2093;2086:12;2048:52;2119:29;2138:9;2119:29;:::i;:::-;2109:39;;2167:38;2201:2;2190:9;2186:18;2167:38;:::i;:::-;2157:48;;1951:260;;;;;:::o;2216:380::-;2295:1;2291:12;;;;2338;;;2359:61;;2413:4;2405:6;2401:17;2391:27;;2359:61;2466:2;2458:6;2455:14;2435:18;2432:38;2429:161;;2512:10;2507:3;2503:20;2500:1;2493:31;2547:4;2544:1;2537:15;2575:4;2572:1;2565:15;2429:161;;2216:380;;;:::o;3010:127::-;3071:10;3066:3;3062:20;3059:1;3052:31;3102:4;3099:1;3092:15;3126:4;3123:1;3116:15;3142:125;3182:4;3210:1;3207;3204:8;3201:34;;;3215:18;;:::i;:::-;-1:-1:-1;3252:9:1;;3142:125::o;3272:128::-;3312:3;3343:1;3339:6;3336:1;3333:13;3330:39;;;3349:18;;:::i;:::-;-1:-1:-1;3385:9:1;;3272:128::o

Swarm Source

ipfs://4f1e043cb68c19d8bb0ff1c98ac141f1d532cecdcba62673211c556cc16a5023
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.