ETH Price: $2,871.28 (-10.88%)
Gas: 12 Gwei

Token

Ben.ETHvsPauly0x (BVSP)
 

Overview

Max Total Supply

696,969,696,969 BVSP

Holders

21

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
ethto10kinshallah.eth
Balance
0.864583530178748621 BVSP

Value
$0.00
0xe572fe384eb21f7242e6f40fcf11b0de6ddf9bf2
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:
Token

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license
/**
 *Submitted for verification at Etherscan.io on 2023-06-18
*/

/**
 *Submitted for verification at Etherscan.io on 2023-03-09
*/

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (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 (uint8);
}

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


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// File: Token.sol



pragma solidity 0.8.9;



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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    uint8 private constant _decimals = 18;
    uint256 public constant hardCap = 696_969_696_969 * (10**_decimals); 

    constructor(
        string memory name_,
        string memory symbol_,
        address _to
    ) {
        require(_to != address(0), "Zero to address");
        _name = name_;
        _symbol = symbol_;
        _mint(_to, hardCap);
    }

    function name() public view virtual override returns (string memory) {
        return _name;
    }

    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

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

    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    function balanceOf(address account)
        public
        view
        virtual
        override
        returns (uint256)
    {
        return _balances[account];
    }

    function transfer(address recipient, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    function allowance(address from, address to)
        public
        view
        virtual
        override
        returns (uint256)
    {
        return _allowances[from][to];
    }

    function approve(address to, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        _approve(_msgSender(), to, amount);
        return true;
    }

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

    function increaseAllowance(address to, uint256 addedValue)
        public
        virtual
        returns (bool)
    {
        _approve(_msgSender(), to, _allowances[_msgSender()][to] + addedValue);
        return true;
    }

    function decreaseAllowance(address to, uint256 subtractedValue)
        public
        virtual
        returns (bool)
    {
        uint256 currentAllowance = _allowances[_msgSender()][to];
        require(
            currentAllowance >= subtractedValue,
            "ERC20: decreased allowance below zero"
        );
        unchecked {
            _approve(_msgSender(), to, 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"
        );
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);
    }

    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

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

    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

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

    function burn(uint256 amount) external {
        _burn(_msgSender(), amount);
    }

    function _approve(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: approve from the zero address");
        require(to != address(0), "ERC20: approve to the zero address");

        _allowances[from][to] = amount;
        emit Approval(from, to, amount);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"address","name":"_to","type":"address"}],"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":"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":"from","type":"address"},{"internalType":"address","name":"to","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"hardCap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","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"}]

60806040523480156200001157600080fd5b506040516200114138038062001141833981016040819052620000349162000339565b6001600160a01b038116620000825760405162461bcd60e51b815260206004820152600f60248201526e5a65726f20746f206164647265737360881b60448201526064015b60405180910390fd5b825162000097906003906020860190620001c6565b508151620000ad906004906020850190620001c6565b50620000d881620000c16012600a620004db565b620000d29064a246a196c9620004f3565b620000e1565b5050506200056d565b6001600160a01b038216620001395760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000079565b80600260008282546200014d919062000515565b90915550506001600160a01b038216600090815260208190526040812080548392906200017c90849062000515565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b828054620001d49062000530565b90600052602060002090601f016020900481019282620001f8576000855562000243565b82601f106200021357805160ff191683800117855562000243565b8280016001018555821562000243579182015b828111156200024357825182559160200191906001019062000226565b506200025192915062000255565b5090565b5b8082111562000251576000815560010162000256565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200029457600080fd5b81516001600160401b0380821115620002b157620002b16200026c565b604051601f8301601f19908116603f01168101908282118183101715620002dc57620002dc6200026c565b81604052838152602092508683858801011115620002f957600080fd5b600091505b838210156200031d5785820183015181830184015290820190620002fe565b838211156200032f5760008385830101525b9695505050505050565b6000806000606084860312156200034f57600080fd5b83516001600160401b03808211156200036757600080fd5b620003758783880162000282565b945060208601519150808211156200038c57600080fd5b506200039b8682870162000282565b604086015190935090506001600160a01b0381168114620003bb57600080fd5b809150509250925092565b634e487b7160e01b600052601160045260246000fd5b600181815b808511156200041d578160001904821115620004015762000401620003c6565b808516156200040f57918102915b93841c9390800290620003e1565b509250929050565b6000826200043657506001620004d5565b816200044557506000620004d5565b81600181146200045e5760028114620004695762000489565b6001915050620004d5565b60ff8411156200047d576200047d620003c6565b50506001821b620004d5565b5060208310610133831016604e8410600b8410161715620004ae575081810a620004d5565b620004ba8383620003dc565b8060001904821115620004d157620004d1620003c6565b0290505b92915050565b6000620004ec60ff84168362000425565b9392505050565b6000816000190483118215151615620005105762000510620003c6565b500290565b600082198211156200052b576200052b620003c6565b500190565b600181811c908216806200054557607f821691505b602082108114156200056757634e487b7160e01b600052602260045260246000fd5b50919050565b610bc4806200057d6000396000f3fe608060405234801561001057600080fd5b50600436106100cf5760003560e01c806342966c681161008c578063a457c2d711610066578063a457c2d7146101a2578063a9059cbb146101b5578063dd62ed3e146101c8578063fb86a4041461020157600080fd5b806342966c681461015c57806370a082311461017157806395d89b411461019a57600080fd5b806306fdde03146100d4578063095ea7b3146100f257806318160ddd1461011557806323b872dd14610127578063313ce5671461013a5780633950935114610149575b600080fd5b6100dc610209565b6040516100e991906108b7565b60405180910390f35b610105610100366004610928565b61029b565b60405190151581526020016100e9565b6002545b6040519081526020016100e9565b610105610135366004610952565b6102b2565b604051601281526020016100e9565b610105610157366004610928565b610361565b61016f61016a36600461098e565b61039d565b005b61011961017f3660046109a7565b6001600160a01b031660009081526020819052604090205490565b6100dc6103aa565b6101056101b0366004610928565b6103b9565b6101056101c3366004610928565b610452565b6101196101d63660046109c9565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61011961045f565b606060038054610218906109fc565b80601f0160208091040260200160405190810160405280929190818152602001828054610244906109fc565b80156102915780601f1061026657610100808354040283529160200191610291565b820191906000526020600020905b81548152906001019060200180831161027457829003601f168201915b5050505050905090565b60006102a833848461047d565b5060015b92915050565b60006102bf8484846105a2565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156103495760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b610356853385840361047d565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916102a8918590610398908690610a4d565b61047d565b6103a73382610771565b50565b606060048054610218906109fc565b3360009081526001602090815260408083206001600160a01b03861684529091528120548281101561043b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610340565b610448338585840361047d565b5060019392505050565b60006102a83384846105a2565b61046b6012600a610b49565b61047a9064a246a196c9610b58565b81565b6001600160a01b0383166104df5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610340565b6001600160a01b0382166105405760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610340565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166106065760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610340565b6001600160a01b0382166106685760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610340565b6001600160a01b038316600090815260208190526040902054818110156106e05760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610340565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610717908490610a4d565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161076391815260200190565b60405180910390a350505050565b6001600160a01b0382166107d15760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610340565b6001600160a01b038216600090815260208190526040902054818110156108455760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610340565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610874908490610b77565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610595565b600060208083528351808285015260005b818110156108e4578581018301518582016040015282016108c8565b818111156108f6576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b038116811461092357600080fd5b919050565b6000806040838503121561093b57600080fd5b6109448361090c565b946020939093013593505050565b60008060006060848603121561096757600080fd5b6109708461090c565b925061097e6020850161090c565b9150604084013590509250925092565b6000602082840312156109a057600080fd5b5035919050565b6000602082840312156109b957600080fd5b6109c28261090c565b9392505050565b600080604083850312156109dc57600080fd5b6109e58361090c565b91506109f36020840161090c565b90509250929050565b600181811c90821680610a1057607f821691505b60208210811415610a3157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115610a6057610a60610a37565b500190565b600181815b80851115610aa0578160001904821115610a8657610a86610a37565b80851615610a9357918102915b93841c9390800290610a6a565b509250929050565b600082610ab7575060016102ac565b81610ac4575060006102ac565b8160018114610ada5760028114610ae457610b00565b60019150506102ac565b60ff841115610af557610af5610a37565b50506001821b6102ac565b5060208310610133831016604e8410600b8410161715610b23575081810a6102ac565b610b2d8383610a65565b8060001904821115610b4157610b41610a37565b029392505050565b60006109c260ff841683610aa8565b6000816000190483118215151615610b7257610b72610a37565b500290565b600082821015610b8957610b89610a37565b50039056fea26469706673582212204581c50b311769074129c2ce9fb09c4eaa65b505984e1b4ce2d8c81fe153b31a64736f6c63430008090033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000007d1c52a518259b333c51f93c5643f4f4672bc62000000000000000000000000000000000000000000000000000000000000001042656e2e45544876735061756c7930780000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044256535000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100cf5760003560e01c806342966c681161008c578063a457c2d711610066578063a457c2d7146101a2578063a9059cbb146101b5578063dd62ed3e146101c8578063fb86a4041461020157600080fd5b806342966c681461015c57806370a082311461017157806395d89b411461019a57600080fd5b806306fdde03146100d4578063095ea7b3146100f257806318160ddd1461011557806323b872dd14610127578063313ce5671461013a5780633950935114610149575b600080fd5b6100dc610209565b6040516100e991906108b7565b60405180910390f35b610105610100366004610928565b61029b565b60405190151581526020016100e9565b6002545b6040519081526020016100e9565b610105610135366004610952565b6102b2565b604051601281526020016100e9565b610105610157366004610928565b610361565b61016f61016a36600461098e565b61039d565b005b61011961017f3660046109a7565b6001600160a01b031660009081526020819052604090205490565b6100dc6103aa565b6101056101b0366004610928565b6103b9565b6101056101c3366004610928565b610452565b6101196101d63660046109c9565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61011961045f565b606060038054610218906109fc565b80601f0160208091040260200160405190810160405280929190818152602001828054610244906109fc565b80156102915780601f1061026657610100808354040283529160200191610291565b820191906000526020600020905b81548152906001019060200180831161027457829003601f168201915b5050505050905090565b60006102a833848461047d565b5060015b92915050565b60006102bf8484846105a2565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156103495760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b610356853385840361047d565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916102a8918590610398908690610a4d565b61047d565b6103a73382610771565b50565b606060048054610218906109fc565b3360009081526001602090815260408083206001600160a01b03861684529091528120548281101561043b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610340565b610448338585840361047d565b5060019392505050565b60006102a83384846105a2565b61046b6012600a610b49565b61047a9064a246a196c9610b58565b81565b6001600160a01b0383166104df5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610340565b6001600160a01b0382166105405760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610340565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166106065760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610340565b6001600160a01b0382166106685760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610340565b6001600160a01b038316600090815260208190526040902054818110156106e05760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610340565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610717908490610a4d565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161076391815260200190565b60405180910390a350505050565b6001600160a01b0382166107d15760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610340565b6001600160a01b038216600090815260208190526040902054818110156108455760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610340565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610874908490610b77565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610595565b600060208083528351808285015260005b818110156108e4578581018301518582016040015282016108c8565b818111156108f6576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b038116811461092357600080fd5b919050565b6000806040838503121561093b57600080fd5b6109448361090c565b946020939093013593505050565b60008060006060848603121561096757600080fd5b6109708461090c565b925061097e6020850161090c565b9150604084013590509250925092565b6000602082840312156109a057600080fd5b5035919050565b6000602082840312156109b957600080fd5b6109c28261090c565b9392505050565b600080604083850312156109dc57600080fd5b6109e58361090c565b91506109f36020840161090c565b90509250929050565b600181811c90821680610a1057607f821691505b60208210811415610a3157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115610a6057610a60610a37565b500190565b600181815b80851115610aa0578160001904821115610a8657610a86610a37565b80851615610a9357918102915b93841c9390800290610a6a565b509250929050565b600082610ab7575060016102ac565b81610ac4575060006102ac565b8160018114610ada5760028114610ae457610b00565b60019150506102ac565b60ff841115610af557610af5610a37565b50506001821b6102ac565b5060208310610133831016604e8410600b8410161715610b23575081810a6102ac565b610b2d8383610a65565b8060001904821115610b4157610b41610a37565b029392505050565b60006109c260ff841683610aa8565b6000816000190483118215151615610b7257610b72610a37565b500290565b600082821015610b8957610b89610a37565b50039056fea26469706673582212204581c50b311769074129c2ce9fb09c4eaa65b505984e1b4ce2d8c81fe153b31a64736f6c63430008090033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000007d1c52a518259b333c51f93c5643f4f4672bc62000000000000000000000000000000000000000000000000000000000000001042656e2e45544876735061756c7930780000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044256535000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): Ben.ETHvsPauly0x
Arg [1] : symbol_ (string): BVSP
Arg [2] : _to (address): 0x07d1c52A518259b333C51f93c5643f4f4672bc62

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000007d1c52a518259b333c51f93c5643f4f4672bc62
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000010
Arg [4] : 42656e2e45544876735061756c79307800000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 4256535000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

