ERC-20
Overview
Max Total Supply
18,335,243 FOMC
Holders
2,017
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
FairoxMembershipCoin
Compiler Version
v0.7.6+commit.7338295f
Contract Source Code (Solidity Multiple files format)
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; import "./ERC20.sol"; import "./ERC20Capped.sol"; import './SafeMath.sol'; contract FairoxMembershipCoin is ERC20Capped { using SafeMath for uint256; uint256 public last_extracted; uint256 extractions = 0; address proposedOwner = address(0); address private _owner; constructor () ERC20("Fairox Membership Coin", "FOMC") ERC20Capped(25000000 * 1 ether) { _owner = msg.sender; emit OwnershipTransferred(address(0), msg.sender); // Set last_extracted to current block and initialize extaction until next year. last_extracted = block.timestamp; // Mint 80% of total supply for manual distribution/burn _mint(msg.sender, (20000000 * 1 ether)); } event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); event Burned(address indexed burner, uint256 amount); event Minted(address indexed rewarded, uint256 amount); event Extracted(address indexed rewarded, uint256 amount); // Burn function is a wrapper around the internal _burn function to remove owned coins. function burn(uint256 _amount) public returns (bool) { require(_amount > 0, "FOMCERC20: Cannot burn 0 tokens"); _burn(msg.sender, _amount); emit Burned(msg.sender, _amount); return true; } // Extract function will mint 2% of the total supply for the contract owner. // This function can only be accesed every year since the first extract. function extract() public onlyOwner { require(extractions < 10, "FOMCERC20: There has been already 10 extractions for the supply"); require(getNextExtractionAvailable() < block.timestamp, "FOMCERC20: Unable to extract on this period"); uint256 amount = 500000 * 1 ether; _mint(msg.sender, amount); emit Minted(msg.sender, amount); last_extracted = last_extracted.add(365 days); extractions = extractions.add(1); emit Extracted(msg.sender, amount); } function getNextExtractionAvailable() public view returns (uint256) { return last_extracted.add(365 days); } function proposeOwner(address _proposedOwner) public onlyOwner { require(msg.sender != _proposedOwner, "ERROR_CALLER_ALREADY_OWNER"); proposedOwner = _proposedOwner; } function claimOwnership() public { require(msg.sender == proposedOwner, "ERROR_NOT_PROPOSED_OWNER"); emit OwnershipTransferred(_owner, proposedOwner); _owner = proposedOwner; proposedOwner = address(0); } function owner() public view virtual returns (address) { return _owner; } modifier onlyOwner() { require(_owner == msg.sender, "Ownable: caller is not the owner"); _; } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <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 GSN 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 payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; import "./Context.sol"; import "./IERC20.sol"; import "./SafeMath.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 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 { using SafeMath for uint256; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for {name} and {symbol}, initializes {decimals} with * a default value of 18. * * To select a different value for {decimals}, use {_setupDecimals}. * * All three of these values are immutable: they can only be set once during * construction. */ constructor (string memory name_, string memory symbol_) public { _name = name_; _symbol = symbol_; _decimals = 18; } /** * @dev Returns the name of the token. */ function name() public view virtual returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual 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 {_setupDecimals} is * called. * * 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 returns (uint8) { return _decimals; } /** * @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); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); 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].add(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) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); 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); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(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 = _totalSupply.add(amount); _balances[account] = _balances[account].add(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); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(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 Sets {decimals} to a value other than the default one of 18. * * WARNING: This function should only be called from the constructor. Most * applications that interact with token contracts will not expect * {decimals} to ever change, and may work incorrectly if it does. */ function _setupDecimals(uint8 decimals_) internal virtual { _decimals = decimals_; } /** * @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 { } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; import "./ERC20.sol"; /** * @dev Extension of {ERC20} that adds a cap to the supply of tokens. */ abstract contract ERC20Capped is ERC20 { using SafeMath for uint256; uint256 private _cap; /** * @dev Sets the value of the `cap`. This value is immutable, it can only be * set once during construction. */ constructor (uint256 cap_) internal { require(cap_ > 0, "ERC20Capped: cap is 0"); _cap = cap_; } /** * @dev Returns the cap on the token's total supply. */ function cap() public view virtual returns (uint256) { return _cap; } /** * @dev See {ERC20-_beforeTokenTransfer}. * * Requirements: * * - minted tokens must not cause the total supply to go over the cap. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual override { super._beforeTokenTransfer(from, to, amount); if (from == address(0)) { // When minting tokens require(totalSupply().add(amount) <= cap(), "ERC20Capped: cap exceeded"); } } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <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); }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b > a) return (false, 0); return (true, a - b); } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a / b); } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a % b); } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { require(b <= a, "SafeMath: subtraction overflow"); return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0) return 0; uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { require(b > 0, "SafeMath: division by zero"); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { require(b > 0, "SafeMath: modulo by zero"); return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); return a - b; } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryDiv}. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); return a % b; } }
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":"burner","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Burned","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"rewarded","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Extracted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"rewarded","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Minted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimOwnership","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":[],"name":"extract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getNextExtractionAvailable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"last_extracted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"_proposedOwner","type":"address"}],"name":"proposeOwner","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
60806040526000600855600980546001600160a01b03191690553480156200002657600080fd5b50604080518082018252601681527f466169726f78204d656d6265727368697020436f696e00000000000000000000602080830191825283518085019094526004845263464f4d4360e01b9084015281516a14adf4b7320334b900000093916200009491600391906200039b565b508051620000aa9060049060208401906200039b565b50506005805460ff1916601217905550806200010d576040805162461bcd60e51b815260206004820152601560248201527f45524332304361707065643a2063617020697320300000000000000000000000604482015290519081900360640190fd5b600655600a80546001600160a01b031916339081179091556040516000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3426007556200016b336a108b2a2c2802909400000062000171565b62000447565b6001600160a01b038216620001cd576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b620001db6000838362000280565b620001f7816002546200032d60201b62000a801790919060201c565b6002556001600160a01b038216600090815260208181526040909120546200022a91839062000a806200032d821b17901c565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b620002988383836200032860201b62000ae11760201c565b6001600160a01b0383166200032857620002b16200038f565b620002d482620002c062000395565b6200032d60201b62000a801790919060201c565b111562000328576040805162461bcd60e51b815260206004820152601960248201527f45524332304361707065643a2063617020657863656564656400000000000000604482015290519081900360640190fd5b505050565b60008282018381101562000388576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b60065490565b60025490565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282620003d357600085556200041e565b82601f10620003ee57805160ff19168380011785556200041e565b828001600101855582156200041e579182015b828111156200041e57825182559160200191906001019062000401565b506200042c92915062000430565b5090565b5b808211156200042c576000815560010162000431565b61127b80620004576000396000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c806342966c68116100ad57806395d89b411161007157806395d89b411461030e578063a457c2d714610316578063a9059cbb14610342578063b5ed298a1461036e578063dd62ed3e1461039457610121565b806342966c68146102975780634e71e0c8146102b457806370a08231146102bc578063761db4f4146102e25780638da5cb5b146102ea57610121565b806323b872dd116100f457806323b872dd14610207578063313ce5671461023d578063355274ea1461025b57806339509351146102635780634141966e1461028f57610121565b806306fdde0314610126578063095ea7b3146101a357806318160ddd146101e35780631e83cdab146101fd575b600080fd5b61012e6103c2565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610168578181015183820152602001610150565b50505050905090810190601f1680156101955780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101cf600480360360408110156101b957600080fd5b506001600160a01b038135169060200135610458565b604080519115158252519081900360200190f35b6101eb610475565b60408051918252519081900360200190f35b61020561047b565b005b6101cf6004803603606081101561021d57600080fd5b506001600160a01b03813581169160208101359091169060400135610609565b610245610690565b6040805160ff9092168252519081900360200190f35b6101eb610699565b6101cf6004803603604081101561027957600080fd5b506001600160a01b03813516906020013561069f565b6101eb6106ed565b6101cf600480360360208110156102ad57600080fd5b5035610706565b6102056107a4565b6101eb600480360360208110156102d257600080fd5b50356001600160a01b0316610869565b6101eb610884565b6102f261088a565b604080516001600160a01b039092168252519081900360200190f35b61012e610899565b6101cf6004803603604081101561032c57600080fd5b506001600160a01b0381351690602001356108fa565b6101cf6004803603604081101561035857600080fd5b506001600160a01b038135169060200135610962565b6102056004803603602081101561038457600080fd5b50356001600160a01b0316610976565b6101eb600480360360408110156103aa57600080fd5b506001600160a01b0381358116916020013516610a55565b60038054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561044e5780601f106104235761010080835404028352916020019161044e565b820191906000526020600020905b81548152906001019060200180831161043157829003601f168201915b5050505050905090565b600061046c610465610ae6565b8484610aea565b50600192915050565b60025490565b600a546001600160a01b031633146104da576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600a6008541061051b5760405162461bcd60e51b815260040180806020018281038252603f815260200180611125603f913960400191505060405180910390fd5b426105246106ed565b106105605760405162461bcd60e51b815260040180806020018281038252602b815260200180611164602b913960400191505060405180910390fd5b6969e10de76676d08000006105753382610bd6565b60408051828152905133917f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe919081900360200190a26007546105bc906301e13380610a80565b6007556008546105cd906001610a80565b60085560408051828152905133917f69c169e5c85af54e1ca7e16608ccc812437821387924fb3353a7d053264ddaa0919081900360200190a250565b6000610616848484610cc6565b61068684610622610ae6565b6106818560405180606001604052806028815260200161118f602891396001600160a01b038a16600090815260016020526040812090610660610ae6565b6001600160a01b031681526020810191909152604001600020549190610e21565b610aea565b5060019392505050565b60055460ff1690565b60065490565b600061046c6106ac610ae6565b8461068185600160006106bd610ae6565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490610a80565b600754600090610701906301e13380610a80565b905090565b600080821161075c576040805162461bcd60e51b815260206004820152601f60248201527f464f4d4345524332303a2043616e6e6f74206275726e203020746f6b656e7300604482015290519081900360640190fd5b6107663383610eb8565b60408051838152905133917f696de425f79f4a40bc6d2122ca50507f0efbeabbff86a84871b7196ab8ea8df7919081900360200190a2506001919050565b6009546001600160a01b03163314610803576040805162461bcd60e51b815260206004820152601860248201527f4552524f525f4e4f545f50524f504f5345445f4f574e45520000000000000000604482015290519081900360640190fd5b600954600a546040516001600160a01b0392831692909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a360098054600a80546001600160a01b03199081166001600160a01b03841617909155169055565b6001600160a01b031660009081526020819052604090205490565b60075481565b600a546001600160a01b031690565b60048054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561044e5780601f106104235761010080835404028352916020019161044e565b600061046c610907610ae6565b84610681856040518060600160405280602581526020016112216025913960016000610931610ae6565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190610e21565b600061046c61096f610ae6565b8484610cc6565b600a546001600160a01b031633146109d5576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b336001600160a01b0382161415610a33576040805162461bcd60e51b815260206004820152601a60248201527f4552524f525f43414c4c45525f414c52454144595f4f574e4552000000000000604482015290519081900360640190fd5b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b600082820183811015610ada576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b505050565b3390565b6001600160a01b038316610b2f5760405162461bcd60e51b81526004018080602001828103825260248152602001806111fd6024913960400191505060405180910390fd5b6001600160a01b038216610b745760405162461bcd60e51b81526004018080602001828103825260228152602001806110dd6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038216610c31576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b610c3d60008383610fb4565b600254610c4a9082610a80565b6002556001600160a01b038216600090815260208190526040902054610c709082610a80565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b038316610d0b5760405162461bcd60e51b81526004018080602001828103825260258152602001806111d86025913960400191505060405180910390fd5b6001600160a01b038216610d505760405162461bcd60e51b81526004018080602001828103825260238152602001806110986023913960400191505060405180910390fd5b610d5b838383610fb4565b610d98816040518060600160405280602681526020016110ff602691396001600160a01b0386166000908152602081905260409020549190610e21565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610dc79082610a80565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115610eb05760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610e75578181015183820152602001610e5d565b50505050905090810190601f168015610ea25780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160a01b038216610efd5760405162461bcd60e51b81526004018080602001828103825260218152602001806111b76021913960400191505060405180910390fd5b610f0982600083610fb4565b610f46816040518060600160405280602281526020016110bb602291396001600160a01b0385166000908152602081905260409020549190610e21565b6001600160a01b038316600090815260208190526040902055600254610f6c908261103a565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b610fbf838383610ae1565b6001600160a01b038316610ae157610fd5610699565b610fe782610fe1610475565b90610a80565b1115610ae1576040805162461bcd60e51b815260206004820152601960248201527f45524332304361707065643a2063617020657863656564656400000000000000604482015290519081900360640190fd5b600082821115611091576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b5090039056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365464f4d4345524332303a20546865726520686173206265656e20616c72656164792031302065787472616374696f6e7320666f722074686520737570706c79464f4d4345524332303a20556e61626c6520746f2065787472616374206f6e207468697320706572696f6445524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212203daf6141dcf90a7a0188592fc0a57100ffd4693ff95ac7183d7a4762e44d042364736f6c63430007060033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101215760003560e01c806342966c68116100ad57806395d89b411161007157806395d89b411461030e578063a457c2d714610316578063a9059cbb14610342578063b5ed298a1461036e578063dd62ed3e1461039457610121565b806342966c68146102975780634e71e0c8146102b457806370a08231146102bc578063761db4f4146102e25780638da5cb5b146102ea57610121565b806323b872dd116100f457806323b872dd14610207578063313ce5671461023d578063355274ea1461025b57806339509351146102635780634141966e1461028f57610121565b806306fdde0314610126578063095ea7b3146101a357806318160ddd146101e35780631e83cdab146101fd575b600080fd5b61012e6103c2565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610168578181015183820152602001610150565b50505050905090810190601f1680156101955780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101cf600480360360408110156101b957600080fd5b506001600160a01b038135169060200135610458565b604080519115158252519081900360200190f35b6101eb610475565b60408051918252519081900360200190f35b61020561047b565b005b6101cf6004803603606081101561021d57600080fd5b506001600160a01b03813581169160208101359091169060400135610609565b610245610690565b6040805160ff9092168252519081900360200190f35b6101eb610699565b6101cf6004803603604081101561027957600080fd5b506001600160a01b03813516906020013561069f565b6101eb6106ed565b6101cf600480360360208110156102ad57600080fd5b5035610706565b6102056107a4565b6101eb600480360360208110156102d257600080fd5b50356001600160a01b0316610869565b6101eb610884565b6102f261088a565b604080516001600160a01b039092168252519081900360200190f35b61012e610899565b6101cf6004803603604081101561032c57600080fd5b506001600160a01b0381351690602001356108fa565b6101cf6004803603604081101561035857600080fd5b506001600160a01b038135169060200135610962565b6102056004803603602081101561038457600080fd5b50356001600160a01b0316610976565b6101eb600480360360408110156103aa57600080fd5b506001600160a01b0381358116916020013516610a55565b60038054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561044e5780601f106104235761010080835404028352916020019161044e565b820191906000526020600020905b81548152906001019060200180831161043157829003601f168201915b5050505050905090565b600061046c610465610ae6565b8484610aea565b50600192915050565b60025490565b600a546001600160a01b031633146104da576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600a6008541061051b5760405162461bcd60e51b815260040180806020018281038252603f815260200180611125603f913960400191505060405180910390fd5b426105246106ed565b106105605760405162461bcd60e51b815260040180806020018281038252602b815260200180611164602b913960400191505060405180910390fd5b6969e10de76676d08000006105753382610bd6565b60408051828152905133917f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe919081900360200190a26007546105bc906301e13380610a80565b6007556008546105cd906001610a80565b60085560408051828152905133917f69c169e5c85af54e1ca7e16608ccc812437821387924fb3353a7d053264ddaa0919081900360200190a250565b6000610616848484610cc6565b61068684610622610ae6565b6106818560405180606001604052806028815260200161118f602891396001600160a01b038a16600090815260016020526040812090610660610ae6565b6001600160a01b031681526020810191909152604001600020549190610e21565b610aea565b5060019392505050565b60055460ff1690565b60065490565b600061046c6106ac610ae6565b8461068185600160006106bd610ae6565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490610a80565b600754600090610701906301e13380610a80565b905090565b600080821161075c576040805162461bcd60e51b815260206004820152601f60248201527f464f4d4345524332303a2043616e6e6f74206275726e203020746f6b656e7300604482015290519081900360640190fd5b6107663383610eb8565b60408051838152905133917f696de425f79f4a40bc6d2122ca50507f0efbeabbff86a84871b7196ab8ea8df7919081900360200190a2506001919050565b6009546001600160a01b03163314610803576040805162461bcd60e51b815260206004820152601860248201527f4552524f525f4e4f545f50524f504f5345445f4f574e45520000000000000000604482015290519081900360640190fd5b600954600a546040516001600160a01b0392831692909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a360098054600a80546001600160a01b03199081166001600160a01b03841617909155169055565b6001600160a01b031660009081526020819052604090205490565b60075481565b600a546001600160a01b031690565b60048054604080516020601f600260001961010060018816150201909516949094049384018190048102820181019092528281526060939092909183018282801561044e5780601f106104235761010080835404028352916020019161044e565b600061046c610907610ae6565b84610681856040518060600160405280602581526020016112216025913960016000610931610ae6565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190610e21565b600061046c61096f610ae6565b8484610cc6565b600a546001600160a01b031633146109d5576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b336001600160a01b0382161415610a33576040805162461bcd60e51b815260206004820152601a60248201527f4552524f525f43414c4c45525f414c52454144595f4f574e4552000000000000604482015290519081900360640190fd5b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b600082820183811015610ada576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b505050565b3390565b6001600160a01b038316610b2f5760405162461bcd60e51b81526004018080602001828103825260248152602001806111fd6024913960400191505060405180910390fd5b6001600160a01b038216610b745760405162461bcd60e51b81526004018080602001828103825260228152602001806110dd6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038216610c31576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b610c3d60008383610fb4565b600254610c4a9082610a80565b6002556001600160a01b038216600090815260208190526040902054610c709082610a80565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6001600160a01b038316610d0b5760405162461bcd60e51b81526004018080602001828103825260258152602001806111d86025913960400191505060405180910390fd5b6001600160a01b038216610d505760405162461bcd60e51b81526004018080602001828103825260238152602001806110986023913960400191505060405180910390fd5b610d5b838383610fb4565b610d98816040518060600160405280602681526020016110ff602691396001600160a01b0386166000908152602081905260409020549190610e21565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610dc79082610a80565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008184841115610eb05760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610e75578181015183820152602001610e5d565b50505050905090810190601f168015610ea25780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160a01b038216610efd5760405162461bcd60e51b81526004018080602001828103825260218152602001806111b76021913960400191505060405180910390fd5b610f0982600083610fb4565b610f46816040518060600160405280602281526020016110bb602291396001600160a01b0385166000908152602081905260409020549190610e21565b6001600160a01b038316600090815260208190526040902055600254610f6c908261103a565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b610fbf838383610ae1565b6001600160a01b038316610ae157610fd5610699565b610fe782610fe1610475565b90610a80565b1115610ae1576040805162461bcd60e51b815260206004820152601960248201527f45524332304361707065643a2063617020657863656564656400000000000000604482015290519081900360640190fd5b600082821115611091576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b5090039056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365464f4d4345524332303a20546865726520686173206265656e20616c72656164792031302065787472616374696f6e7320666f722074686520737570706c79464f4d4345524332303a20556e61626c6520746f2065787472616374206f6e207468697320706572696f6445524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212203daf6141dcf90a7a0188592fc0a57100ffd4693ff95ac7183d7a4762e44d042364736f6c63430007060033
Deployed Bytecode Sourcemap
142:2707:3:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2149:89:1;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4225:166;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;4225:166:1;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;3216:106;;;:::i;:::-;;;;;;;;;;;;;;;;1557:517:3;;;:::i;:::-;;4858:317:1;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;4858:317:1;;;;;;;;;;;;;;;;;:::i;3067:89::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;601:81:2;;;:::i;5570:215:1:-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;5570:215:1;;;;;;;;:::i;2080:120:3:-;;;:::i;1168:224::-;;;;;;;;;;;;;;;;-1:-1:-1;1168:224:3;;:::i;2399:236::-;;;:::i;3380:125:1:-;;;;;;;;;;;;;;;;-1:-1:-1;3380:125:1;-1:-1:-1;;;;;3380:125:1;;:::i;227:29:3:-;;;:::i;2641:85::-;;;:::i;:::-;;;;-1:-1:-1;;;;;2641:85:3;;;;;;;;;;;;;;2351:93:1;;;:::i;6272:266::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;6272:266:1;;;;;;;;:::i;3708:172::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;3708:172:1;;;;;;;;:::i;2206:187:3:-;;;;;;;;;;;;;;;;-1:-1:-1;2206:187:3;-1:-1:-1;;;;;2206:187:3;;:::i;3938:149:1:-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;3938:149:1;;;;;;;;;;:::i;2149:89::-;2226:5;2219:12;;;;;;;;-1:-1:-1;;2219:12:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2194:13;;2219:12;;2226:5;;2219:12;;2226:5;2219:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2149:89;:::o;4225:166::-;4308:4;4324:39;4333:12;:10;:12::i;:::-;4347:7;4356:6;4324:8;:39::i;:::-;-1:-1:-1;4380:4:1;4225:166;;;;:::o;3216:106::-;3303:12;;3216:106;:::o;1557:517:3:-;2771:6;;-1:-1:-1;;;;;2771:6:3;2781:10;2771:20;2763:65;;;;;-1:-1:-1;;;2763:65:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1625:2:::1;1611:11;;:16;1603:92;;;;-1:-1:-1::0;;;1603:92:3::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1744:15;1713:28;:26;:28::i;:::-;:46;1705:102;;;;-1:-1:-1::0;;;1705:102:3::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1834:16;1860:25;1866:10;1834:16:::0;1860:5:::1;:25::i;:::-;1900:26;::::0;;;;;;;1907:10:::1;::::0;1900:26:::1;::::0;;;;;::::1;::::0;;::::1;1953:14;::::0;:28:::1;::::0;1972:8:::1;1953:18;:28::i;:::-;1936:14;:45:::0;2005:11:::1;::::0;:18:::1;::::0;2021:1:::1;2005:15;:18::i;:::-;1991:11;:32:::0;2038:29:::1;::::0;;;;;;;2048:10:::1;::::0;2038:29:::1;::::0;;;;;::::1;::::0;;::::1;2838:1;1557:517::o:0;4858:317:1:-;4964:4;4980:36;4990:6;4998:9;5009:6;4980:9;:36::i;:::-;5026:121;5035:6;5043:12;:10;:12::i;:::-;5057:89;5095:6;5057:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;5057:19:1;;;;;;:11;:19;;;;;;5077:12;:10;:12::i;:::-;-1:-1:-1;;;;;5057:33:1;;;;;;;;;;;;-1:-1:-1;5057:33:1;;;:89;:37;:89::i;:::-;5026:8;:121::i;:::-;-1:-1:-1;5164:4:1;4858:317;;;;;:::o;3067:89::-;3140:9;;;;3067:89;:::o;601:81:2:-;671:4;;601:81;:::o;5570:215:1:-;5658:4;5674:83;5683:12;:10;:12::i;:::-;5697:7;5706:50;5745:10;5706:11;:25;5718:12;:10;:12::i;:::-;-1:-1:-1;;;;;5706:25:1;;;;;;;;;;;;;;;;;-1:-1:-1;5706:25:1;;;:34;;;;;;;;;;;:38;:50::i;2080:120:3:-;2165:14;;2139:7;;2165:28;;2184:8;2165:18;:28::i;:::-;2158:35;;2080:120;:::o;1168:224::-;1215:4;1249:1;1239:7;:11;1231:55;;;;;-1:-1:-1;;;1231:55:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;1296:26;1302:10;1314:7;1296:5;:26::i;:::-;1337:27;;;;;;;;1344:10;;1337:27;;;;;;;;;;-1:-1:-1;1381:4:3;1168:224;;;:::o;2399:236::-;2460:13;;-1:-1:-1;;;;;2460:13:3;2446:10;:27;2438:64;;;;;-1:-1:-1;;;2438:64:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;2546:13;;2538:6;;2517:43;;-1:-1:-1;;;;;2546:13:3;;;;2538:6;;;;2517:43;;2546:13;;2517:43;2579:13;;;2570:6;:22;;-1:-1:-1;;;;;;2570:22:3;;;-1:-1:-1;;;;;2579:13:3;;2570:22;;;;2602:26;;;2399:236::o;3380:125:1:-;-1:-1:-1;;;;;3480:18:1;3454:7;3480:18;;;;;;;;;;;;3380:125::o;227:29:3:-;;;;:::o;2641:85::-;2713:6;;-1:-1:-1;;;;;2713:6:3;2641:85;:::o;2351:93:1:-;2430:7;2423:14;;;;;;;;-1:-1:-1;;2423:14:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2398:13;;2423:14;;2430:7;;2423:14;;2430:7;2423:14;;;;;;;;;;;;;;;;;;;;;;;;6272:266;6365:4;6381:129;6390:12;:10;:12::i;:::-;6404:7;6413:96;6452:15;6413:96;;;;;;;;;;;;;;;;;:11;:25;6425:12;:10;:12::i;:::-;-1:-1:-1;;;;;6413:25:1;;;;;;;;;;;;;;;;;-1:-1:-1;6413:25:1;;;:34;;;;;;;;;;;:96;:38;:96::i;3708:172::-;3794:4;3810:42;3820:12;:10;:12::i;:::-;3834:9;3845:6;3810:9;:42::i;2206:187:3:-;2771:6;;-1:-1:-1;;;;;2771:6:3;2781:10;2771:20;2763:65;;;;;-1:-1:-1;;;2763:65:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2287:10:::1;-1:-1:-1::0;;;;;2287:28:3;::::1;;;2279:67;;;::::0;;-1:-1:-1;;;2279:67:3;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;2356:13;:30:::0;;-1:-1:-1;;;;;;2356:30:3::1;-1:-1:-1::0;;;;;2356:30:3;;;::::1;::::0;;;::::1;::::0;;2206:187::o;3938:149:1:-;-1:-1:-1;;;;;4053:18:1;;;4027:7;4053:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;3938:149::o;2690:175:5:-;2748:7;2779:5;;;2802:6;;;;2794:46;;;;;-1:-1:-1;;;2794:46:5;;;;;;;;;;;;;;;;;;;;;;;;;;;;2857:1;2690:175;-1:-1:-1;;;2690:175:5:o;10682:92:1:-;;;;:::o;598:104:0:-;685:10;598:104;:::o;9336:340:1:-;-1:-1:-1;;;;;9437:19:1;;9429:68;;;;-1:-1:-1;;;9429:68:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;9515:21:1;;9507:68;;;;-1:-1:-1;;;9507:68:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;9586:18:1;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;9637:32;;;;;;;;;;;;;;;;;9336:340;;;:::o;7813:370::-;-1:-1:-1;;;;;7896:21:1;;7888:65;;;;;-1:-1:-1;;;7888:65:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;7964:49;7993:1;7997:7;8006:6;7964:20;:49::i;:::-;8039:12;;:24;;8056:6;8039:16;:24::i;:::-;8024:12;:39;-1:-1:-1;;;;;8094:18:1;;:9;:18;;;;;;;;;;;:30;;8117:6;8094:22;:30::i;:::-;-1:-1:-1;;;;;8073:18:1;;:9;:18;;;;;;;;;;;:51;;;;8139:37;;;;;;;8073:18;;:9;;8139:37;;;;;;;;;;7813:370;;:::o;7012:530::-;-1:-1:-1;;;;;7117:20:1;;7109:70;;;;-1:-1:-1;;;7109:70:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;7197:23:1;;7189:71;;;;-1:-1:-1;;;7189:71:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7271:47;7292:6;7300:9;7311:6;7271:20;:47::i;:::-;7349:71;7371:6;7349:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;7349:17:1;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;7329:17:1;;;:9;:17;;;;;;;;;;;:91;;;;7453:20;;;;;;;:32;;7478:6;7453:24;:32::i;:::-;-1:-1:-1;;;;;7430:20:1;;;:9;:20;;;;;;;;;;;;:55;;;;7500:35;;;;;;;7430:20;;7500:35;;;;;;;;;;;;;7012:530;;;:::o;5432:163:5:-;5518:7;5553:12;5545:6;;;;5537:29;;;;-1:-1:-1;;;5537:29:5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5583:5:5;;;5432:163::o;8503:410:1:-;-1:-1:-1;;;;;8586:21:1;;8578:67;;;;-1:-1:-1;;;8578:67:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8656:49;8677:7;8694:1;8698:6;8656:20;:49::i;:::-;8737:68;8760:6;8737:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;8737:18:1;;:9;:18;;;;;;;;;;;;:68;:22;:68::i;:::-;-1:-1:-1;;;;;8716:18:1;;:9;:18;;;;;;;;;;:89;8830:12;;:24;;8847:6;8830:16;:24::i;:::-;8815:12;:39;8869:37;;;;;;;;8895:1;;-1:-1:-1;;;;;8869:37:1;;;;;;;;;;;;8503:410;;:::o;860:313:2:-;968:44;995:4;1001:2;1005:6;968:26;:44::i;:::-;-1:-1:-1;;;;;1027:18:2;;1023:144;;1121:5;:3;:5::i;:::-;1092:25;1110:6;1092:13;:11;:13::i;:::-;:17;;:25::i;:::-;:34;;1084:72;;;;;-1:-1:-1;;;1084:72:2;;;;;;;;;;;;;;;;;;;;;;;;;;;3136:155:5;3194:7;3226:1;3221;:6;;3213:49;;;;;-1:-1:-1;;;3213:49:5;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3279:5:5;;;3136:155::o
Swarm Source
ipfs://3daf6141dcf90a7a0188592fc0a57100ffd4693ff95ac7183d7a4762e44d0423
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.