ERC-20
Overview
Max Total Supply
2,500,000,000 EMBER
Holders
29
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
28,806,446.216580247530623222 EMBERValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
EmberSword
Compiler Version
v0.8.26+commit.8a97fa7a
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-06-12 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.15; interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the token decimals. */ function decimals() external view returns (uint8); /** * @dev Returns the token symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the token name. */ function name() external view returns (string memory); /** * @dev Returns the erc token owner. */ function getOwner() external view returns (address); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address _owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval( address indexed owner, address indexed spender, uint256 value ); } /* * @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 GSN 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. */ contract Context { // Empty internal constructor, to prevent people from mistakenly deploying // an instance of this contract, which should be used via inheritance. constructor() {} function _msgSender() internal view returns (address) { return msg.sender; } function _msgData() internal view returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } /** * @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) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { require(b <= a, errorMessage); 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. 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) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { // Solidity only automatically asserts when dividing by 0 require(b > 0, errorMessage); 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) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message 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, string memory errorMessage ) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ 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() { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view 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 onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = 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 onlyOwner { _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). */ function _transferOwnership(address newOwner) internal { require( newOwner != address(0), "Ownable: new owner is the zero address" ); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } contract EmberSword is IERC20, Ownable { using SafeMath for uint256; mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; uint8 private _decimals; string private _symbol; string private _name; constructor() { _name = "EmberSword"; _symbol = "EMBER"; _decimals = 18; _totalSupply = 2500000000 * (10**18); _balances[msg.sender] = _totalSupply; emit Transfer(address(0), msg.sender, _totalSupply); } /** * @dev Returns the erc token owner. */ function getOwner() external view override returns (address) { return owner(); } /** * @dev Returns the token decimals. */ function decimals() external view override returns (uint8) { return _decimals; } /** * @dev Returns the token symbol. */ function symbol() external view override returns (string memory) { return _symbol; } /** * @dev Returns the token name. */ function name() external view override returns (string memory) { return _name; } /** * @dev See {ERC20-totalSupply}. */ function totalSupply() external view override returns (uint256) { return _totalSupply; } /** * @dev See {ERC20-balanceOf}. */ function balanceOf(address account) external view override returns (uint256) { return _balances[account]; } /** * @dev See {ERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) external override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {ERC20-allowance}. */ function allowance(address owner, address spender) external view override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {ERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) external override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {ERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}; * * Requirements: * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for `sender`'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) external override returns (bool) { _transfer(sender, recipient, amount); _approve( sender, _msgSender(), _allowances[sender][_msgSender()].sub( amount, "ERC20: transfer amount exceeds allowance" ) ); 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 {ERC20-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( _msgSender(), spender, _allowances[_msgSender()][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 {ERC20-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( _msgSender(), spender, _allowances[_msgSender()][spender].sub( subtractedValue, "ERC20: decreased allowance below zero" ) ); 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, "ERC20: transfer amount exceeds balance" ); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal { require(account != address(0), "ERC20: burn from the zero address"); _balances[account] = _balances[account].sub( amount, "ERC20: burn amount exceeds balance" ); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @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 amount ) internal { 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); } function burn(uint256 _amount) public { _burn(msg.sender, _amount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"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":[{"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":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405234801561000f575f80fd5b505f80546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35060408051808201909152600a815269115b58995c94dddbdc9960b21b602082015260069061007e90826101b2565b506040805180820190915260058082526422a6a122a960d91b6020830152906100a790826101b2565b506004805460ff191660121790556b0813f3978f894098440000006003819055335f8181526001602052604080822084905551919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9161010d9190815260200190565b60405180910390a361026c565b634e487b7160e01b5f52604160045260245ffd5b600181811c9082168061014257607f821691505b60208210810361016057634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156101ad57805f5260205f20601f840160051c8101602085101561018b5750805b601f840160051c820191505b818110156101aa575f8155600101610197565b50505b505050565b81516001600160401b038111156101cb576101cb61011a565b6101df816101d9845461012e565b84610166565b6020601f821160018114610211575f83156101fa5750848201515b5f19600385901b1c1916600184901b1784556101aa565b5f84815260208120601f198516915b828110156102405787850151825560209485019460019092019101610220565b508482101561025d57868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b610cd9806102795f395ff3fe608060405234801561000f575f80fd5b50600436106100fb575f3560e01c8063715018a611610093578063a457c2d711610063578063a457c2d71461020e578063a9059cbb14610221578063dd62ed3e14610234578063f2fde38b1461026c575f80fd5b8063715018a6146101ca578063893d20e8146101d25780638da5cb5b146101f657806395d89b4114610206575f80fd5b8063313ce567116100ce578063313ce56714610165578063395093511461017a57806342966c681461018d57806370a08231146101a2575f80fd5b806306fdde03146100ff578063095ea7b31461011d57806318160ddd1461014057806323b872dd14610152575b5f80fd5b61010761027f565b6040516101149190610a89565b60405180910390f35b61013061012b366004610ad9565b61030f565b6040519015158152602001610114565b6003545b604051908152602001610114565b610130610160366004610b01565b610325565b60045460405160ff9091168152602001610114565b610130610188366004610ad9565b61038c565b6101a061019b366004610b3b565b6103c1565b005b6101446101b0366004610b52565b6001600160a01b03165f9081526001602052604090205490565b6101a06103ce565b5f546001600160a01b03165b6040516001600160a01b039091168152602001610114565b5f546001600160a01b03166101de565b610107610474565b61013061021c366004610ad9565b610483565b61013061022f366004610ad9565b6104d0565b610144610242366004610b6b565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b6101a061027a366004610b52565b6104dc565b60606006805461028e90610b9c565b80601f01602080910402602001604051908101604052809291908181526020018280546102ba90610b9c565b80156103055780601f106102dc57610100808354040283529160200191610305565b820191905f5260205f20905b8154815290600101906020018083116102e857829003601f168201915b5050505050905090565b5f61031b33848461053e565b5060015b92915050565b5f610331848484610662565b610382843361037d85604051806060016040528060288152602001610c57602891396001600160a01b038a165f90815260026020908152604080832033845290915290205491906107e5565b61053e565b5060019392505050565b335f8181526002602090815260408083206001600160a01b0387168452909152812054909161031b91859061037d908661081d565b6103cb3382610882565b50565b5f546001600160a01b0316331461042c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b5f80546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a35f80546001600160a01b0319169055565b60606005805461028e90610b9c565b5f61031b338461037d85604051806060016040528060258152602001610c7f60259139335f9081526002602090815260408083206001600160a01b038d16845290915290205491906107e5565b5f61031b338484610662565b5f546001600160a01b031633146105355760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610423565b6103cb8161098a565b6001600160a01b0383166105a05760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610423565b6001600160a01b0382166106015760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610423565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166106c65760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610423565b6001600160a01b0382166107285760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610423565b61076481604051806060016040528060268152602001610c31602691396001600160a01b0386165f9081526001602052604090205491906107e5565b6001600160a01b038085165f908152600160205260408082209390935590841681522054610792908261081d565b6001600160a01b038084165f8181526001602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906106559085815260200190565b5f81848411156108085760405162461bcd60e51b81526004016104239190610a89565b505f6108148486610be8565b95945050505050565b5f806108298385610bfb565b90508381101561087b5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610423565b9392505050565b6001600160a01b0382166108e25760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610423565b61091e81604051806060016040528060228152602001610c0f602291396001600160a01b0385165f9081526001602052604090205491906107e5565b6001600160a01b0383165f908152600160205260409020556003546109439082610a48565b6003556040518181525f906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b0381166109ef5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610423565b5f80546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a35f80546001600160a01b0319166001600160a01b0392909216919091179055565b5f61087b83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506107e5565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b80356001600160a01b0381168114610ad4575f80fd5b919050565b5f8060408385031215610aea575f80fd5b610af383610abe565b946020939093013593505050565b5f805f60608486031215610b13575f80fd5b610b1c84610abe565b9250610b2a60208501610abe565b929592945050506040919091013590565b5f60208284031215610b4b575f80fd5b5035919050565b5f60208284031215610b62575f80fd5b61087b82610abe565b5f8060408385031215610b7c575f80fd5b610b8583610abe565b9150610b9360208401610abe565b90509250929050565b600181811c90821680610bb057607f821691505b602082108103610bce57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8181038181111561031f5761031f610bd4565b8082018082111561031f5761031f610bd456fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220edf9f84c9fb5e5ac96c6547285949a180f5e2900043a555e83a2571ce933cb6464736f6c634300081a0033
Deployed Bytecode
0x608060405234801561000f575f80fd5b50600436106100fb575f3560e01c8063715018a611610093578063a457c2d711610063578063a457c2d71461020e578063a9059cbb14610221578063dd62ed3e14610234578063f2fde38b1461026c575f80fd5b8063715018a6146101ca578063893d20e8146101d25780638da5cb5b146101f657806395d89b4114610206575f80fd5b8063313ce567116100ce578063313ce56714610165578063395093511461017a57806342966c681461018d57806370a08231146101a2575f80fd5b806306fdde03146100ff578063095ea7b31461011d57806318160ddd1461014057806323b872dd14610152575b5f80fd5b61010761027f565b6040516101149190610a89565b60405180910390f35b61013061012b366004610ad9565b61030f565b6040519015158152602001610114565b6003545b604051908152602001610114565b610130610160366004610b01565b610325565b60045460405160ff9091168152602001610114565b610130610188366004610ad9565b61038c565b6101a061019b366004610b3b565b6103c1565b005b6101446101b0366004610b52565b6001600160a01b03165f9081526001602052604090205490565b6101a06103ce565b5f546001600160a01b03165b6040516001600160a01b039091168152602001610114565b5f546001600160a01b03166101de565b610107610474565b61013061021c366004610ad9565b610483565b61013061022f366004610ad9565b6104d0565b610144610242366004610b6b565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b6101a061027a366004610b52565b6104dc565b60606006805461028e90610b9c565b80601f01602080910402602001604051908101604052809291908181526020018280546102ba90610b9c565b80156103055780601f106102dc57610100808354040283529160200191610305565b820191905f5260205f20905b8154815290600101906020018083116102e857829003601f168201915b5050505050905090565b5f61031b33848461053e565b5060015b92915050565b5f610331848484610662565b610382843361037d85604051806060016040528060288152602001610c57602891396001600160a01b038a165f90815260026020908152604080832033845290915290205491906107e5565b61053e565b5060019392505050565b335f8181526002602090815260408083206001600160a01b0387168452909152812054909161031b91859061037d908661081d565b6103cb3382610882565b50565b5f546001600160a01b0316331461042c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b5f80546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a35f80546001600160a01b0319169055565b60606005805461028e90610b9c565b5f61031b338461037d85604051806060016040528060258152602001610c7f60259139335f9081526002602090815260408083206001600160a01b038d16845290915290205491906107e5565b5f61031b338484610662565b5f546001600160a01b031633146105355760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610423565b6103cb8161098a565b6001600160a01b0383166105a05760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610423565b6001600160a01b0382166106015760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610423565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166106c65760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610423565b6001600160a01b0382166107285760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610423565b61076481604051806060016040528060268152602001610c31602691396001600160a01b0386165f9081526001602052604090205491906107e5565b6001600160a01b038085165f908152600160205260408082209390935590841681522054610792908261081d565b6001600160a01b038084165f8181526001602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906106559085815260200190565b5f81848411156108085760405162461bcd60e51b81526004016104239190610a89565b505f6108148486610be8565b95945050505050565b5f806108298385610bfb565b90508381101561087b5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610423565b9392505050565b6001600160a01b0382166108e25760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610423565b61091e81604051806060016040528060228152602001610c0f602291396001600160a01b0385165f9081526001602052604090205491906107e5565b6001600160a01b0383165f908152600160205260409020556003546109439082610a48565b6003556040518181525f906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b0381166109ef5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610423565b5f80546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a35f80546001600160a01b0319166001600160a01b0392909216919091179055565b5f61087b83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506107e5565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b80356001600160a01b0381168114610ad4575f80fd5b919050565b5f8060408385031215610aea575f80fd5b610af383610abe565b946020939093013593505050565b5f805f60608486031215610b13575f80fd5b610b1c84610abe565b9250610b2a60208501610abe565b929592945050506040919091013590565b5f60208284031215610b4b575f80fd5b5035919050565b5f60208284031215610b62575f80fd5b61087b82610abe565b5f8060408385031215610b7c575f80fd5b610b8583610abe565b9150610b9360208401610abe565b90509250929050565b600181811c90821680610bb057607f821691505b602082108103610bce57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8181038181111561031f5761031f610bd4565b8082018082111561031f5761031f610bd456fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220edf9f84c9fb5e5ac96c6547285949a180f5e2900043a555e83a2571ce933cb6464736f6c634300081a0033
Deployed Bytecode Sourcemap
12105:7793:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13252:94;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14543:195;;;;;;:::i;:::-;;:::i;:::-;;;1085:14:1;;1078:22;1060:41;;1048:2;1033:18;14543:195:0;920:187:1;13410:102:0;13492:12;;13410:102;;;1258:25:1;;;1246:2;1231:18;13410:102:0;1112:177:1;15209:448:0;;;;;;:::i;:::-;;:::i;12932:94::-;13009:9;;12932:94;;13009:9;;;;1815:36:1;;1803:2;1788:18;12932:94:0;1673:184:1;16065:283:0;;;;;;:::i;:::-;;:::i;19812:83::-;;;;;;:::i;:::-;;:::i;:::-;;13574:162;;;;;;:::i;:::-;-1:-1:-1;;;;;13710:18:0;13678:7;13710:18;;;:9;:18;;;;;;;13574:162;11322:140;;;:::i;12771:94::-;12823:7;10745:6;-1:-1:-1;;;;;10745:6:0;12771:94;;;-1:-1:-1;;;;;2448:32:1;;;2430:51;;2418:2;2403:18;12771:94:0;2284:203:1;10680:79:0;10718:7;10745:6;-1:-1:-1;;;;;10745:6:0;10680:79;;13091:98;;;:::i;16850:383::-;;;;;;:::i;:::-;;:::i;13948:201::-;;;;;;:::i;:::-;;:::i;14211:186::-;;;;;;:::i;:::-;-1:-1:-1;;;;;14362:18:0;;;14330:7;14362:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;14211:186;11617:109;;;;;;:::i;:::-;;:::i;13252:94::-;13300:13;13333:5;13326:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13252:94;:::o;14543:195::-;14647:4;14669:39;4075:10;14692:7;14701:6;14669:8;:39::i;:::-;-1:-1:-1;14726:4:0;14543:195;;;;;:::o;15209:448::-;15343:4;15360:36;15370:6;15378:9;15389:6;15360:9;:36::i;:::-;15407:220;15430:6;4075:10;15478:138;15534:6;15478:138;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15478:19:0;;;;;;:11;:19;;;;;;;;4075:10;15478:33;;;;;;;;;;:37;:138::i;:::-;15407:8;:220::i;:::-;-1:-1:-1;15645:4:0;15209:448;;;;;:::o;16065:283::-;4075:10;16163:4;16257:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;16257:34:0;;;;;;;;;;16163:4;;16185:133;;16235:7;;16257:50;;16296:10;16257:38;:50::i;19812:83::-;19861:26;19867:10;19879:7;19861:5;:26::i;:::-;19812:83;:::o;11322:140::-;10892:6;;-1:-1:-1;;;;;10892:6:0;4075:10;10892:22;10884:67;;;;-1:-1:-1;;;10884:67:0;;3344:2:1;10884:67:0;;;3326:21:1;;;3363:18;;;3356:30;3422:34;3402:18;;;3395:62;3474:18;;10884:67:0;;;;;;;;;11421:1:::1;11405:6:::0;;11384:40:::1;::::0;-1:-1:-1;;;;;11405:6:0;;::::1;::::0;11384:40:::1;::::0;11421:1;;11384:40:::1;11452:1;11435:19:::0;;-1:-1:-1;;;;;;11435:19:0::1;::::0;;11322:140::o;13091:98::-;13141:13;13174:7;13167:14;;;;;:::i;16850:383::-;16953:4;16975:228;4075:10;17025:7;17047:145;17104:15;17047:145;;;;;;;;;;;;;;;;;4075:10;17047:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;17047:34:0;;;;;;;;;;;;:38;:145::i;13948:201::-;14055:4;14077:42;4075:10;14101:9;14112:6;14077:9;:42::i;11617:109::-;10892:6;;-1:-1:-1;;;;;10892:6:0;4075:10;10892:22;10884:67;;;;-1:-1:-1;;;10884:67:0;;3344:2:1;10884:67:0;;;3326:21:1;;;3363:18;;;3356:30;3422:34;3402:18;;;3395:62;3474:18;;10884:67:0;3142:356:1;10884:67:0;11690:28:::1;11709:8;11690:18;:28::i;19432:372::-:0;-1:-1:-1;;;;;19560:19:0;;19552:68;;;;-1:-1:-1;;;19552:68:0;;3705:2:1;19552:68:0;;;3687:21:1;3744:2;3724:18;;;3717:30;3783:34;3763:18;;;3756:62;-1:-1:-1;;;3834:18:1;;;3827:34;3878:19;;19552:68:0;3503:400:1;19552:68:0;-1:-1:-1;;;;;19639:21:0;;19631:68;;;;-1:-1:-1;;;19631:68:0;;4110:2:1;19631:68:0;;;4092:21:1;4149:2;4129:18;;;4122:30;4188:34;4168:18;;;4161:62;-1:-1:-1;;;4239:18:1;;;4232:32;4281:19;;19631:68:0;3908:398:1;19631:68:0;-1:-1:-1;;;;;19712:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;19764:32;;1258:25:1;;;19764:32:0;;1231:18:1;19764:32:0;;;;;;;;19432:372;;;:::o;17723:552::-;-1:-1:-1;;;;;17855:20:0;;17847:70;;;;-1:-1:-1;;;17847:70:0;;4513:2:1;17847:70:0;;;4495:21:1;4552:2;4532:18;;;4525:30;4591:34;4571:18;;;4564:62;-1:-1:-1;;;4642:18:1;;;4635:35;4687:19;;17847:70:0;4311:401:1;17847:70:0;-1:-1:-1;;;;;17936:23:0;;17928:71;;;;-1:-1:-1;;;17928:71:0;;4919:2:1;17928:71:0;;;4901:21:1;4958:2;4938:18;;;4931:30;4997:34;4977:18;;;4970:62;-1:-1:-1;;;5048:18:1;;;5041:33;5091:19;;17928:71:0;4717:399:1;17928:71:0;18032:108;18068:6;18032:108;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18032:17:0;;;;;;:9;:17;;;;;;;:108;:21;:108::i;:::-;-1:-1:-1;;;;;18012:17:0;;;;;;;:9;:17;;;;;;:128;;;;18184:20;;;;;;;:32;;18209:6;18184:24;:32::i;:::-;-1:-1:-1;;;;;18161:20:0;;;;;;;:9;:20;;;;;;;:55;;;;18232:35;;;;;;;;;;18260:6;1258:25:1;;1246:2;1231:18;;1112:177;6052:226:0;6172:7;6208:12;6200:6;;;;6192:29;;;;-1:-1:-1;;;6192:29:0;;;;;;;;:::i;:::-;-1:-1:-1;6232:9:0;6244:5;6248:1;6244;:5;:::i;:::-;6232:17;6052:226;-1:-1:-1;;;;;6052:226:0:o;5165:181::-;5223:7;;5255:5;5259:1;5255;:5;:::i;:::-;5243:17;;5284:1;5279;:6;;5271:46;;;;-1:-1:-1;;;5271:46:0;;5718:2:1;5271:46:0;;;5700:21:1;5757:2;5737:18;;;5730:30;5796:29;5776:18;;;5769:57;5843:18;;5271:46:0;5516:351:1;5271:46:0;5337:1;5165:181;-1:-1:-1;;;5165:181:0:o;18607:385::-;-1:-1:-1;;;;;18683:21:0;;18675:67;;;;-1:-1:-1;;;18675:67:0;;6074:2:1;18675:67:0;;;6056:21:1;6113:2;6093:18;;;6086:30;6152:34;6132:18;;;6125:62;-1:-1:-1;;;6203:18:1;;;6196:31;6244:19;;18675:67:0;5872:397:1;18675:67:0;18776:105;18813:6;18776:105;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18776:18:0;;;;;;:9;:18;;;;;;;:105;:22;:105::i;:::-;-1:-1:-1;;;;;18755:18:0;;;;;;:9;:18;;;;;:126;18907:12;;:24;;18924:6;18907:16;:24::i;:::-;18892:12;:39;18947:37;;1258:25:1;;;18973:1:0;;-1:-1:-1;;;;;18947:37:0;;;;;1246:2:1;1231:18;18947:37:0;;;;;;;18607:385;;:::o;11832:266::-;-1:-1:-1;;;;;11920:22:0;;11898:110;;;;-1:-1:-1;;;11898:110:0;;6476:2:1;11898:110:0;;;6458:21:1;6515:2;6495:18;;;6488:30;6554:34;6534:18;;;6527:62;-1:-1:-1;;;6605:18:1;;;6598:36;6651:19;;11898:110:0;6274:402:1;11898:110:0;12045:6;;;12024:38;;-1:-1:-1;;;;;12024:38:0;;;;12045:6;;;12024:38;;;12073:6;:17;;-1:-1:-1;;;;;;12073:17:0;-1:-1:-1;;;;;12073:17:0;;;;;;;;;;11832:266::o;5621:136::-;5679:7;5706:43;5710:1;5713;5706:43;;;;;;;;;;;;;;;;;:3;:43::i;14:418:1:-;163:2;152:9;145:21;126:4;195:6;189:13;238:6;233:2;222:9;218:18;211:34;297:6;292:2;284:6;280:15;275:2;264:9;260:18;254:50;353:1;348:2;339:6;328:9;324:22;320:31;313:42;423:2;416;412:7;407:2;399:6;395:15;391:29;380:9;376:45;372:54;364:62;;;14:418;;;;:::o;437:173::-;505:20;;-1:-1:-1;;;;;554:31:1;;544:42;;534:70;;600:1;597;590:12;534:70;437:173;;;:::o;615:300::-;683:6;691;744:2;732:9;723:7;719:23;715:32;712:52;;;760:1;757;750:12;712:52;783:29;802:9;783:29;:::i;:::-;773:39;881:2;866:18;;;;853:32;;-1:-1:-1;;;615:300:1:o;1294:374::-;1371:6;1379;1387;1440:2;1428:9;1419:7;1415:23;1411:32;1408:52;;;1456:1;1453;1446:12;1408:52;1479:29;1498:9;1479:29;:::i;:::-;1469:39;;1527:38;1561:2;1550:9;1546:18;1527:38;:::i;:::-;1294:374;;1517:48;;-1:-1:-1;;;1634:2:1;1619:18;;;;1606:32;;1294:374::o;1862:226::-;1921:6;1974:2;1962:9;1953:7;1949:23;1945:32;1942:52;;;1990:1;1987;1980:12;1942:52;-1:-1:-1;2035:23:1;;1862:226;-1:-1:-1;1862:226:1:o;2093:186::-;2152:6;2205:2;2193:9;2184:7;2180:23;2176:32;2173:52;;;2221:1;2218;2211:12;2173:52;2244:29;2263:9;2244:29;:::i;2492:260::-;2560:6;2568;2621:2;2609:9;2600:7;2596:23;2592:32;2589:52;;;2637:1;2634;2627:12;2589:52;2660:29;2679:9;2660:29;:::i;:::-;2650:39;;2708:38;2742:2;2731:9;2727:18;2708:38;:::i;:::-;2698:48;;2492:260;;;;;:::o;2757:380::-;2836:1;2832:12;;;;2879;;;2900:61;;2954:4;2946:6;2942:17;2932:27;;2900:61;3007:2;2999:6;2996:14;2976:18;2973:38;2970:161;;3053:10;3048:3;3044:20;3041:1;3034:31;3088:4;3085:1;3078:15;3116:4;3113:1;3106:15;2970:161;;2757:380;;;:::o;5121:127::-;5182:10;5177:3;5173:20;5170:1;5163:31;5213:4;5210:1;5203:15;5237:4;5234:1;5227:15;5253:128;5320:9;;;5341:11;;;5338:37;;;5355:18;;:::i;5386:125::-;5451:9;;;5472:10;;;5469:36;;;5485:18;;:::i
Swarm Source
ipfs://edf9f84c9fb5e5ac96c6547285949a180f5e2900043a555e83a2571ce933cb64
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.