ETH Price: $2,965.77 (+2.24%)
Gas: 1 Gwei

Token

RastaPepe (RPEPE)
 

Overview

Max Total Supply

420,000,000,000 RPEPE

Holders

46

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
2,100,000,000 RPEPE

Value
$0.00
0x0cf2ced122da6d9af8cf78900f57dafb638491d1
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:
RastaPepe

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Apache-2.0 license
/**
 *Submitted for verification at Etherscan.io on 2023-04-20
*/

// SPDX-License-Identifier: Apache-2.0
// 
// Yo, welcome to the RastaPepe contract, where buying this token makes you a
// fucking legend. Stoned AF, no tax, only on Uniswap baby!
//
// TG: T.me/Rasta_Pepe
//

pragma solidity ^0.8.19;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP. Does not include
 * the optional functions; to access them see `ERC20Detailed`.
 */
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.
     *
     * > 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);
}

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @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) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @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) {
        require(b <= a, "SafeMath: subtraction overflow");
        uint256 c = a - b;

        return c;
    }

    /**
     * @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) {
        // 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-solidity/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts 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) internal pure returns (uint256) {
        // Solidity only automatically asserts when dividing by 0
        require(b > 0, "SafeMath: division by zero");
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts 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) {
        require(b != 0, "SafeMath: modulo by zero");
        return a % b;
    }
}

/**
 * @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 `ERC20Mintable`.
 *
 * *For a detailed writeup see our guide [How to implement supply
 * mechanisms](https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226).*
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of 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 IERC20 {
    using SafeMath for uint256;

    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

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

    /**
     * @dev See `IERC20.balanceOf`.
     */
    function balanceOf(address account) public view 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 returns (bool) {
        _transfer(msg.sender, recipient, amount);
        return true;
    }

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

    /**
     * @dev See `IERC20.approve`.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 value) public returns (bool) {
        _approve(msg.sender, spender, value);
        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 `value`.
     * - the caller must have allowance for `sender`'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, msg.sender, _allowances[sender][msg.sender].sub(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 returns (bool) {
        _approve(msg.sender, spender, _allowances[msg.sender][spender].add(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 returns (bool) {
        _approve(msg.sender, spender, _allowances[msg.sender][spender].sub(subtractedValue));
        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is 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 {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _balances[sender] = _balances[sender].sub(amount);
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(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
     *
     * - `to` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal {
        require(account != address(0), "ERC20: mint to the zero address");

        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(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 value) internal {
        require(account != address(0), "ERC20: burn from the zero address");

        _totalSupply = _totalSupply.sub(value);
        _balances[account] = _balances[account].sub(value);
        emit Transfer(account, address(0), value);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens.
     *
     * This is 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 value) internal {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

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

    /**
     * @dev Destoys `amount` tokens from `account`.`amount` is then deducted
     * from the caller's allowance.
     *
     * See `_burn` and `_approve`.
     */
    function _burnFrom(address account, uint256 amount) internal {
        _burn(account, amount);
        _approve(account, msg.sender, _allowances[account][msg.sender].sub(amount));
    }
}

contract RastaPepe is ERC20 {

    string private _name;
    string private _symbol;
    uint8 private _decimals;

    constructor() {
        _name = "RastaPepe";
        _symbol = "RPEPE";
        _decimals = 18;

        // set deployer address as owner of all tokens
        _mint(msg.sender, 420000000000 * 10 ** _decimals);
    }

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

    /**
     * @return the symbol of the token.
     */
    function symbol() public view returns (string memory) {
      return _symbol;
    }

    /**
     * @return the number of decimals of the token.
     */
    function decimals() public view returns (uint8) {
      return _decimals;
    }
}

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":"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":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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"}]