4665:5031:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5315:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6365:200;;;;;;:::i;:::-;;:::i;:::-;;;1218:14:1;;1211:22;1193:41;;1181:2;1166:18;6365:200:0;1053:187:1;5643:108:0;5731:12;;5643:108;;;1391:25:1;;;1379:2;1364:18;5643:108:0;1245:177:1;6573:529:0;;;;;;:::i;:::-;;:::i;5535:100::-;;;4972:2;1902:36:1;;1890:2;1875:18;5535:100:0;1760:184:1;7110:232:0;;;;;;:::i;:::-;;:::i;9244:85::-;;;;;;:::i;:::-;;:::i;:::-;;5759:177;;;;;;:::i;:::-;-1:-1:-1;;;;;5910:18:0;5878:7;5910:18;;;;;;;;;;;;5759:177;5423:104;;;:::i;7350:467::-;;;;;;:::i;:::-;;:::i;5944:216::-;;;;;;:::i;:::-;;:::i;6168:189::-;;;;;;:::i;:::-;-1:-1:-1;;;;;6328:17:0;;;6296:7;6328:17;;;:11;:17;;;;;;;;:21;;;;;;;;;;;;;6168:189;4981:67;;;:::i;5315:100::-;5369:13;5402:5;5395:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5315:100;:::o;6365:200::-;6479:4;6501:34;4475:10;6524:2;6528:6;6501:8;:34::i;:::-;-1:-1:-1;6553:4:0;6365:200;;;;;:::o;6573:529::-;6713:4;6730:36;6740:6;6748:9;6759:6;6730:9;:36::i;:::-;-1:-1:-1;;;;;6806:19:0;;6779:24;6806:19;;;:11;:19;;;;;;;;4475:10;6806:33;;;;;;;;6872:26;;;;6850:116;;;;-1:-1:-1;;;6850:116:0;;3177:2:1;6850:116:0;;;3159:21:1;3216:2;3196:18;;;3189:30;3255:34;3235:18;;;3228:62;-1:-1:-1;;;3306:18:1;;;3299:38;3354:19;;6850:116:0;;;;;;;;;7002:57;7011:6;4475:10;7052:6;7033:16;:25;7002:8;:57::i;:::-;-1:-1:-1;7090:4:0;;6573:529;-1:-1:-1;;;;6573:529:0:o;7110:232::-;4475:10;7220:4;7269:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;7269:29:0;;;;;;;;;;7220:4;;7242:70;;7265:2;;7269:42;;7301:10;;7269:42;:::i;:::-;7242:8;:70::i;9244:85::-;9294:27;4475:10;9314:6;9294:5;:27::i;:::-;9244:85;:::o;5423:104::-;5479:13;5512:7;5505:14;;;;;:::i;7350:467::-;4475:10;7465:4;7514:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;7514:29:0;;;;;;;;;;7576:35;;;;7554:122;;;;-1:-1:-1;;;7554:122:0;;3851:2:1;7554:122:0;;;3833:21:1;3890:2;3870:18;;;3863:30;3929:34;3909:18;;;3902:62;-1:-1:-1;;;3980:18:1;;;3973:35;4025:19;;7554:122:0;3649:401:1;7554:122:0;7712:62;4475:10;7735:2;7758:15;7739:16;:34;7712:8;:62::i;:::-;-1:-1:-1;7805:4:0;;7350:467;-1:-1:-1;;;7350:467:0:o;5944:216::-;6066:4;6088:42;4475:10;6112:9;6123:6;6088:9;:42::i;4981:67::-;5034:13;4972:2;5034;:13;:::i;:::-;5015:33;;:15;:33;:::i;:::-;4981:67;:::o;9337:356::-;-1:-1:-1;;;;;9467:18:0;;9459:67;;;;-1:-1:-1;;;9459:67:0;;5813:2:1;9459:67:0;;;5795:21:1;5852:2;5832:18;;;5825:30;5891:34;5871:18;;;5864:62;-1:-1:-1;;;5942:18:1;;;5935:34;5986:19;;9459:67:0;5611:400:1;9459:67:0;-1:-1:-1;;;;;9545:16:0;;9537:63;;;;-1:-1:-1;;;9537:63:0;;6218:2:1;9537:63:0;;;6200:21:1;6257:2;6237:18;;;6230:30;6296:34;6276:18;;;6269:62;-1:-1:-1;;;6347:18:1;;;6340:32;6389:19;;9537:63:0;6016:398:1;9537:63:0;-1:-1:-1;;;;;9613:17:0;;;;;;;:11;:17;;;;;;;;:21;;;;;;;;;;;;;:30;;;9659:26;;1391:25:1;;;9659:26:0;;1364:18:1;9659:26:0;;;;;;;;9337:356;;;:::o;7825:651::-;-1:-1:-1;;;;;7965:20:0;;7957:70;;;;-1:-1:-1;;;7957:70:0;;6621:2:1;7957:70:0;;;6603:21:1;6660:2;6640:18;;;6633:30;6699:34;6679:18;;;6672:62;-1:-1:-1;;;6750:18:1;;;6743:35;6795:19;;7957:70:0;6419:401:1;7957:70:0;-1:-1:-1;;;;;8046:23:0;;8038:71;;;;-1:-1:-1;;;8038:71:0;;7027:2:1;8038:71:0;;;7009:21:1;7066:2;7046:18;;;7039:30;7105:34;7085:18;;;7078:62;-1:-1:-1;;;7156:18:1;;;7149:33;7199:19;;8038:71:0;6825:399:1;8038:71:0;-1:-1:-1;;;;;8146:17:0;;8122:21;8146:17;;;;;;;;;;;8196:23;;;;8174:111;;;;-1:-1:-1;;;8174:111:0;;7431:2:1;8174:111:0;;;7413:21:1;7470:2;7450:18;;;7443:30;7509:34;7489:18;;;7482:62;-1:-1:-1;;;7560:18:1;;;7553:36;7606:19;;8174:111:0;7229:402:1;8174:111:0;-1:-1:-1;;;;;8321:17:0;;;:9;:17;;;;;;;;;;;8341:22;;;8321:42;;8385:20;;;;;;;;:30;;8357:6;;8321:9;8385:30;;8357:6;;8385:30;:::i;:::-;;;;;;;;8450:9;-1:-1:-1;;;;;8433:35:0;8442:6;-1:-1:-1;;;;;8433:35:0;;8461:6;8433:35;;;;1391:25:1;;1379:2;1364:18;;1245:177;8433:35:0;;;;;;;;7946:530;7825:651;;;:::o;8768:468::-;-1:-1:-1;;;;;8852:21:0;;8844:67;;;;-1:-1:-1;;;8844:67:0;;7838:2:1;8844:67:0;;;7820:21:1;7877:2;7857:18;;;7850:30;7916:34;7896:18;;;7889:62;-1:-1:-1;;;7967:18:1;;;7960:31;8008:19;;8844:67:0;7636:397:1;8844:67:0;-1:-1:-1;;;;;8949:18:0;;8924:22;8949:18;;;;;;;;;;;8986:24;;;;8978:71;;;;-1:-1:-1;;;8978:71:0;;8240:2:1;8978:71:0;;;8222:21:1;8279:2;8259:18;;;8252:30;8318:34;8298:18;;;8291:62;-1:-1:-1;;;8369:18:1;;;8362:32;8411:19;;8978:71:0;8038:398:1;8978:71:0;-1:-1:-1;;;;;9085:18:0;;:9;:18;;;;;;;;;;9106:23;;;9085:44;;9151:12;:22;;9123:6;;9085:9;9151:22;;9123:6;;9151:22;:::i;:::-;;;;-1:-1:-1;;9191:37:0;;1391:25:1;;;9217:1:0;;-1:-1:-1;;;;;9191:37:0;;;;;1379:2:1;1364:18;9191:37:0;1245:177:1;14:597;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;1949:180::-;2008:6;2061:2;2049:9;2040:7;2036:23;2032:32;2029:52;;;2077:1;2074;2067:12;2029:52;-1:-1:-1;2100:23:1;;1949:180;-1:-1:-1;1949:180:1:o;2134:186::-;2193:6;2246:2;2234:9;2225:7;2221:23;2217:32;2214:52;;;2262:1;2259;2252:12;2214:52;2285:29;2304:9;2285:29;:::i;:::-;2275:39;2134:186;-1:-1:-1;;;2134:186:1:o;2325:260::-;2393:6;2401;2454:2;2442:9;2433:7;2429:23;2425:32;2422:52;;;2470:1;2467;2460:12;2422:52;2493:29;2512:9;2493:29;:::i;:::-;2483:39;;2541:38;2575:2;2564:9;2560:18;2541:38;:::i;:::-;2531:48;;2325:260;;;;;:::o;2590:380::-;2669:1;2665:12;;;;2712;;;2733:61;;2787:4;2779:6;2775:17;2765:27;;2733:61;2840:2;2832:6;2829:14;2809:18;2806:38;2803:161;;;2886:10;2881:3;2877:20;2874:1;2867:31;2921:4;2918:1;2911:15;2949:4;2946:1;2939:15;2803:161;;2590:380;;;:::o;3384:127::-;3445:10;3440:3;3436:20;3433:1;3426:31;3476:4;3473:1;3466:15;3500:4;3497:1;3490:15;3516:128;3556:3;3587:1;3583:6;3580:1;3577:13;3574:39;;;3593:18;;:::i;:::-;-1:-1:-1;3629:9:1;;3516:128::o;4055:422::-;4144:1;4187:5;4144:1;4201:270;4222:7;4212:8;4209:21;4201:270;;;4281:4;4277:1;4273:6;4269:17;4263:4;4260:27;4257:53;;;4290:18;;:::i;:::-;4340:7;4330:8;4326:22;4323:55;;;4360:16;;;;4323:55;4439:22;;;;4399:15;;;;4201:270;;;4205:3;4055:422;;;;;:::o;4482:806::-;4531:5;4561:8;4551:80;;-1:-1:-1;4602:1:1;4616:5;;4551:80;4650:4;4640:76;;-1:-1:-1;4687:1:1;4701:5;;4640:76;4732:4;4750:1;4745:59;;;;4818:1;4813:130;;;;4725:218;;4745:59;4775:1;4766:10;;4789:5;;;4813:130;4850:3;4840:8;4837:17;4834:43;;;4857:18;;:::i;:::-;-1:-1:-1;;4913:1:1;4899:16;;4928:5;;4725:218;;5027:2;5017:8;5014:16;5008:3;5002:4;4999:13;4995:36;4989:2;4979:8;4976:16;4971:2;4965:4;4962:12;4958:35;4955:77;4952:159;;;-1:-1:-1;5064:19:1;;;5096:5;;4952:159;5143:34;5168:8;5162:4;5143:34;:::i;:::-;5213:6;5209:1;5205:6;5201:19;5192:7;5189:32;5186:58;;;5224:18;;:::i;:::-;5262:20;;4482:806;-1:-1:-1;;;4482:806:1:o;5293:140::-;5351:5;5380:47;5421:4;5411:8;5407:19;5401:4;5380:47;:::i;5438:168::-;5478:7;5544:1;5540;5536:6;5532:14;5529:1;5526:21;5521:1;5514:9;5507:17;5503:45;5500:71;;;5551:18;;:::i;:::-;-1:-1:-1;5591:9:1;;5438:168::o;8441:125::-;8481:4;8509:1;8506;8503:8;8500:34;;;8514:18;;:::i;:::-;-1:-1:-1;8551:9:1;;8441:125::o

Swarm Source

ipfs://4581c50b311769074129c2ce9fb09c4eaa65b505984e1b4ce2d8c81fe153b31a
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.