Overview
Max Total Supply
100,000,000 GOSH
Holders
653 (0.00%)
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
2,932.4755585 GOSHValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
GOSHToken
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-03-31 */ // File: ..\node_modules\@openzeppelin\contracts\token\ERC20\IERC20.sol // SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `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); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval( address indexed owner, address indexed spender, uint256 value ); } // File: ..\node_modules\@openzeppelin\contracts\token\ERC20\extensions\IERC20Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File: ..\node_modules\@openzeppelin\contracts\utils\Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin\contracts\token\ERC20\ERC20.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @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 {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead 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 Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @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(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @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 18; } /** * @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, _allowances[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 = _allowances[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( fromBalance >= amount, "ERC20: transfer amount exceeds balance" ); unchecked { _balances[from] = fromBalance - amount; } _balances[to] += amount; emit Transfer(from, to, amount); _afterTokenTransfer(from, to, 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: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(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 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 Spend `amount` form the allowance of `owner` toward `spender`. * * 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 {} } // File: contracts\GOSH.sol // contracts/GOSHToken.sol pragma solidity ^0.8.0; contract GOSHToken is ERC20 { // multi-signature address address public constant MAS = 0x1154c6c3398fBC6Cd2890Db7cC64D057d2B51faE; constructor() ERC20("GOSH Realm", "GOSH") { _mint(MAS, 100_000_000 * (10**uint256(decimals()))); } }
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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"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":"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"}]
Contract Creation Code
60806040523480156200001157600080fd5b50604080518082018252600a815269474f5348205265616c6d60b01b60208083019182528351808501909452600484526308e9ea6960e31b9084015281519192916200006091600391620001bb565b50805162000076906004906020840190620001bb565b505050620000c8731154c6c3398fbc6cd2890db7cc64d057d2b51fae620000a2620000ce60201b60201c565b620000b29060ff16600a620002c5565b620000c2906305f5e10062000390565b620000d3565b62000405565b601290565b6001600160a01b0382166200012e5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b806002600082825462000142919062000261565b90915550506001600160a01b038216600090815260208190526040812080548392906200017190849062000261565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b828054620001c990620003b2565b90600052602060002090601f016020900481019282620001ed576000855562000238565b82601f106200020857805160ff191683800117855562000238565b8280016001018555821562000238579182015b82811115620002385782518255916020019190600101906200021b565b50620002469291506200024a565b5090565b5b808211156200024657600081556001016200024b565b60008219821115620002775762000277620003ef565b500190565b600181815b80851115620002bd578160001904821115620002a157620002a1620003ef565b80851615620002af57918102915b93841c939080029062000281565b509250929050565b6000620002d38383620002da565b9392505050565b600082620002eb575060016200038a565b81620002fa575060006200038a565b81600181146200031357600281146200031e576200033e565b60019150506200038a565b60ff841115620003325762000332620003ef565b50506001821b6200038a565b5060208310610133831016604e8410600b841016171562000363575081810a6200038a565b6200036f83836200027c565b8060001904821115620003865762000386620003ef565b0290505b92915050565b6000816000190483118215151615620003ad57620003ad620003ef565b500290565b600181811c90821680620003c757607f821691505b60208210811415620003e957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b610bb580620004156000396000f3fe608060405234801561001057600080fd5b50600436106100d45760003560e01c806370a0823111610081578063a9059cbb1161005b578063a9059cbb146101b2578063dd62ed3e146101c5578063e5b6402b1461020b57600080fd5b806370a082311461016157806395d89b4114610197578063a457c2d71461019f57600080fd5b806323b872dd116100b257806323b872dd1461012c578063313ce5671461013f578063395093511461014e57600080fd5b806306fdde03146100d9578063095ea7b3146100f757806318160ddd1461011a575b600080fd5b6100e161024b565b6040516100ee9190610a79565b60405180910390f35b61010a610105366004610a4f565b6102dd565b60405190151581526020016100ee565b6002545b6040519081526020016100ee565b61010a61013a366004610a13565b6102f5565b604051601281526020016100ee565b61010a61015c366004610a4f565b610319565b61011e61016f3660046109be565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b6100e1610365565b61010a6101ad366004610a4f565b610374565b61010a6101c0366004610a4f565b61044a565b61011e6101d33660046109e0565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b610226731154c6c3398fbc6cd2890db7cc64d057d2b51fae81565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016100ee565b60606003805461025a90610b2b565b80601f016020809104026020016040519081016040528092919081815260200182805461028690610b2b565b80156102d35780601f106102a8576101008083540402835291602001916102d3565b820191906000526020600020905b8154815290600101906020018083116102b657829003601f168201915b5050505050905090565b6000336102eb818585610458565b5060019392505050565b60003361030385828561060b565b61030e8585856106e2565b506001949350505050565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff871684529091528120549091906102eb9082908690610360908790610aec565b610458565b60606004805461025a90610b2b565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff871684529091528120549091908381101561043d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b61030e8286868403610458565b6000336102eb8185856106e2565b73ffffffffffffffffffffffffffffffffffffffff83166104fa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610434565b73ffffffffffffffffffffffffffffffffffffffff821661059d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610434565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff8381166000908152600160209081526040808320938616835292905220547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146106dc57818110156106cf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610434565b6106dc8484848403610458565b50505050565b73ffffffffffffffffffffffffffffffffffffffff8316610785576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610434565b73ffffffffffffffffffffffffffffffffffffffff8216610828576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610434565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260208190526040902054818110156108de576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610434565b73ffffffffffffffffffffffffffffffffffffffff808516600090815260208190526040808220858503905591851681529081208054849290610922908490610aec565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161098891815260200190565b60405180910390a36106dc565b803573ffffffffffffffffffffffffffffffffffffffff811681146109b957600080fd5b919050565b6000602082840312156109d057600080fd5b6109d982610995565b9392505050565b600080604083850312156109f357600080fd5b6109fc83610995565b9150610a0a60208401610995565b90509250929050565b600080600060608486031215610a2857600080fd5b610a3184610995565b9250610a3f60208501610995565b9150604084013590509250925092565b60008060408385031215610a6257600080fd5b610a6b83610995565b946020939093013593505050565b600060208083528351808285015260005b81811015610aa657858101830151858201604001528201610a8a565b81811115610ab8576000604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b60008219821115610b26577f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b500190565b600181811c90821680610b3f57607f821691505b60208210811415610b79577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b5091905056fea26469706673582212200f3a4024236fb89bd09cc6b80b815f0a66f369963724efabc949986956429ced64736f6c63430008070033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100d45760003560e01c806370a0823111610081578063a9059cbb1161005b578063a9059cbb146101b2578063dd62ed3e146101c5578063e5b6402b1461020b57600080fd5b806370a082311461016157806395d89b4114610197578063a457c2d71461019f57600080fd5b806323b872dd116100b257806323b872dd1461012c578063313ce5671461013f578063395093511461014e57600080fd5b806306fdde03146100d9578063095ea7b3146100f757806318160ddd1461011a575b600080fd5b6100e161024b565b6040516100ee9190610a79565b60405180910390f35b61010a610105366004610a4f565b6102dd565b60405190151581526020016100ee565b6002545b6040519081526020016100ee565b61010a61013a366004610a13565b6102f5565b604051601281526020016100ee565b61010a61015c366004610a4f565b610319565b61011e61016f3660046109be565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b6100e1610365565b61010a6101ad366004610a4f565b610374565b61010a6101c0366004610a4f565b61044a565b61011e6101d33660046109e0565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b610226731154c6c3398fbc6cd2890db7cc64d057d2b51fae81565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016100ee565b60606003805461025a90610b2b565b80601f016020809104026020016040519081016040528092919081815260200182805461028690610b2b565b80156102d35780601f106102a8576101008083540402835291602001916102d3565b820191906000526020600020905b8154815290600101906020018083116102b657829003601f168201915b5050505050905090565b6000336102eb818585610458565b5060019392505050565b60003361030385828561060b565b61030e8585856106e2565b506001949350505050565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff871684529091528120549091906102eb9082908690610360908790610aec565b610458565b60606004805461025a90610b2b565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff871684529091528120549091908381101561043d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b61030e8286868403610458565b6000336102eb8185856106e2565b73ffffffffffffffffffffffffffffffffffffffff83166104fa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610434565b73ffffffffffffffffffffffffffffffffffffffff821661059d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610434565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff8381166000908152600160209081526040808320938616835292905220547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146106dc57818110156106cf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610434565b6106dc8484848403610458565b50505050565b73ffffffffffffffffffffffffffffffffffffffff8316610785576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610434565b73ffffffffffffffffffffffffffffffffffffffff8216610828576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610434565b73ffffffffffffffffffffffffffffffffffffffff8316600090815260208190526040902054818110156108de576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610434565b73ffffffffffffffffffffffffffffffffffffffff808516600090815260208190526040808220858503905591851681529081208054849290610922908490610aec565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161098891815260200190565b60405180910390a36106dc565b803573ffffffffffffffffffffffffffffffffffffffff811681146109b957600080fd5b919050565b6000602082840312156109d057600080fd5b6109d982610995565b9392505050565b600080604083850312156109f357600080fd5b6109fc83610995565b9150610a0a60208401610995565b90509250929050565b600080600060608486031215610a2857600080fd5b610a3184610995565b9250610a3f60208501610995565b9150604084013590509250925092565b60008060408385031215610a6257600080fd5b610a6b83610995565b946020939093013593505050565b600060208083528351808285015260005b81811015610aa657858101830151858201604001528201610a8a565b81811115610ab8576000604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b60008219821115610b26577f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b500190565b600181811c90821680610b3f57607f821691505b60208210811415610b79577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b5091905056fea26469706673582212200f3a4024236fb89bd09cc6b80b815f0a66f369963724efabc949986956429ced64736f6c63430008070033
Deployed Bytecode Sourcemap
18031:263:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6779:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9271:242;;;;;;:::i;:::-;;:::i;:::-;;;1659:14:1;;1652:22;1634:41;;1622:2;1607:18;9271:242:0;1494:187:1;7899:108:0;7987:12;;7899:108;;;5282:25:1;;;5270:2;5255:18;7899:108:0;5136:177:1;10093:295:0;;;;;;:::i;:::-;;:::i;7741:93::-;;;7824:2;5460:36:1;;5448:2;5433:18;7741:93:0;5318:184:1;10797:272:0;;;;;;:::i;:::-;;:::i;8070:177::-;;;;;;:::i;:::-;8221:18;;8189:7;8221:18;;;;;;;;;;;;8070:177;6998:104;;;:::i;11572:507::-;;;;;;:::i;:::-;;:::i;8453:234::-;;;;;;:::i;:::-;;:::i;8750:201::-;;;;;;:::i;:::-;8916:18;;;;8884:7;8916:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8750:201;18098:72;;18128:42;18098:72;;;;;1439:42:1;1427:55;;;1409:74;;1397:2;1382:18;18098:72:0;1263:226:1;6779:100:0;6833:13;6866:5;6859:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6779:100;:::o;9271:242::-;9390:4;4507:10;9451:32;4507:10;9467:7;9476:6;9451:8;:32::i;:::-;-1:-1:-1;9501:4:0;;9271:242;-1:-1:-1;;;9271:242:0:o;10093:295::-;10224:4;4507:10;10282:38;10298:4;4507:10;10313:6;10282:15;:38::i;:::-;10331:27;10341:4;10347:2;10351:6;10331:9;:27::i;:::-;-1:-1:-1;10376:4:0;;10093:295;-1:-1:-1;;;;10093:295:0:o;10797:272::-;4507:10;10912:4;10998:18;;;:11;:18;;;;;;;;;:27;;;;;;;;;;10912:4;;4507:10;10973:66;;4507:10;;10998:27;;:40;;11028:10;;10998:40;:::i;:::-;10973:8;:66::i;6998:104::-;7054:13;7087:7;7080:14;;;;;:::i;11572:507::-;4507:10;11692:4;11780:18;;;:11;:18;;;;;;;;;:27;;;;;;;;;;11692:4;;4507:10;11840:35;;;;11818:122;;;;;;;4932:2:1;11818:122:0;;;4914:21:1;4971:2;4951:18;;;4944:30;5010:34;4990:18;;;4983:62;5081:7;5061:18;;;5054:35;5106:19;;11818:122:0;;;;;;;;;11976:60;11985:5;11992:7;12020:15;12001:16;:34;11976:8;:60::i;8453:234::-;8568:4;4507:10;8629:28;4507:10;8646:2;8650:6;8629:9;:28::i;15314:380::-;15450:19;;;15442:68;;;;;;;4527:2:1;15442:68:0;;;4509:21:1;4566:2;4546:18;;;4539:30;4605:34;4585:18;;;4578:62;4676:6;4656:18;;;4649:34;4700:19;;15442:68:0;4325:400:1;15442:68:0;15529:21;;;15521:68;;;;;;;2953:2:1;15521:68:0;;;2935:21:1;2992:2;2972:18;;;2965:30;3031:34;3011:18;;;3004:62;3102:4;3082:18;;;3075:32;3124:19;;15521:68:0;2751:398:1;15521:68:0;15602:18;;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15654:32;;5282:25:1;;;15654:32:0;;5255:18:1;15654:32:0;;;;;;;15314:380;;;:::o;15981:502::-;8916:18;;;;16116:24;8916:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;16203:17;16183:37;;16179:297;;16283:6;16263:16;:26;;16237:117;;;;;;;3356:2:1;16237:117:0;;;3338:21:1;3395:2;3375:18;;;3368:30;3434:31;3414:18;;;3407:59;3483:18;;16237:117:0;3154:353:1;16237:117:0;16398:51;16407:5;16414:7;16442:6;16423:16;:25;16398:8;:51::i;:::-;16105:378;15981:502;;;:::o;12558:708::-;12689:18;;;12681:68;;;;;;;4121:2:1;12681:68:0;;;4103:21:1;4160:2;4140:18;;;4133:30;4199:34;4179:18;;;4172:62;4270:7;4250:18;;;4243:35;4295:19;;12681:68:0;3919:401:1;12681:68:0;12768:16;;;12760:64;;;;;;;2549:2:1;12760:64:0;;;2531:21:1;2588:2;2568:18;;;2561:30;2627:34;2607:18;;;2600:62;2698:5;2678:18;;;2671:33;2721:19;;12760:64:0;2347:399:1;12760:64:0;12910:15;;;12888:19;12910:15;;;;;;;;;;;12958:21;;;;12936:109;;;;;;;3714:2:1;12936:109:0;;;3696:21:1;3753:2;3733:18;;;3726:30;3792:34;3772:18;;;3765:62;3863:8;3843:18;;;3836:36;3889:19;;12936:109:0;3512:402:1;12936:109:0;13081:15;;;;:9;:15;;;;;;;;;;;13099:20;;;13081:38;;13141:13;;;;;;;;:23;;13113:6;;13081:9;13141:23;;13113:6;;13141:23;:::i;:::-;;;;;;;;13197:2;13182:26;;13191:4;13182:26;;;13201:6;13182:26;;;;5282:25:1;;5270:2;5255:18;;5136:177;13182:26:0;;;;;;;;13221:37;17083:125;14:196:1;82:20;;142:42;131:54;;121:65;;111:93;;200:1;197;190:12;111:93;14:196;;;:::o;215:186::-;274:6;327:2;315:9;306:7;302:23;298:32;295:52;;;343:1;340;333:12;295:52;366:29;385:9;366:29;:::i;:::-;356:39;215:186;-1:-1:-1;;;215:186:1:o;406:260::-;474:6;482;535:2;523:9;514:7;510:23;506:32;503:52;;;551:1;548;541:12;503:52;574:29;593:9;574:29;:::i;:::-;564:39;;622:38;656:2;645:9;641:18;622:38;:::i;:::-;612:48;;406:260;;;;;:::o;671:328::-;748:6;756;764;817:2;805:9;796:7;792:23;788:32;785:52;;;833:1;830;823:12;785:52;856:29;875:9;856:29;:::i;:::-;846:39;;904:38;938:2;927:9;923:18;904:38;:::i;:::-;894:48;;989:2;978:9;974:18;961:32;951:42;;671:328;;;;;:::o;1004:254::-;1072:6;1080;1133:2;1121:9;1112:7;1108:23;1104:32;1101:52;;;1149:1;1146;1139:12;1101:52;1172:29;1191:9;1172:29;:::i;:::-;1162:39;1248:2;1233:18;;;;1220:32;;-1:-1:-1;;;1004:254:1:o;1686:656::-;1798:4;1827:2;1856;1845:9;1838:21;1888:6;1882:13;1931:6;1926:2;1915:9;1911:18;1904:34;1956:1;1966:140;1980:6;1977:1;1974:13;1966:140;;;2075:14;;;2071:23;;2065:30;2041:17;;;2060:2;2037:26;2030:66;1995:10;;1966:140;;;2124:6;2121:1;2118:13;2115:91;;;2194:1;2189:2;2180:6;2169:9;2165:22;2161:31;2154:42;2115:91;-1:-1:-1;2258:2:1;2246:15;2263:66;2242:88;2227:104;;;;2333:2;2223:113;;1686:656;-1:-1:-1;;;1686:656:1:o;5507:282::-;5547:3;5578:1;5574:6;5571:1;5568:13;5565:193;;;5614:77;5611:1;5604:88;5715:4;5712:1;5705:15;5743:4;5740:1;5733:15;5565:193;-1:-1:-1;5774:9:1;;5507:282::o;5794:437::-;5873:1;5869:12;;;;5916;;;5937:61;;5991:4;5983:6;5979:17;5969:27;;5937:61;6044:2;6036:6;6033:14;6013:18;6010:38;6007:218;;;6081:77;6078:1;6071:88;6182:4;6179:1;6172:15;6210:4;6207:1;6200:15;6007:218;;5794:437;;;:::o
Swarm Source
ipfs://0f3a4024236fb89bd09cc6b80b815f0a66f369963724efabc949986956429ced
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.