60806040523480156200001157600080fd5b5060408051808201909152600981526852617374615065706560b81b6020820152600390620000419082620002a8565b50604080518082019091526005815264525045504560d81b60208201526004906200006d9082620002a8565b506005805460ff19166012908117909155620000a99033906200009290600a62000487565b620000a3906461c9f368006200049f565b620000af565b620004cf565b6001600160a01b0382166200010b5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b6002546200011a908262000197565b6002556001600160a01b03821660009081526020819052604090205462000142908262000197565b6001600160a01b038316600081815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b600080620001a68385620004b9565b905083811015620001fa5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015260640162000102565b90505b92915050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200022e57607f821691505b6020821081036200024f57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620002a357600081815260208120601f850160051c810160208610156200027e5750805b601f850160051c820191505b818110156200029f578281556001016200028a565b5050505b505050565b81516001600160401b03811115620002c457620002c462000203565b620002dc81620002d5845462000219565b8462000255565b602080601f831160018114620003145760008415620002fb5750858301515b600019600386901b1c1916600185901b1785556200029f565b600085815260208120601f198616915b82811015620003455788860151825594840194600190910190840162000324565b5085821015620003645787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620003cb578160001904821115620003af57620003af62000374565b80851615620003bd57918102915b93841c93908002906200038f565b509250929050565b600082620003e457506001620001fd565b81620003f357506000620001fd565b81600181146200040c5760028114620004175762000437565b6001915050620001fd565b60ff8411156200042b576200042b62000374565b50506001821b620001fd565b5060208310610133831016604e8410600b84101617156200045c575081810a620001fd565b6200046883836200038a565b80600019048211156200047f576200047f62000374565b029392505050565b60006200049860ff841683620003d3565b9392505050565b8082028115828204841417620001fd57620001fd62000374565b80820180821115620001fd57620001fd62000374565b61087780620004df6000396000f3fe608060405234801561001057600080fd5b50600436106100a95760003560e01c80633950935111610071578063395093511461012957806370a082311461013c57806395d89b4114610165578063a457c2d71461016d578063a9059cbb14610180578063dd62ed3e1461019357600080fd5b806306fdde03146100ae578063095ea7b3146100cc57806318160ddd146100ef57806323b872dd14610101578063313ce56714610114575b600080fd5b6100b66101cc565b6040516100c391906106ad565b60405180910390f35b6100df6100da366004610717565b61025e565b60405190151581526020016100c3565b6002545b6040519081526020016100c3565b6100df61010f366004610741565b610275565b60055460405160ff90911681526020016100c3565b6100df610137366004610717565b6102c6565b6100f361014a36600461077d565b6001600160a01b031660009081526020819052604090205490565b6100b66102fc565b6100df61017b366004610717565b61030b565b6100df61018e366004610717565b610341565b6100f36101a1366004610798565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6060600380546101db906107cb565b80601f0160208091040260200160405190810160405280929190818152602001828054610207906107cb565b80156102545780601f1061022957610100808354040283529160200191610254565b820191906000526020600020905b81548152906001019060200180831161023757829003601f168201915b5050505050905090565b600061026b33848461034e565b5060015b92915050565b6000610282848484610478565b6001600160a01b0384166000908152600160209081526040808320338085529252909120546102bc9186916102b790866105e1565b61034e565b5060019392505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161026b9185906102b79086610647565b6060600480546101db906107cb565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161026b9185906102b790866105e1565b600061026b338484610478565b6001600160a01b0383166103b55760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084015b60405180910390fd5b6001600160a01b0382166104165760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103ac565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166104dc5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103ac565b6001600160a01b03821661053e5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103ac565b6001600160a01b03831660009081526020819052604090205461056190826105e1565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546105909082610647565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910161046b565b6000828211156106335760405162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f77000060448201526064016103ac565b600061063f838561081b565b949350505050565b600080610654838561082e565b9050838110156106a65760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016103ac565b9392505050565b600060208083528351808285015260005b818110156106da578581018301518582016040015282016106be565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b038116811461071257600080fd5b919050565b6000806040838503121561072a57600080fd5b610733836106fb565b946020939093013593505050565b60008060006060848603121561075657600080fd5b61075f846106fb565b925061076d602085016106fb565b9150604084013590509250925092565b60006020828403121561078f57600080fd5b6106a6826106fb565b600080604083850312156107ab57600080fd5b6107b4836106fb565b91506107c2602084016106fb565b90509250929050565b600181811c908216806107df57607f821691505b6020821081036107ff57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8181038181111561026f5761026f610805565b8082018082111561026f5761026f61080556fea2646970667358221220b44dd9db0fe711882c116458f0c43517d651dac781ae8c6862e8b6ceb64c428c64736f6c63430008130033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100a95760003560e01c80633950935111610071578063395093511461012957806370a082311461013c57806395d89b4114610165578063a457c2d71461016d578063a9059cbb14610180578063dd62ed3e1461019357600080fd5b806306fdde03146100ae578063095ea7b3146100cc57806318160ddd146100ef57806323b872dd14610101578063313ce56714610114575b600080fd5b6100b66101cc565b6040516100c391906106ad565b60405180910390f35b6100df6100da366004610717565b61025e565b60405190151581526020016100c3565b6002545b6040519081526020016100c3565b6100df61010f366004610741565b610275565b60055460405160ff90911681526020016100c3565b6100df610137366004610717565b6102c6565b6100f361014a36600461077d565b6001600160a01b031660009081526020819052604090205490565b6100b66102fc565b6100df61017b366004610717565b61030b565b6100df61018e366004610717565b610341565b6100f36101a1366004610798565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6060600380546101db906107cb565b80601f0160208091040260200160405190810160405280929190818152602001828054610207906107cb565b80156102545780601f1061022957610100808354040283529160200191610254565b820191906000526020600020905b81548152906001019060200180831161023757829003601f168201915b5050505050905090565b600061026b33848461034e565b5060015b92915050565b6000610282848484610478565b6001600160a01b0384166000908152600160209081526040808320338085529252909120546102bc9186916102b790866105e1565b61034e565b5060019392505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161026b9185906102b79086610647565b6060600480546101db906107cb565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161026b9185906102b790866105e1565b600061026b338484610478565b6001600160a01b0383166103b55760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084015b60405180910390fd5b6001600160a01b0382166104165760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103ac565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166104dc5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103ac565b6001600160a01b03821661053e5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103ac565b6001600160a01b03831660009081526020819052604090205461056190826105e1565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546105909082610647565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910161046b565b6000828211156106335760405162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f77000060448201526064016103ac565b600061063f838561081b565b949350505050565b600080610654838561082e565b9050838110156106a65760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016103ac565b9392505050565b600060208083528351808285015260005b818110156106da578581018301518582016040015282016106be565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b038116811461071257600080fd5b919050565b6000806040838503121561072a57600080fd5b610733836106fb565b946020939093013593505050565b60008060006060848603121561075657600080fd5b61075f846106fb565b925061076d602085016106fb565b9150604084013590509250925092565b60006020828403121561078f57600080fd5b6106a6826106fb565b600080604083850312156107ab57600080fd5b6107b4836106fb565b91506107c2602084016106fb565b90509250929050565b600181811c908216806107df57607f821691505b6020821081036107ff57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8181038181111561026f5761026f610805565b8082018082111561026f5761026f61080556fea2646970667358221220b44dd9db0fe711882c116458f0c43517d651dac781ae8c6862e8b6ceb64c428c64736f6c63430008130033

