ERC-20
Overview
Max Total Supply
86,292.941435185185185057 WAGYU
Holders
79
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
123.465393518518518518 WAGYUValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
WAGYU
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-01-28 */ // File: @openzeppelin/contracts/utils/Strings.sol pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/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 `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); } // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File: @openzeppelin/contracts/utils/cryptography/ECDSA.sol pragma solidity ^0.8.0; /** * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations. * * These functions can be used to verify that a message was signed by the holder * of the private keys of a given address. */ library ECDSA { enum RecoverError { NoError, InvalidSignature, InvalidSignatureLength, InvalidSignatureS, InvalidSignatureV } function _throwError(RecoverError error) private pure { if (error == RecoverError.NoError) { return; // no error: do nothing } else if (error == RecoverError.InvalidSignature) { revert("ECDSA: invalid signature"); } else if (error == RecoverError.InvalidSignatureLength) { revert("ECDSA: invalid signature length"); } else if (error == RecoverError.InvalidSignatureS) { revert("ECDSA: invalid signature 's' value"); } else if (error == RecoverError.InvalidSignatureV) { revert("ECDSA: invalid signature 'v' value"); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature` or error string. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. * * Documentation for signature generation: * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js] * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) { // Check the signature length // - case 65: r,s,v signature (standard) // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._ if (signature.length == 65) { bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return tryRecover(hash, v, r, s); } else if (signature.length == 64) { bytes32 r; bytes32 vs; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) vs := mload(add(signature, 0x40)) } return tryRecover(hash, r, vs); } else { return (address(0), RecoverError.InvalidSignatureLength); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, signature); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately. * * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures] * * _Available since v4.3._ */ function tryRecover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address, RecoverError) { bytes32 s; uint8 v; assembly { s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) v := add(shr(255, vs), 27) } return tryRecover(hash, v, r, s); } /** * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately. * * _Available since v4.2._ */ function recover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, r, vs); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `v`, * `r` and `s` signature fields separately. * * _Available since v4.3._ */ function tryRecover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address, RecoverError) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) { return (address(0), RecoverError.InvalidSignatureS); } if (v != 27 && v != 28) { return (address(0), RecoverError.InvalidSignatureV); } // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); if (signer == address(0)) { return (address(0), RecoverError.InvalidSignature); } return (signer, RecoverError.NoError); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, * `r` and `s` signature fields separately. */ function recover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, v, r, s); _throwError(error); return recovered; } /** * @dev Returns an Ethereum Signed Message, created from a `hash`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) { // 32 is the length in bytes of hash, // enforced by the type signature above return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)); } /** * @dev Returns an Ethereum Signed Typed Data, created from a * `domainSeparator` and a `structHash`. This produces hash corresponding * to the one signed with the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] * JSON-RPC method as part of EIP-712. * * See {recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash)); } } // File: @openzeppelin/contracts/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 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: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, 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}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), 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}. * * 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 ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } return true; } /** * @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) { _approve(_msgSender(), spender, _allowances[_msgSender()][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) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), 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: * * - `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 virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `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 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: @openzeppelin/contracts/access/Ownable.sol pragma solidity ^0.8.0; /** * @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. */ 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() { _setOwner(_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 { _setOwner(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"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: contracts/Wagyu.sol pragma solidity ^0.8.4; contract WAGYU is Context, IERC20, IERC20Metadata, Ownable { using Strings for uint256; mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; mapping(address => bool) private authorizedAddresses; mapping(address => bool) private controllers; uint256 private _totalSupply; string private _name = "Wagyu"; string private _symbol = "WAGYU"; modifier onlyController { require(controllers[msg.sender], "NOT_CONTROLLER"); _; } constructor() {} // Mint/Burn functions // -------------------------------------------------------------- function mint(address user, uint256 amount) public onlyController { _mint(user, amount); } function burn(address user, uint256 amount) public onlyController { _burn(user, amount); } // Owner functions // -------------------------------------------------------------- function setController(address controller, bool authorized) public onlyOwner { controllers[controller] = authorized; } function setAuthorizedAddress(address authorizedAddress, bool authorized) public onlyOwner { authorizedAddresses[authorizedAddress] = authorized; } // ERC20 functions // -------------------------------------------------------------- function name() public view virtual override returns (string memory) { return _name; } function symbol() public view virtual override returns (string memory) { return _symbol; } function decimals() public view virtual override returns (uint8) { return 18; } function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); if (!authorizedAddresses[msg.sender]) { uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } } return true; } function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, amount); } 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); } 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); } 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); } function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {} function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {} }
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":"address","name":"user","type":"address"},{"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":[{"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":[{"internalType":"address","name":"user","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"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":[{"internalType":"address","name":"authorizedAddress","type":"address"},{"internalType":"bool","name":"authorized","type":"bool"}],"name":"setAuthorizedAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"controller","type":"address"},{"internalType":"bool","name":"authorized","type":"bool"}],"name":"setController","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
60c06040526005608081905264576167797560d81b60a0908152620000289160069190620000c7565b5060408051808201909152600580825264574147595560d81b60209092019182526200005791600791620000c7565b503480156200006557600080fd5b50620000713362000077565b620001aa565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b828054620000d5906200016d565b90600052602060002090601f016020900481019282620000f9576000855562000144565b82601f106200011457805160ff191683800117855562000144565b8280016001018555821562000144579182015b828111156200014457825182559160200191906001019062000127565b506200015292915062000156565b5090565b5b8082111562000152576000815560010162000157565b600181811c908216806200018257607f821691505b60208210811415620001a457634e487b7160e01b600052602260045260246000fd5b50919050565b610ef880620001ba6000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c8063715018a6116100a2578063a457c2d711610071578063a457c2d714610232578063a9059cbb14610245578063dd62ed3e14610258578063e0dba60f14610291578063f2fde38b146102a457600080fd5b8063715018a6146101f45780638da5cb5b146101fc57806395d89b41146102175780639dc29fac1461021f57600080fd5b806323b872dd116100e957806323b872dd14610183578063313ce5671461019657806339509351146101a557806340c10f19146101b857806370a08231146101cb57600080fd5b806306fdde031461011b578063095ea7b3146101395780631351cf511461015c57806318160ddd14610171575b600080fd5b6101236102b7565b6040516101309190610dba565b60405180910390f35b61014c610147366004610d91565b610349565b6040519015158152602001610130565b61016f61016a366004610d57565b61035f565b005b6005545b604051908152602001610130565b61014c610191366004610d1c565b6103bd565b60405160128152602001610130565b61014c6101b3366004610d91565b61047f565b61016f6101c6366004610d91565b6104bb565b6101756101d9366004610cc9565b6001600160a01b031660009081526001602052604090205490565b61016f610519565b6000546040516001600160a01b039091168152602001610130565b61012361054f565b61016f61022d366004610d91565b61055e565b61014c610240366004610d91565b6105b8565b61014c610253366004610d91565b610647565b610175610266366004610cea565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b61016f61029f366004610d57565b610654565b61016f6102b2366004610cc9565b6106a9565b6060600680546102c690610e71565b80601f01602080910402602001604051908101604052809291908181526020018280546102f290610e71565b801561033f5780601f106103145761010080835404028352916020019161033f565b820191906000526020600020905b81548152906001019060200180831161032257829003601f168201915b5050505050905090565b6000610356338484610744565b50600192915050565b6000546001600160a01b031633146103925760405162461bcd60e51b815260040161038990610e0d565b60405180910390fd5b6001600160a01b03919091166000908152600360205260409020805460ff1916911515919091179055565b60006103ca848484610869565b3360009081526003602052604090205460ff16610475576001600160a01b0384166000908152600260209081526040808320338452909152902054828110156104665760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610389565b6104738533858403610744565b505b5060019392505050565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916103569185906104b6908690610e42565b610744565b3360009081526004602052604090205460ff1661050b5760405162461bcd60e51b815260206004820152600e60248201526d2727aa2fa1a7a72a2927a62622a960911b6044820152606401610389565b6105158282610a38565b5050565b6000546001600160a01b031633146105435760405162461bcd60e51b815260040161038990610e0d565b61054d6000610b17565b565b6060600780546102c690610e71565b3360009081526004602052604090205460ff166105ae5760405162461bcd60e51b815260206004820152600e60248201526d2727aa2fa1a7a72a2927a62622a960911b6044820152606401610389565b6105158282610b67565b3360009081526002602090815260408083206001600160a01b03861684529091528120548281101561063a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610389565b6104753385858403610744565b6000610356338484610869565b6000546001600160a01b0316331461067e5760405162461bcd60e51b815260040161038990610e0d565b6001600160a01b03919091166000908152600460205260409020805460ff1916911515919091179055565b6000546001600160a01b031633146106d35760405162461bcd60e51b815260040161038990610e0d565b6001600160a01b0381166107385760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610389565b61074181610b17565b50565b6001600160a01b0383166107a65760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610389565b6001600160a01b0382166108075760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610389565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166108cd5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610389565b6001600160a01b03821661092f5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610389565b6001600160a01b038316600090815260016020526040902054818110156109a75760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610389565b6001600160a01b038085166000908152600160205260408082208585039055918516815290812080548492906109de908490610e42565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610a2a91815260200190565b60405180910390a350505050565b6001600160a01b038216610a8e5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610389565b8060056000828254610aa09190610e42565b90915550506001600160a01b03821660009081526001602052604081208054839290610acd908490610e42565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216610bc75760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610389565b6001600160a01b03821660009081526001602052604090205481811015610c3b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610389565b6001600160a01b0383166000908152600160205260408120838303905560058054849290610c6a908490610e5a565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200161085c565b80356001600160a01b0381168114610cc457600080fd5b919050565b600060208284031215610cda578081fd5b610ce382610cad565b9392505050565b60008060408385031215610cfc578081fd5b610d0583610cad565b9150610d1360208401610cad565b90509250929050565b600080600060608486031215610d30578081fd5b610d3984610cad565b9250610d4760208501610cad565b9150604084013590509250925092565b60008060408385031215610d69578182fd5b610d7283610cad565b915060208301358015158114610d86578182fd5b809150509250929050565b60008060408385031215610da3578182fd5b610dac83610cad565b946020939093013593505050565b6000602080835283518082850152825b81811015610de657858101830151858201604001528201610dca565b81811115610df75783604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115610e5557610e55610eac565b500190565b600082821015610e6c57610e6c610eac565b500390565b600181811c90821680610e8557607f821691505b60208210811415610ea657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220e94371d620219896461f65e9d42f0ed53d26830a1555b34265d5a31e1d15654464736f6c63430008040033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101165760003560e01c8063715018a6116100a2578063a457c2d711610071578063a457c2d714610232578063a9059cbb14610245578063dd62ed3e14610258578063e0dba60f14610291578063f2fde38b146102a457600080fd5b8063715018a6146101f45780638da5cb5b146101fc57806395d89b41146102175780639dc29fac1461021f57600080fd5b806323b872dd116100e957806323b872dd14610183578063313ce5671461019657806339509351146101a557806340c10f19146101b857806370a08231146101cb57600080fd5b806306fdde031461011b578063095ea7b3146101395780631351cf511461015c57806318160ddd14610171575b600080fd5b6101236102b7565b6040516101309190610dba565b60405180910390f35b61014c610147366004610d91565b610349565b6040519015158152602001610130565b61016f61016a366004610d57565b61035f565b005b6005545b604051908152602001610130565b61014c610191366004610d1c565b6103bd565b60405160128152602001610130565b61014c6101b3366004610d91565b61047f565b61016f6101c6366004610d91565b6104bb565b6101756101d9366004610cc9565b6001600160a01b031660009081526001602052604090205490565b61016f610519565b6000546040516001600160a01b039091168152602001610130565b61012361054f565b61016f61022d366004610d91565b61055e565b61014c610240366004610d91565b6105b8565b61014c610253366004610d91565b610647565b610175610266366004610cea565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b61016f61029f366004610d57565b610654565b61016f6102b2366004610cc9565b6106a9565b6060600680546102c690610e71565b80601f01602080910402602001604051908101604052809291908181526020018280546102f290610e71565b801561033f5780601f106103145761010080835404028352916020019161033f565b820191906000526020600020905b81548152906001019060200180831161032257829003601f168201915b5050505050905090565b6000610356338484610744565b50600192915050565b6000546001600160a01b031633146103925760405162461bcd60e51b815260040161038990610e0d565b60405180910390fd5b6001600160a01b03919091166000908152600360205260409020805460ff1916911515919091179055565b60006103ca848484610869565b3360009081526003602052604090205460ff16610475576001600160a01b0384166000908152600260209081526040808320338452909152902054828110156104665760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610389565b6104738533858403610744565b505b5060019392505050565b3360008181526002602090815260408083206001600160a01b038716845290915281205490916103569185906104b6908690610e42565b610744565b3360009081526004602052604090205460ff1661050b5760405162461bcd60e51b815260206004820152600e60248201526d2727aa2fa1a7a72a2927a62622a960911b6044820152606401610389565b6105158282610a38565b5050565b6000546001600160a01b031633146105435760405162461bcd60e51b815260040161038990610e0d565b61054d6000610b17565b565b6060600780546102c690610e71565b3360009081526004602052604090205460ff166105ae5760405162461bcd60e51b815260206004820152600e60248201526d2727aa2fa1a7a72a2927a62622a960911b6044820152606401610389565b6105158282610b67565b3360009081526002602090815260408083206001600160a01b03861684529091528120548281101561063a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610389565b6104753385858403610744565b6000610356338484610869565b6000546001600160a01b0316331461067e5760405162461bcd60e51b815260040161038990610e0d565b6001600160a01b03919091166000908152600460205260409020805460ff1916911515919091179055565b6000546001600160a01b031633146106d35760405162461bcd60e51b815260040161038990610e0d565b6001600160a01b0381166107385760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610389565b61074181610b17565b50565b6001600160a01b0383166107a65760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610389565b6001600160a01b0382166108075760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610389565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166108cd5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610389565b6001600160a01b03821661092f5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610389565b6001600160a01b038316600090815260016020526040902054818110156109a75760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610389565b6001600160a01b038085166000908152600160205260408082208585039055918516815290812080548492906109de908490610e42565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610a2a91815260200190565b60405180910390a350505050565b6001600160a01b038216610a8e5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610389565b8060056000828254610aa09190610e42565b90915550506001600160a01b03821660009081526001602052604081208054839290610acd908490610e42565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216610bc75760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610389565b6001600160a01b03821660009081526001602052604090205481811015610c3b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610389565b6001600160a01b0383166000908152600160205260408120838303905560058054849290610c6a908490610e5a565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200161085c565b80356001600160a01b0381168114610cc457600080fd5b919050565b600060208284031215610cda578081fd5b610ce382610cad565b9392505050565b60008060408385031215610cfc578081fd5b610d0583610cad565b9150610d1360208401610cad565b90509250929050565b600080600060608486031215610d30578081fd5b610d3984610cad565b9250610d4760208501610cad565b9150604084013590509250925092565b60008060408385031215610d69578182fd5b610d7283610cad565b915060208301358015158114610d86578182fd5b809150509250929050565b60008060408385031215610da3578182fd5b610dac83610cad565b946020939093013593505050565b6000602080835283518082850152825b81811015610de657858101830151858201604001528201610dca565b81811115610df75783604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115610e5557610e55610eac565b500190565b600082821015610e6c57610e6c610eac565b500390565b600181811c90821680610e8557607f821691505b60208210811415610ea657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220e94371d620219896461f65e9d42f0ed53d26830a1555b34265d5a31e1d15654464736f6c63430008040033
Deployed Bytecode Sourcemap
29796:6112:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31210:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32152:169;;;;;;:::i;:::-;;:::i;:::-;;;2025:14:1;;2018:22;2000:41;;1988:2;1973:18;32152:169:0;1955:92:1;30942:161:0;;;;;;:::i;:::-;;:::i;:::-;;31543:108;31631:12;;31543:108;;;7922:25:1;;;7910:2;7895:18;31543:108:0;7877:76:1;32333:572:0;;;;;;:::i;:::-;;:::i;31438:93::-;;;31521:2;8100:36:1;;8088:2;8073:18;31438:93:0;8055:87:1;32917:215:0;;;;;;:::i;:::-;;:::i;30483:104::-;;;;;;:::i;:::-;;:::i;31663:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;31764:18:0;31737:7;31764:18;;;:9;:18;;;;;;;31663:127;29092:94;;;:::i;28441:87::-;28487:7;28514:6;28441:87;;-1:-1:-1;;;;;28514:6:0;;;1798:51:1;;1786:2;1771:18;28441:87:0;1753:102:1;31322:104:0;;;:::i;30595:::-;;;;;;:::i;:::-;;:::i;33144:413::-;;;;;;:::i;:::-;;:::i;31802:175::-;;;;;;:::i;:::-;;:::i;31989:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;32105:18:0;;;32078:7;32105:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;31989:151;30802:132;;;;;;:::i;:::-;;:::i;29341:192::-;;;;;;:::i;:::-;;:::i;31210:100::-;31264:13;31297:5;31290:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31210:100;:::o;32152:169::-;32235:4;32252:39;15275:10;32275:7;32284:6;32252:8;:39::i;:::-;-1:-1:-1;32309:4:0;32152:169;;;;:::o;30942:161::-;28487:7;28514:6;-1:-1:-1;;;;;28514:6:0;15275:10;28661:23;28653:68;;;;-1:-1:-1;;;28653:68:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;;;;;31044:38:0;;;::::1;;::::0;;;:19:::1;:38;::::0;;;;:51;;-1:-1:-1;;31044:51:0::1;::::0;::::1;;::::0;;;::::1;::::0;;30942:161::o;32333:572::-;32473:4;32490:36;32500:6;32508:9;32519:6;32490:9;:36::i;:::-;32564:10;32544:31;;;;:19;:31;;;;;;;;32539:335;;-1:-1:-1;;;;;32619:19:0;;32592:24;32619:19;;;:11;:19;;;;;;;;15275:10;32619:33;;;;;;;;32675:26;;;;32667:79;;;;-1:-1:-1;;;32667:79:0;;4886:2:1;32667:79:0;;;4868:21:1;4925:2;4905:18;;;4898:30;4964:34;4944:18;;;4937:62;-1:-1:-1;;;5015:18:1;;;5008:38;5063:19;;32667:79:0;4858:230:1;32667:79:0;32790:57;32799:6;15275:10;32840:6;32821:16;:25;32790:8;:57::i;:::-;32539:335;;-1:-1:-1;32893:4:0;32333:572;;;;;:::o;32917:215::-;15275:10;33005:4;33054:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;33054:34:0;;;;;;;;;;33005:4;;33022:80;;33045:7;;33054:47;;33091:10;;33054:47;:::i;:::-;33022:8;:80::i;30483:104::-;30302:10;30290:23;;;;:11;:23;;;;;;;;30282:50;;;;-1:-1:-1;;;30282:50:0;;6058:2:1;30282:50:0;;;6040:21:1;6097:2;6077:18;;;6070:30;-1:-1:-1;;;6116:18:1;;;6109:44;6170:18;;30282:50:0;6030:164:1;30282:50:0;30560:19:::1;30566:4;30572:6;30560:5;:19::i;:::-;30483:104:::0;;:::o;29092:94::-;28487:7;28514:6;-1:-1:-1;;;;;28514:6:0;15275:10;28661:23;28653:68;;;;-1:-1:-1;;;28653:68:0;;;;;;;:::i;:::-;29157:21:::1;29175:1;29157:9;:21::i;:::-;29092:94::o:0;31322:104::-;31378:13;31411:7;31404:14;;;;;:::i;30595:104::-;30302:10;30290:23;;;;:11;:23;;;;;;;;30282:50;;;;-1:-1:-1;;;30282:50:0;;6058:2:1;30282:50:0;;;6040:21:1;6097:2;6077:18;;;6070:30;-1:-1:-1;;;6116:18:1;;;6109:44;6170:18;;30282:50:0;6030:164:1;30282:50:0;30672:19:::1;30678:4;30684:6;30672:5;:19::i;33144:413::-:0;15275:10;33237:4;33281:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;33281:34:0;;;;;;;;;;33334:35;;;;33326:85;;;;-1:-1:-1;;;33326:85:0;;7212:2:1;33326:85:0;;;7194:21:1;7251:2;7231:18;;;7224:30;7290:34;7270:18;;;7263:62;-1:-1:-1;;;7341:18:1;;;7334:35;7386:19;;33326:85:0;7184:227:1;33326:85:0;33447:67;15275:10;33470:7;33498:15;33479:16;:34;33447:8;:67::i;31802:175::-;31888:4;31905:42;15275:10;31929:9;31940:6;31905:9;:42::i;30802:132::-;28487:7;28514:6;-1:-1:-1;;;;;28514:6:0;15275:10;28661:23;28653:68;;;;-1:-1:-1;;;28653:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30890:23:0;;;::::1;;::::0;;;:11:::1;:23;::::0;;;;:36;;-1:-1:-1;;30890:36:0::1;::::0;::::1;;::::0;;;::::1;::::0;;30802:132::o;29341:192::-;28487:7;28514:6;-1:-1:-1;;;;;28514:6:0;15275:10;28661:23;28653:68;;;;-1:-1:-1;;;28653:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29430:22:0;::::1;29422:73;;;::::0;-1:-1:-1;;;29422:73:0;;3669:2:1;29422:73:0::1;::::0;::::1;3651:21:1::0;3708:2;3688:18;;;3681:30;3747:34;3727:18;;;3720:62;-1:-1:-1;;;3798:18:1;;;3791:36;3844:19;;29422:73:0::1;3641:228:1::0;29422:73:0::1;29506:19;29516:8;29506:9;:19::i;:::-;29341:192:::0;:::o;35328:380::-;-1:-1:-1;;;;;35464:19:0;;35456:68;;;;-1:-1:-1;;;35456:68:0;;6807:2:1;35456:68:0;;;6789:21:1;6846:2;6826:18;;;6819:30;6885:34;6865:18;;;6858:62;-1:-1:-1;;;6936:18:1;;;6929:34;6980:19;;35456:68:0;6779:226:1;35456:68:0;-1:-1:-1;;;;;35543:21:0;;35535:68;;;;-1:-1:-1;;;35535:68:0;;4076:2:1;35535:68:0;;;4058:21:1;4115:2;4095:18;;;4088:30;4154:34;4134:18;;;4127:62;-1:-1:-1;;;4205:18:1;;;4198:32;4247:19;;35535:68:0;4048:224:1;35535:68:0;-1:-1:-1;;;;;35616:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;35668:32;;7922:25:1;;;35668:32:0;;7895:18:1;35668:32:0;;;;;;;;35328:380;;;:::o;33569:733::-;-1:-1:-1;;;;;33709:20:0;;33701:70;;;;-1:-1:-1;;;33701:70:0;;6401:2:1;33701:70:0;;;6383:21:1;6440:2;6420:18;;;6413:30;6479:34;6459:18;;;6452:62;-1:-1:-1;;;6530:18:1;;;6523:35;6575:19;;33701:70:0;6373:227:1;33701:70:0;-1:-1:-1;;;;;33790:23:0;;33782:71;;;;-1:-1:-1;;;33782:71:0;;2862:2:1;33782:71:0;;;2844:21:1;2901:2;2881:18;;;2874:30;2940:34;2920:18;;;2913:62;-1:-1:-1;;;2991:18:1;;;2984:33;3034:19;;33782:71:0;2834:225:1;33782:71:0;-1:-1:-1;;;;;33950:17:0;;33926:21;33950:17;;;:9;:17;;;;;;33986:23;;;;33978:74;;;;-1:-1:-1;;;33978:74:0;;4479:2:1;33978:74:0;;;4461:21:1;4518:2;4498:18;;;4491:30;4557:34;4537:18;;;4530:62;-1:-1:-1;;;4608:18:1;;;4601:36;4654:19;;33978:74:0;4451:228:1;33978:74:0;-1:-1:-1;;;;;34088:17:0;;;;;;;:9;:17;;;;;;34108:22;;;34088:42;;34152:20;;;;;;;;:30;;34124:6;;34088:17;34152:30;;34124:6;;34152:30;:::i;:::-;;;;;;;;34217:9;-1:-1:-1;;;;;34200:35:0;34209:6;-1:-1:-1;;;;;34200:35:0;;34228:6;34200:35;;;;7922:25:1;;7910:2;7895:18;;7877:76;34200:35:0;;;;;;;;33569:733;;;;:::o;34314:399::-;-1:-1:-1;;;;;34398:21:0;;34390:65;;;;-1:-1:-1;;;34390:65:0;;7618:2:1;34390:65:0;;;7600:21:1;7657:2;7637:18;;;7630:30;7696:33;7676:18;;;7669:61;7747:18;;34390:65:0;7590:181:1;34390:65:0;34546:6;34530:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;34563:18:0;;;;;;:9;:18;;;;;:28;;34585:6;;34563:18;:28;;34585:6;;34563:28;:::i;:::-;;;;-1:-1:-1;;34607:37:0;;7922:25:1;;;-1:-1:-1;;;;;34607:37:0;;;34624:1;;34607:37;;7910:2:1;7895:18;34607:37:0;;;;;;;30483:104;;:::o;29541:173::-;29597:16;29616:6;;-1:-1:-1;;;;;29633:17:0;;;-1:-1:-1;;;;;;29633:17:0;;;;;;29666:40;;29616:6;;;;;;;29666:40;;29597:16;29666:40;29541:173;;:::o;34725:591::-;-1:-1:-1;;;;;34809:21:0;;34801:67;;;;-1:-1:-1;;;34801:67:0;;5656:2:1;34801:67:0;;;5638:21:1;5695:2;5675:18;;;5668:30;5734:34;5714:18;;;5707:62;-1:-1:-1;;;5785:18:1;;;5778:31;5826:19;;34801:67:0;5628:223:1;34801:67:0;-1:-1:-1;;;;;34968:18:0;;34943:22;34968:18;;;:9;:18;;;;;;35005:24;;;;34997:71;;;;-1:-1:-1;;;34997:71:0;;3266:2:1;34997:71:0;;;3248:21:1;3305:2;3285:18;;;3278:30;3344:34;3324:18;;;3317:62;-1:-1:-1;;;3395:18:1;;;3388:32;3437:19;;34997:71:0;3238:224:1;34997:71:0;-1:-1:-1;;;;;35104:18:0;;;;;;:9;:18;;;;;35125:23;;;35104:44;;35170:12;:22;;35142:6;;35104:18;35170:22;;35142:6;;35170:22;:::i;:::-;;;;-1:-1:-1;;35210:37:0;;7922:25:1;;;35236:1:0;;-1:-1:-1;;;;;35210:37:0;;;;;7910:2:1;7895:18;35210:37:0;7877:76:1;14:173;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:2;;177:1;174;167:12;111:2;63:124;;;:::o;192:196::-;251:6;304:2;292:9;283:7;279:23;275:32;272:2;;;325:6;317;310:22;272:2;353:29;372:9;353:29;:::i;:::-;343:39;262:126;-1:-1:-1;;;262:126:1:o;393:270::-;461:6;469;522:2;510:9;501:7;497:23;493:32;490:2;;;543:6;535;528:22;490:2;571:29;590:9;571:29;:::i;:::-;561:39;;619:38;653:2;642:9;638:18;619:38;:::i;:::-;609:48;;480:183;;;;;:::o;668:338::-;745:6;753;761;814:2;802:9;793:7;789:23;785:32;782:2;;;835:6;827;820:22;782:2;863:29;882:9;863:29;:::i;:::-;853:39;;911:38;945:2;934:9;930:18;911:38;:::i;:::-;901:48;;996:2;985:9;981:18;968:32;958:42;;772:234;;;;;:::o;1011:367::-;1076:6;1084;1137:2;1125:9;1116:7;1112:23;1108:32;1105:2;;;1158:6;1150;1143:22;1105:2;1186:29;1205:9;1186:29;:::i;:::-;1176:39;;1265:2;1254:9;1250:18;1237:32;1312:5;1305:13;1298:21;1291:5;1288:32;1278:2;;1339:6;1331;1324:22;1278:2;1367:5;1357:15;;;1095:283;;;;;:::o;1383:264::-;1451:6;1459;1512:2;1500:9;1491:7;1487:23;1483:32;1480:2;;;1533:6;1525;1518:22;1480:2;1561:29;1580:9;1561:29;:::i;:::-;1551:39;1637:2;1622:18;;;;1609:32;;-1:-1:-1;;;1470:177:1:o;2052:603::-;2164:4;2193:2;2222;2211:9;2204:21;2254:6;2248:13;2297:6;2292:2;2281:9;2277:18;2270:34;2322:4;2335:140;2349:6;2346:1;2343:13;2335:140;;;2444:14;;;2440:23;;2434:30;2410:17;;;2429:2;2406:26;2399:66;2364:10;;2335:140;;;2493:6;2490:1;2487:13;2484:2;;;2563:4;2558:2;2549:6;2538:9;2534:22;2530:31;2523:45;2484:2;-1:-1:-1;2639:2:1;2618:15;-1:-1:-1;;2614:29:1;2599:45;;;;2646:2;2595:54;;2173:482;-1:-1:-1;;;2173:482:1:o;5093:356::-;5295:2;5277:21;;;5314:18;;;5307:30;5373:34;5368:2;5353:18;;5346:62;5440:2;5425:18;;5267:182::o;8147:128::-;8187:3;8218:1;8214:6;8211:1;8208:13;8205:2;;;8224:18;;:::i;:::-;-1:-1:-1;8260:9:1;;8195:80::o;8280:125::-;8320:4;8348:1;8345;8342:8;8339:2;;;8353:18;;:::i;:::-;-1:-1:-1;8390:9:1;;8329:76::o;8410:380::-;8489:1;8485:12;;;;8532;;;8553:2;;8607:4;8599:6;8595:17;8585:27;;8553:2;8660;8652:6;8649:14;8629:18;8626:38;8623:2;;;8706:10;8701:3;8697:20;8694:1;8687:31;8741:4;8738:1;8731:15;8769:4;8766:1;8759:15;8623:2;;8465:325;;;:::o;8795:127::-;8856:10;8851:3;8847:20;8844:1;8837:31;8887:4;8884:1;8877:15;8911:4;8908:1;8901:15
Swarm Source
ipfs://e94371d620219896461f65e9d42f0ed53d26830a1555b34265d5a31e1d156544
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.