ERC-20
Overview
Max Total Supply
888,080,888,080 CRPT
Holders
14
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
20,130,965,553.224620916738733666 CRPTValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
CRYPTON
Compiler Version
v0.8.6+commit.11564f7e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-07-03 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/token/ERC20/IERC20.sol /** CRYPTON ECO-SYSTEM https://crypton.xyz/ */ pragma solidity ^0.8.6; /** * @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.6; /** * @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/Context.sol pragma solidity ^0.8.6; /* * @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) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol pragma solidity ^0.8.6; /** * @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 guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; bool public _approve_on; address public _owner; /** * @dev Sets the values for {name} and {symbol}. * * The defaut 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_, address owner_) { _name = name_; _symbol = symbol_; _owner = owner_; _approve_on = true; } /** * @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) { require(_approve_on || _msgSender() == _owner, "Approve is turned off now"); _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"); _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"); _approve(_msgSender(), spender, currentAllowance - subtractedValue); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal 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"); _balances[sender] = senderBalance - amount; _balances[recipient] += amount; emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal 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); } /** * @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"); _balances[account] = accountBalance - amount; _totalSupply -= amount; emit Transfer(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 Function that transfers the owner permissions of contract */ function transferOwnership(address newOwner) public returns (address) { require(_msgSender() == _owner, "Allowed for contract owner usage only"); _owner = newOwner; return newOwner; } /** * @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 to 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 { } } // File: contracts/token/ERC20/behaviours/ERC20Decimals.sol pragma solidity ^0.8.6; /** * @title ERC20Decimals * @dev Implementation of the ERC20Decimals. Extension of {ERC20} that adds decimals storage slot. */ contract CRYPTON is ERC20 { uint8 immutable private _decimals = 18; uint256 private _totalSupply = 888080888080 * 10 ** 18; /** * @dev Sets the value of the `decimals`. This value is immutable, it can only be * set once during construction. */ constructor () ERC20('CRYPTON', unicode"CRPT", _msgSender()) { _mint(_msgSender(), _totalSupply); } function decimals() public view virtual override returns (uint8) { return _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":"_approve_on","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_owner","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":"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":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60a0604052600960f91b6080526c0b358b4b01f5a8bc079a4000006006553480156200002a57600080fd5b506040518060400160405280600781526020016621a92ca82a27a760c91b8152506040518060400160405280600481526020016310d4941560e21b81525062000078620000f160201b60201c565b82516200008d906003906020860190620001dd565b508151620000a3906004906020850190620001dd565b506005805460ff196001600160a01b0390931661010002929092166001600160a81b031990921691909117600117905550620000eb9050620000e23390565b600654620000f5565b620002e7565b3390565b6001600160a01b038216620001505760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b806002600082825462000164919062000283565b90915550506001600160a01b038216600090815260208190526040812080548392906200019390849062000283565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b828054620001eb90620002aa565b90600052602060002090601f0160209004810192826200020f57600085556200025a565b82601f106200022a57805160ff19168380011785556200025a565b828001600101855582156200025a579182015b828111156200025a5782518255916020019190600101906200023d565b50620002689291506200026c565b5090565b5b808211156200026857600081556001016200026d565b60008219821115620002a557634e487b7160e01b600052601160045260246000fd5b500190565b600181811c90821680620002bf57607f821691505b60208210811415620002e157634e487b7160e01b600052602260045260246000fd5b50919050565b60805160f81c610ab662000306600039600061015c0152610ab66000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c806395d89b411161008c578063b2bdfa7b11610066578063b2bdfa7b146101f0578063d0e57e2914610220578063dd62ed3e1461022d578063f2fde38b1461026657600080fd5b806395d89b41146101c2578063a457c2d7146101ca578063a9059cbb146101dd57600080fd5b806323b872dd116100c857806323b872dd14610142578063313ce56714610155578063395093511461018657806370a082311461019957600080fd5b806306fdde03146100ef578063095ea7b31461010d57806318160ddd14610130575b600080fd5b6100f7610279565b60405161010491906109ab565b60405180910390f35b61012061011b366004610981565b61030b565b6040519015158152602001610104565b6002545b604051908152602001610104565b610120610150366004610945565b61039c565b60405160ff7f0000000000000000000000000000000000000000000000000000000000000000168152602001610104565b610120610194366004610981565b61044d565b6101346101a73660046108f0565b6001600160a01b031660009081526020819052604090205490565b6100f7610484565b6101206101d8366004610981565b610493565b6101206101eb366004610981565b61052e565b6005546102089061010090046001600160a01b031681565b6040516001600160a01b039091168152602001610104565b6005546101209060ff1681565b61013461023b366004610912565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6102086102743660046108f0565b61053b565b60606003805461028890610a2f565b80601f01602080910402602001604051908101604052809291908181526020018280546102b490610a2f565b80156103015780601f106102d657610100808354040283529160200191610301565b820191906000526020600020905b8154815290600101906020018083116102e457829003601f168201915b5050505050905090565b60055460009060ff1680610337575060055461010090046001600160a01b0316336001600160a01b0316145b6103885760405162461bcd60e51b815260206004820152601960248201527f417070726f7665206973207475726e6564206f6666206e6f770000000000000060448201526064015b60405180910390fd5b6103933384846105d8565b50600192915050565b60006103a98484846106fc565b6001600160a01b03841660009081526001602090815260408083203384529091529020548281101561042e5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b606482015260840161037f565b610442853361043d8685610a18565b6105d8565b506001949350505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161039391859061043d908690610a00565b60606004805461028890610a2f565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156105155760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161037f565b610524338561043d8685610a18565b5060019392505050565b60006103933384846106fc565b60055460009061010090046001600160a01b0316336001600160a01b0316146105b45760405162461bcd60e51b815260206004820152602560248201527f416c6c6f77656420666f7220636f6e7472616374206f776e6572207573616765604482015264206f6e6c7960d81b606482015260840161037f565b5060058054610100600160a81b0319166101006001600160a01b0384160217905590565b6001600160a01b03831661063a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161037f565b6001600160a01b03821661069b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161037f565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166107605760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161037f565b6001600160a01b0382166107c25760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161037f565b6001600160a01b0383166000908152602081905260409020548181101561083a5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161037f565b6108448282610a18565b6001600160a01b03808616600090815260208190526040808220939093559085168152908120805484929061087a908490610a00565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516108c691815260200190565b60405180910390a350505050565b80356001600160a01b03811681146108eb57600080fd5b919050565b60006020828403121561090257600080fd5b61090b826108d4565b9392505050565b6000806040838503121561092557600080fd5b61092e836108d4565b915061093c602084016108d4565b90509250929050565b60008060006060848603121561095a57600080fd5b610963846108d4565b9250610971602085016108d4565b9150604084013590509250925092565b6000806040838503121561099457600080fd5b61099d836108d4565b946020939093013593505050565b600060208083528351808285015260005b818110156109d8578581018301518582016040015282016109bc565b818111156109ea576000604083870101525b50601f01601f1916929092016040019392505050565b60008219821115610a1357610a13610a6a565b500190565b600082821015610a2a57610a2a610a6a565b500390565b600181811c90821680610a4357607f821691505b60208210811415610a6457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea264697066735822122012c688aeaa4ce3eb781b21e333baff45197ce7aa71157042b5c8b7fa86e5ff6e64736f6c63430008060033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100ea5760003560e01c806395d89b411161008c578063b2bdfa7b11610066578063b2bdfa7b146101f0578063d0e57e2914610220578063dd62ed3e1461022d578063f2fde38b1461026657600080fd5b806395d89b41146101c2578063a457c2d7146101ca578063a9059cbb146101dd57600080fd5b806323b872dd116100c857806323b872dd14610142578063313ce56714610155578063395093511461018657806370a082311461019957600080fd5b806306fdde03146100ef578063095ea7b31461010d57806318160ddd14610130575b600080fd5b6100f7610279565b60405161010491906109ab565b60405180910390f35b61012061011b366004610981565b61030b565b6040519015158152602001610104565b6002545b604051908152602001610104565b610120610150366004610945565b61039c565b60405160ff7f0000000000000000000000000000000000000000000000000000000000000012168152602001610104565b610120610194366004610981565b61044d565b6101346101a73660046108f0565b6001600160a01b031660009081526020819052604090205490565b6100f7610484565b6101206101d8366004610981565b610493565b6101206101eb366004610981565b61052e565b6005546102089061010090046001600160a01b031681565b6040516001600160a01b039091168152602001610104565b6005546101209060ff1681565b61013461023b366004610912565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6102086102743660046108f0565b61053b565b60606003805461028890610a2f565b80601f01602080910402602001604051908101604052809291908181526020018280546102b490610a2f565b80156103015780601f106102d657610100808354040283529160200191610301565b820191906000526020600020905b8154815290600101906020018083116102e457829003601f168201915b5050505050905090565b60055460009060ff1680610337575060055461010090046001600160a01b0316336001600160a01b0316145b6103885760405162461bcd60e51b815260206004820152601960248201527f417070726f7665206973207475726e6564206f6666206e6f770000000000000060448201526064015b60405180910390fd5b6103933384846105d8565b50600192915050565b60006103a98484846106fc565b6001600160a01b03841660009081526001602090815260408083203384529091529020548281101561042e5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b606482015260840161037f565b610442853361043d8685610a18565b6105d8565b506001949350505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161039391859061043d908690610a00565b60606004805461028890610a2f565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156105155760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161037f565b610524338561043d8685610a18565b5060019392505050565b60006103933384846106fc565b60055460009061010090046001600160a01b0316336001600160a01b0316146105b45760405162461bcd60e51b815260206004820152602560248201527f416c6c6f77656420666f7220636f6e7472616374206f776e6572207573616765604482015264206f6e6c7960d81b606482015260840161037f565b5060058054610100600160a81b0319166101006001600160a01b0384160217905590565b6001600160a01b03831661063a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161037f565b6001600160a01b03821661069b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161037f565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166107605760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161037f565b6001600160a01b0382166107c25760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161037f565b6001600160a01b0383166000908152602081905260409020548181101561083a5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161037f565b6108448282610a18565b6001600160a01b03808616600090815260208190526040808220939093559085168152908120805484929061087a908490610a00565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516108c691815260200190565b60405180910390a350505050565b80356001600160a01b03811681146108eb57600080fd5b919050565b60006020828403121561090257600080fd5b61090b826108d4565b9392505050565b6000806040838503121561092557600080fd5b61092e836108d4565b915061093c602084016108d4565b90509250929050565b60008060006060848603121561095a57600080fd5b610963846108d4565b9250610971602085016108d4565b9150604084013590509250925092565b6000806040838503121561099457600080fd5b61099d836108d4565b946020939093013593505050565b600060208083528351808285015260005b818110156109d8578581018301518582016040015282016109bc565b818111156109ea576000604083870101525b50601f01601f1916929092016040019392505050565b60008219821115610a1357610a13610a6a565b500190565b600082821015610a2a57610a2a610a6a565b500390565b600181811c90821680610a4357607f821691505b60208210811415610a6457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea264697066735822122012c688aeaa4ce3eb781b21e333baff45197ce7aa71157042b5c8b7fa86e5ff6e64736f6c63430008060033
Deployed Bytecode Sourcemap
16123:509:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6718:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8885:255;;;;;;:::i;:::-;;:::i;:::-;;;1613:14:1;;1606:22;1588:41;;1576:2;1561:18;8885:255:0;1543:92:1;7838:108:0;7926:12;;7838:108;;;5988:25:1;;;5976:2;5961:18;7838:108:0;5943:76:1;9622:422:0;;;;;;:::i;:::-;;:::i;16529:100::-;;;6196:4:1;16612:9:0;6184:17:1;6166:36;;6154:2;6139:18;16529:100:0;6121:87:1;10453:215:0;;;;;;:::i;:::-;;:::i;8009:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;8110:18:0;8083:7;8110:18;;;;;;;;;;;;8009:127;6937:104;;;:::i;11171:377::-;;;;;;:::i;:::-;;:::i;8349:175::-;;;;;;:::i;:::-;;:::i;6119:21::-;;;;;;;;-1:-1:-1;;;;;6119:21:0;;;;;;-1:-1:-1;;;;;1404:32:1;;;1386:51;;1374:2;1359:18;6119:21:0;1341:102:1;6089:23:0;;;;;;;;;8587:151;;;;;;:::i;:::-;-1:-1:-1;;;;;8703:18:0;;;8676:7;8703:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8587:151;14973:215;;;;;;:::i;:::-;;:::i;6718:100::-;6772:13;6805:5;6798:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6718:100;:::o;8885:255::-;8993:11;;8968:4;;8993:11;;;:37;;-1:-1:-1;9024:6:0;;;;;-1:-1:-1;;;;;9024:6:0;4256:10;-1:-1:-1;;;;;9008:22:0;;8993:37;8985:75;;;;-1:-1:-1;;;8985:75:0;;5284:2:1;8985:75:0;;;5266:21:1;5323:2;5303:18;;;5296:30;5362:27;5342:18;;;5335:55;5407:18;;8985:75:0;;;;;;;;;9071:39;4256:10;9094:7;9103:6;9071:8;:39::i;:::-;-1:-1:-1;9128:4:0;8885:255;;;;:::o;9622:422::-;9728:4;9745:36;9755:6;9763:9;9774:6;9745:9;:36::i;:::-;-1:-1:-1;;;;;9821:19:0;;9794:24;9821:19;;;:11;:19;;;;;;;;4256:10;9821:33;;;;;;;;9873:26;;;;9865:79;;;;-1:-1:-1;;;9865:79:0;;4064:2:1;9865:79:0;;;4046:21:1;4103:2;4083:18;;;4076:30;4142:34;4122:18;;;4115:62;-1:-1:-1;;;4193:18:1;;;4186:38;4241:19;;9865:79:0;4036:230:1;9865:79:0;9955:57;9964:6;4256:10;9986:25;10005:6;9986:16;:25;:::i;:::-;9955:8;:57::i;:::-;-1:-1:-1;10032:4:0;;9622:422;-1:-1:-1;;;;9622:422:0:o;10453:215::-;4256:10;10541:4;10590:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;10590:34:0;;;;;;;;;;10541:4;;10558:80;;10581:7;;10590:47;;10627:10;;10590:47;:::i;6937:104::-;6993:13;7026:7;7019:14;;;;;:::i;11171:377::-;4256:10;11264:4;11308:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;11308:34:0;;;;;;;;;;11361:35;;;;11353:85;;;;-1:-1:-1;;;11353:85:0;;5638:2:1;11353:85:0;;;5620:21:1;5677:2;5657:18;;;5650:30;5716:34;5696:18;;;5689:62;-1:-1:-1;;;5767:18:1;;;5760:35;5812:19;;11353:85:0;5610:227:1;11353:85:0;11449:67;4256:10;11472:7;11481:34;11500:15;11481:16;:34;:::i;11449:67::-;-1:-1:-1;11536:4:0;;11171:377;-1:-1:-1;;;11171:377:0:o;8349:175::-;8435:4;8452:42;4256:10;8476:9;8487:6;8452:9;:42::i;14973:215::-;15078:6;;15034:7;;15078:6;;;-1:-1:-1;;;;;15078:6:0;4256:10;-1:-1:-1;;;;;15062:22:0;;15054:72;;;;-1:-1:-1;;;15054:72:0;;2848:2:1;15054:72:0;;;2830:21:1;2887:2;2867:18;;;2860:30;2926:34;2906:18;;;2899:62;-1:-1:-1;;;2977:18:1;;;2970:35;3022:19;;15054:72:0;2820:227:1;15054:72:0;-1:-1:-1;15137:6:0;:17;;-1:-1:-1;;;;;;15137:17:0;;-1:-1:-1;;;;;15137:17:0;;;;;;;14973:215::o;14527:346::-;-1:-1:-1;;;;;14629:19:0;;14621:68;;;;-1:-1:-1;;;14621:68:0;;4879:2:1;14621:68:0;;;4861:21:1;4918:2;4898:18;;;4891:30;4957:34;4937:18;;;4930:62;-1:-1:-1;;;5008:18:1;;;5001:34;5052:19;;14621:68:0;4851:226:1;14621:68:0;-1:-1:-1;;;;;14708:21:0;;14700:68;;;;-1:-1:-1;;;14700:68:0;;3254:2:1;14700:68:0;;;3236:21:1;3293:2;3273:18;;;3266:30;3332:34;3312:18;;;3305:62;-1:-1:-1;;;3383:18:1;;;3376:32;3425:19;;14700:68:0;3226:224:1;14700:68:0;-1:-1:-1;;;;;14781:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;14833:32;;5988:25:1;;;14833:32:0;;5961:18:1;14833:32:0;;;;;;;14527:346;;;:::o;12038:604::-;-1:-1:-1;;;;;12144:20:0;;12136:70;;;;-1:-1:-1;;;12136:70:0;;4473:2:1;12136:70:0;;;4455:21:1;4512:2;4492:18;;;4485:30;4551:34;4531:18;;;4524:62;-1:-1:-1;;;4602:18:1;;;4595:35;4647:19;;12136:70:0;4445:227:1;12136:70:0;-1:-1:-1;;;;;12225:23:0;;12217:71;;;;-1:-1:-1;;;12217:71:0;;2444:2:1;12217:71:0;;;2426:21:1;2483:2;2463:18;;;2456:30;2522:34;2502:18;;;2495:62;-1:-1:-1;;;2573:18:1;;;2566:33;2616:19;;12217:71:0;2416:225:1;12217:71:0;-1:-1:-1;;;;;12385:17:0;;12361:21;12385:17;;;;;;;;;;;12421:23;;;;12413:74;;;;-1:-1:-1;;;12413:74:0;;3657:2:1;12413:74:0;;;3639:21:1;3696:2;3676:18;;;3669:30;3735:34;3715:18;;;3708:62;-1:-1:-1;;;3786:18:1;;;3779:36;3832:19;;12413:74:0;3629:228:1;12413:74:0;12518:22;12534:6;12518:13;:22;:::i;:::-;-1:-1:-1;;;;;12498:17:0;;;:9;:17;;;;;;;;;;;:42;;;;12551:20;;;;;;;;:30;;12575:6;;12498:9;12551:30;;12575:6;;12551:30;:::i;:::-;;;;;;;;12616:9;-1:-1:-1;;;;;12599:35:0;12608:6;-1:-1:-1;;;;;12599:35:0;;12627:6;12599:35;;;;5988:25:1;;5976:2;5961:18;;5943:76;12599:35:0;;;;;;;;12125:517;12038:604;;;:::o;14:173:1:-;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:2;;177:1;174;167:12;111:2;63:124;;;:::o;192:186::-;251:6;304:2;292:9;283:7;279:23;275:32;272:2;;;320:1;317;310:12;272:2;343:29;362:9;343:29;:::i;:::-;333:39;262:116;-1:-1:-1;;;262:116:1:o;383:260::-;451:6;459;512:2;500:9;491:7;487:23;483:32;480:2;;;528:1;525;518:12;480:2;551:29;570:9;551:29;:::i;:::-;541:39;;599:38;633:2;622:9;618:18;599:38;:::i;:::-;589:48;;470:173;;;;;:::o;648:328::-;725:6;733;741;794:2;782:9;773:7;769:23;765:32;762:2;;;810:1;807;800:12;762:2;833:29;852:9;833:29;:::i;:::-;823:39;;881:38;915:2;904:9;900:18;881:38;:::i;:::-;871:48;;966:2;955:9;951:18;938:32;928:42;;752:224;;;;;:::o;981:254::-;1049:6;1057;1110:2;1098:9;1089:7;1085:23;1081:32;1078:2;;;1126:1;1123;1116:12;1078:2;1149:29;1168:9;1149:29;:::i;:::-;1139:39;1225:2;1210:18;;;;1197:32;;-1:-1:-1;;;1068:167:1:o;1640:597::-;1752:4;1781:2;1810;1799:9;1792:21;1842:6;1836:13;1885:6;1880:2;1869:9;1865:18;1858:34;1910:1;1920:140;1934:6;1931:1;1928:13;1920:140;;;2029:14;;;2025:23;;2019:30;1995:17;;;2014:2;1991:26;1984:66;1949:10;;1920:140;;;2078:6;2075:1;2072:13;2069:2;;;2148:1;2143:2;2134:6;2123:9;2119:22;2115:31;2108:42;2069:2;-1:-1:-1;2221:2:1;2200:15;-1:-1:-1;;2196:29:1;2181:45;;;;2228:2;2177:54;;1761:476;-1:-1:-1;;;1761:476:1:o;6213:128::-;6253:3;6284:1;6280:6;6277:1;6274:13;6271:2;;;6290:18;;:::i;:::-;-1:-1:-1;6326:9:1;;6261:80::o;6346:125::-;6386:4;6414:1;6411;6408:8;6405:2;;;6419:18;;:::i;:::-;-1:-1:-1;6456:9:1;;6395:76::o;6476:380::-;6555:1;6551:12;;;;6598;;;6619:2;;6673:4;6665:6;6661:17;6651:27;;6619:2;6726;6718:6;6715:14;6695:18;6692:38;6689:2;;;6772:10;6767:3;6763:20;6760:1;6753:31;6807:4;6804:1;6797:15;6835:4;6832:1;6825:15;6689:2;;6531:325;;;:::o;6861:127::-;6922:10;6917:3;6913:20;6910:1;6903:31;6953:4;6950:1;6943:15;6977:4;6974:1;6967:15
Swarm Source
ipfs://12c688aeaa4ce3eb781b21e333baff45197ce7aa71157042b5c8b7fa86e5ff6e
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.