Deployed Bytecode Sourcemap

14596:809:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15009:81;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9085:148;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;9085:148:0;1004:187:1;8108:91:0;8179:12;;8108:91;;;1342:25:1;;;1330:2;1315:18;8108:91:0;1196:177:1;9704:256:0;;;;;;:::i;:::-;;:::i;15321:81::-;15385:9;;15321:81;;15385:9;;;;1853:36:1;;1841:2;1826:18;15321:81:0;1711:184:1;10369:206:0;;;;;;:::i;:::-;;:::i;8262:110::-;;;;;;:::i;:::-;-1:-1:-1;;;;;8346:18:0;8319:7;8346:18;;;;;;;;;;;;8262:110;15157:85;;;:::i;11078:216::-;;;;;;:::i;:::-;;:::i;8585:156::-;;;;;;:::i;:::-;;:::i;8804:134::-;;;;;;:::i;:::-;-1:-1:-1;;;;;8903:18:0;;;8876:7;8903:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8804:134;15009:81;15046:13;15077:5;15070:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15009:81;:::o;9085:148::-;9150:4;9167:36;9176:10;9188:7;9197:5;9167:8;:36::i;:::-;-1:-1:-1;9221:4:0;9085:148;;;;;:::o;9704:256::-;9793:4;9810:36;9820:6;9828:9;9839:6;9810:9;:36::i;:::-;-1:-1:-1;;;;;9886:19:0;;;;;;:11;:19;;;;;;;;9874:10;9886:31;;;;;;;;;9857:73;;9866:6;;9886:43;;9922:6;9886:35;:43::i;:::-;9857:8;:73::i;:::-;-1:-1:-1;9948:4:0;9704:256;;;;;:::o;10369:206::-;10475:10;10449:4;10496:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;10496:32:0;;;;;;;;;;10449:4;;10466:79;;10487:7;;10496:48;;10533:10;10496:36;:48::i;15157:85::-;15196:13;15227:7;15220:14;;;;;:::i;11078:216::-;11189:10;11163:4;11210:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;11210:32:0;;;;;;;;;;11163:4;;11180:84;;11201:7;;11210:53;;11247:15;11210:36;:53::i;8585:156::-;8654:4;8671:40;8681:10;8693:9;8704:6;8671:9;:40::i;13881:335::-;-1:-1:-1;;;;;13974:19:0;;13966:68;;;;-1:-1:-1;;;13966:68:0;;2943:2:1;13966:68:0;;;2925:21:1;2982:2;2962:18;;;2955:30;3021:34;3001:18;;;2994:62;-1:-1:-1;;;3072:18:1;;;3065:34;3116:19;;13966:68:0;;;;;;;;;-1:-1:-1;;;;;14053:21:0;;14045:68;;;;-1:-1:-1;;;14045:68:0;;3348:2:1;14045:68:0;;;3330:21:1;3387:2;3367:18;;;3360:30;3426:34;3406:18;;;3399:62;-1:-1:-1;;;3477:18:1;;;3470:32;3519:19;;14045:68:0;3146:398:1;14045:68:0;-1:-1:-1;;;;;14126:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:35;;;14177:31;;1342:25:1;;;14177:31:0;;1315:18:1;14177:31:0;;;;;;;;13881:335;;;:::o;11784:429::-;-1:-1:-1;;;;;11882:20:0;;11874:70;;;;-1:-1:-1;;;11874:70:0;;3751:2:1;11874:70:0;;;3733:21:1;3790:2;3770:18;;;3763:30;3829:34;3809:18;;;3802:62;-1:-1:-1;;;3880:18:1;;;3873:35;3925:19;;11874:70:0;3549:401:1;11874:70:0;-1:-1:-1;;;;;11963:23:0;;11955:71;;;;-1:-1:-1;;;11955:71:0;;4157:2:1;11955:71:0;;;4139:21:1;4196:2;4176:18;;;4169:30;4235:34;4215:18;;;4208:62;-1:-1:-1;;;4286:18:1;;;4279:33;4329:19;;11955:71:0;3955:399:1;11955:71:0;-1:-1:-1;;;;;12059:17:0;;:9;:17;;;;;;;;;;;:29;;12081:6;12059:21;:29::i;:::-;-1:-1:-1;;;;;12039:17:0;;;:9;:17;;;;;;;;;;;:49;;;;12122:20;;;;;;;:32;;12147:6;12122:24;:32::i;:::-;-1:-1:-1;;;;;12099:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;12170:35;1342:25:1;;;12099:20:0;;12170:35;;;;;;1315:18:1;12170:35:0;1196:177:1;4320:184:0;4378:7;4411:1;4406;:6;;4398:49;;;;-1:-1:-1;;;4398:49:0;;4561:2:1;4398:49:0;;;4543:21:1;4600:2;4580:18;;;4573:30;4639:32;4619:18;;;4612:60;4689:18;;4398:49:0;4359:354:1;4398:49:0;4458:9;4470:5;4474:1;4470;:5;:::i;:::-;4458:17;4320:184;-1:-1:-1;;;;4320:184:0:o;3864:181::-;3922:7;;3954:5;3958:1;3954;:5;:::i;:::-;3942:17;;3983:1;3978;:6;;3970:46;;;;-1:-1:-1;;;3970:46:0;;5315:2:1;3970:46:0;;;5297:21:1;5354:2;5334:18;;;5327:30;5393:29;5373:18;;;5366:57;5440:18;;3970:46:0;5113:351:1;3970:46:0;4036:1;3864:181;-1:-1:-1;;;3864:181:0:o;14:548: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;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:173::-;635:20;;-1:-1:-1;;;;;684:31:1;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:254::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:1:o;1378:328::-;1455:6;1463;1471;1524:2;1512:9;1503:7;1499:23;1495:32;1492:52;;;1540:1;1537;1530:12;1492:52;1563:29;1582:9;1563:29;:::i;:::-;1553:39;;1611:38;1645:2;1634:9;1630:18;1611:38;:::i;:::-;1601:48;;1696:2;1685:9;1681:18;1668:32;1658:42;;1378:328;;;;;:::o;1900:186::-;1959:6;2012:2;2000:9;1991:7;1987:23;1983:32;1980:52;;;2028:1;2025;2018:12;1980:52;2051:29;2070:9;2051:29;:::i;2091:260::-;2159:6;2167;2220:2;2208:9;2199:7;2195:23;2191:32;2188:52;;;2236:1;2233;2226:12;2188:52;2259:29;2278:9;2259:29;:::i;:::-;2249:39;;2307:38;2341:2;2330:9;2326:18;2307:38;:::i;:::-;2297:48;;2091:260;;;;;:::o;2356:380::-;2435:1;2431:12;;;;2478;;;2499:61;;2553:4;2545:6;2541:17;2531:27;;2499:61;2606:2;2598:6;2595:14;2575:18;2572:38;2569:161;;2652:10;2647:3;2643:20;2640:1;2633:31;2687:4;2684:1;2677:15;2715:4;2712:1;2705:15;2569:161;;2356:380;;;:::o;4718:127::-;4779:10;4774:3;4770:20;4767:1;4760:31;4810:4;4807:1;4800:15;4834:4;4831:1;4824:15;4850:128;4917:9;;;4938:11;;;4935:37;;;4952:18;;:::i;4983:125::-;5048:9;;;5069:10;;;5066:36;;;5082:18;;:::i

Swarm Source

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