ERC-20
Overview
Max Total Supply
10,926,560.165006 MDEX
Holders
193
Market
Price
-
Onchain Market Cap
-
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 6 Decimals)
Balance
1,262.605056 MDEXValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
Mobius
Compiler Version
v0.8.28+commit.7893614a
Contract Source Code (Solidity)
/** *Submitted for verification at SonicScan.org on 2024-12-19 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.24; /** * @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; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } } /** * @dev Interface of the ERC-20 standard as defined in the ERC. */ interface IERC20 { /** * @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); /** * @dev Returns the value of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the value of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves a `value` amount of tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 value) 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 a `value` amount of tokens 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 value) external returns (bool); /** * @dev Moves a `value` amount of tokens from `from` to `to` using the * allowance mechanism. `value` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 value) external returns (bool); } /** * @dev Interface for the optional metadata functions from the ERC-20 standard. */ 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); } /** * @dev Standard ERC-20 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-20 tokens. */ interface IERC20Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC20InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC20InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers. * @param spender Address that may be allowed to operate on tokens without being their owner. * @param allowance Amount of tokens a `spender` is allowed to operate with. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC20InvalidApprover(address approver); /** * @dev Indicates a failure with the `spender` to be approved. Used in approvals. * @param spender Address that may be allowed to operate on tokens without being their owner. */ error ERC20InvalidSpender(address spender); } /** * @dev Standard ERC-721 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-721 tokens. */ interface IERC721Errors { /** * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in ERC-20. * Used in balance queries. * @param owner Address of the current owner of a token. */ error ERC721InvalidOwner(address owner); /** * @dev Indicates a `tokenId` whose `owner` is the zero address. * @param tokenId Identifier number of a token. */ error ERC721NonexistentToken(uint256 tokenId); /** * @dev Indicates an error related to the ownership over a particular token. Used in transfers. * @param sender Address whose tokens are being transferred. * @param tokenId Identifier number of a token. * @param owner Address of the current owner of a token. */ error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC721InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC721InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param tokenId Identifier number of a token. */ error ERC721InsufficientApproval(address operator, uint256 tokenId); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC721InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC721InvalidOperator(address operator); } /** * @dev Standard ERC-1155 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-1155 tokens. */ interface IERC1155Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. * @param tokenId Identifier number of a token. */ error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC1155InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC1155InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param owner Address of the current owner of a token. */ error ERC1155MissingApprovalForAll(address operator, address owner); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC1155InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC1155InvalidOperator(address operator); /** * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation. * Used in batch transfers. * @param idsLength Length of the array of token identifiers * @param valuesLength Length of the array of token amounts */ error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength); } /** * @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}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * 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 ERC-20 * applications. */ abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors { mapping(address account => uint256) private _balances; mapping(address account => mapping(address spender => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * 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 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 default value returned by this function, unless * it's 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 returns (uint8) { return 6; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `value`. */ function transfer(address to, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _transfer(owner, to, value); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `value` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, value); return true; } /** * @dev See {IERC20-transferFrom}. * * Skips emitting an {Approval} event indicating an allowance update. This is not * required by the ERC. See {xref-ERC20-_approve-address-address-uint256-bool-}[_approve]. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `value`. * - the caller must have allowance for ``from``'s tokens of at least * `value`. */ function transferFrom(address from, address to, uint256 value) public virtual returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, value); _transfer(from, to, value); return true; } /** * @dev Moves a `value` amount of tokens from `from` to `to`. * * 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. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _transfer(address from, address to, uint256 value) internal { if (from == address(0)) { revert ERC20InvalidSender(address(0)); } if (to == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(from, to, value); } /** * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from` * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding * this function. * * Emits a {Transfer} event. */ function _update(address from, address to, uint256 value) internal virtual { if (from == address(0)) { // Overflow check required: The rest of the code assumes that totalSupply never overflows _totalSupply += value; } else { uint256 fromBalance = _balances[from]; if (fromBalance < value) { revert ERC20InsufficientBalance(from, fromBalance, value); } unchecked { // Overflow not possible: value <= fromBalance <= totalSupply. _balances[from] = fromBalance - value; } } if (to == address(0)) { unchecked { // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply. _totalSupply -= value; } } else { unchecked { // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256. _balances[to] += value; } } emit Transfer(from, to, value); } /** * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0). * Relies on the `_update` mechanism * * Emits a {Transfer} event with `from` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _mint(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(address(0), account, value); } /** * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply. * Relies on the `_update` mechanism. * * Emits a {Transfer} event with `to` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead */ function _burn(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidSender(address(0)); } _update(account, address(0), value); } /** * @dev Sets `value` 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. * * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument. */ function _approve(address owner, address spender, uint256 value) internal { _approve(owner, spender, value, true); } /** * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event. * * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any * `Approval` event during `transferFrom` operations. * * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to * true using the following override: * * ```solidity * function _approve(address owner, address spender, uint256 value, bool) internal virtual override { * super._approve(owner, spender, value, true); * } * ``` * * Requirements are the same as {_approve}. */ function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual { if (owner == address(0)) { revert ERC20InvalidApprover(address(0)); } if (spender == address(0)) { revert ERC20InvalidSpender(address(0)); } _allowances[owner][spender] = value; if (emitEvent) { emit Approval(owner, spender, value); } } /** * @dev Updates `owner` s allowance for `spender` based on spent `value`. * * Does not update the allowance value in case of infinite allowance. * Revert if not enough allowance is available. * * Does not emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 value) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { if (currentAllowance < value) { revert ERC20InsufficientAllowance(spender, currentAllowance, value); } unchecked { _approve(owner, spender, currentAllowance - value, false); } } } } /** * @title SafeMath * @dev Math operations with safety checks that throw on error */ library SafeMath { /** * @dev Multiplies two numbers, throws on overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256 c) { if (a == 0) { return 0; } c = a * b; assert(c / a == b); return c; } /** * @dev Integer division of two numbers, truncating the quotient. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { // assert(b > 0); // Solidity automatically throws when dividing by 0 // uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return a / b; } /** * @dev Subtracts two numbers, throws on overflow (i.e. if subtrahend is greater than minuend). */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { assert(b <= a); return a - b; } /** * @dev Adds two numbers, throws on overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256 c) { c = a + b; assert(c >= a); return c; } } /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * The initial owner is set to the address provided by the deployer. This can * later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; /** * @dev The caller account is not authorized to perform an operation. */ error OwnableUnauthorizedAccount(address account); /** * @dev The owner is not a valid owner account. (eg. `address(0)`) */ error OwnableInvalidOwner(address owner); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the address provided by the deployer as the initial owner. */ constructor(address initialOwner) { if (initialOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(initialOwner); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { if (owner() != _msgSender()) { revert OwnableUnauthorizedAccount(_msgSender()); } } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { if (newOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } contract Mobius is ERC20, Ownable { using SafeMath for uint256; uint256 public initialSupply = 10_000_000; address[] public minters; constructor(address initialOwner) ERC20("MobiusDEX", "MDEX") Ownable(initialOwner) { _mint(_msgSender(), initialSupply * 10 ** decimals()); } /// @notice Creates `_amount` token to `_to`. Must only be called by the minter. function mint(address _to, uint256 _amount) public onlyMinter returns(bool) { _mint(_to, _amount); return true; } /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual returns (bool) { _burn(_msgSender(), amount); return true; } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual returns (bool) { uint256 currentAllowance = allowance(account, _msgSender()); if (currentAllowance < amount) { revert ERC20InsufficientAllowance(_msgSender(), currentAllowance, amount); } uint256 decreasedAllowance = currentAllowance.sub(amount); _approve(account, _msgSender(), decreasedAllowance); _burn(account, amount); return true; } function addMinter(address _addMinter) public onlyOwner returns (bool) { require(_addMinter != address(0), "MOBIUS: _addMinter is the zero address"); if (!isMinter(_addMinter)) { minters.push(_addMinter); return true; } return false; } function delMinter(address _delMinter) public onlyOwner returns (bool) { require(_delMinter != address(0), "MOBIUS: _delMinter is the zero address"); if (minters.length > 0) { for (uint256 i = 0; i < minters.length; i++) { if (minters[i] == _delMinter) { minters[i] = minters[minters.length - 1]; minters.pop(); return true; } } } return false; } function getMinterLength() public view returns (uint256) { return minters.length; } function isMinter(address account) public view returns (bool) { bool _found = false; for (uint256 i = 0; i < minters.length; i++) { if (minters[i] == account) { _found = true; break; } } return _found; } // modifier for mint function modifier onlyMinter() { require(isMinter(_msgSender()), "Caller is not the minter"); _; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"initialOwner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"_addMinter","type":"address"}],"name":"addMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","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":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_delMinter","type":"address"}],"name":"delMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getMinterLength","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initialSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"minters","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[],"name":"renounceOwnership","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":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405262989680600655348015610016575f5ffd5b506040516126523803806126528339818101604052810190610038919061055e565b806040518060400160405280600981526020017f4d6f6269757344455800000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4d4445580000000000000000000000000000000000000000000000000000000081525081600390816100b491906107c6565b5080600490816100c491906107c6565b5050505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610137575f6040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161012e91906108a4565b60405180910390fd5b6101468161019060201b60201c565b5061018a61015861025360201b60201c565b61016661025a60201b60201c565b600a6101729190610a25565b60065461017f9190610a6f565b61026260201b60201c565b50610b40565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f33905090565b5f6006905090565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036102d2575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016102c991906108a4565b60405180910390fd5b6102e35f83836102e760201b60201c565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610337578060025f82825461032b9190610ab0565b92505081905550610405565b5f5f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156103c0578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016103b793929190610af2565b60405180910390fd5b8181035f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361044c578060025f8282540392505081905550610496565b805f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516104f39190610b27565b60405180910390a3505050565b5f5ffd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61052d82610504565b9050919050565b61053d81610523565b8114610547575f5ffd5b50565b5f8151905061055881610534565b92915050565b5f6020828403121561057357610572610500565b5b5f6105808482850161054a565b91505092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061060457607f821691505b602082108103610617576106166105c0565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026106797fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261063e565b610683868361063e565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f6106c76106c26106bd8461069b565b6106a4565b61069b565b9050919050565b5f819050919050565b6106e0836106ad565b6106f46106ec826106ce565b84845461064a565b825550505050565b5f5f905090565b61070b6106fc565b6107168184846106d7565b505050565b5b818110156107395761072e5f82610703565b60018101905061071c565b5050565b601f82111561077e5761074f8161061d565b6107588461062f565b81016020851015610767578190505b61077b6107738561062f565b83018261071b565b50505b505050565b5f82821c905092915050565b5f61079e5f1984600802610783565b1980831691505092915050565b5f6107b6838361078f565b9150826002028217905092915050565b6107cf82610589565b67ffffffffffffffff8111156107e8576107e7610593565b5b6107f282546105ed565b6107fd82828561073d565b5f60209050601f83116001811461082e575f841561081c578287015190505b61082685826107ab565b86555061088d565b601f19841661083c8661061d565b5f5b828110156108635784890151825560018201915060208501945060208101905061083e565b86831015610880578489015161087c601f89168261078f565b8355505b6001600288020188555050505b505050505050565b61089e81610523565b82525050565b5f6020820190506108b75f830184610895565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f5f8291508390505b600185111561093f5780860481111561091b5761091a6108bd565b5b600185161561092a5780820291505b8081029050610938856108ea565b94506108ff565b94509492505050565b5f826109575760019050610a12565b81610964575f9050610a12565b816001811461097a5760028114610984576109b3565b6001915050610a12565b60ff841115610996576109956108bd565b5b8360020a9150848211156109ad576109ac6108bd565b5b50610a12565b5060208310610133831016604e8410600b84101617156109e85782820a9050838111156109e3576109e26108bd565b5b610a12565b6109f584848460016108f6565b92509050818404811115610a0c57610a0b6108bd565b5b81810290505b9392505050565b5f60ff82169050919050565b5f610a2f8261069b565b9150610a3a83610a19565b9250610a677fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484610948565b905092915050565b5f610a798261069b565b9150610a848361069b565b9250828202610a928161069b565b91508282048414831517610aa957610aa86108bd565b5b5092915050565b5f610aba8261069b565b9150610ac58361069b565b9250828201905080821115610add57610adc6108bd565b5b92915050565b610aec8161069b565b82525050565b5f606082019050610b055f830186610895565b610b126020830185610ae3565b610b1f6040830184610ae3565b949350505050565b5f602082019050610b3a5f830184610ae3565b92915050565b611b0580610b4d5f395ff3fe608060405234801561000f575f5ffd5b5060043610610135575f3560e01c806370a08231116100b657806395d89b411161007a57806395d89b4114610377578063983b2d5614610395578063a9059cbb146103c5578063aa271e1a146103f5578063dd62ed3e14610425578063f2fde38b1461045557610135565b806370a08231146102bf578063715018a6146102ef57806379cc6790146102f95780638623ec7b146103295780638da5cb5b1461035957610135565b806323b872dd116100fd57806323b872dd146101f3578063313ce56714610223578063378dc3dc1461024157806340c10f191461025f57806342966c681461028f57610135565b80630323aac71461013957806306fdde0314610157578063095ea7b31461017557806318160ddd146101a557806323338b88146101c3575b5f5ffd5b610141610471565b60405161014e91906114bd565b60405180910390f35b61015f61047d565b60405161016c9190611546565b60405180910390f35b61018f600480360381019061018a91906115ee565b61050d565b60405161019c9190611646565b60405180910390f35b6101ad61052f565b6040516101ba91906114bd565b60405180910390f35b6101dd60048036038101906101d8919061165f565b610538565b6040516101ea9190611646565b60405180910390f35b61020d6004803603810190610208919061168a565b610748565b60405161021a9190611646565b60405180910390f35b61022b610776565b60405161023891906116f5565b60405180910390f35b61024961077e565b60405161025691906114bd565b60405180910390f35b610279600480360381019061027491906115ee565b610784565b6040516102869190611646565b60405180910390f35b6102a960048036038101906102a4919061170e565b6107e8565b6040516102b69190611646565b60405180910390f35b6102d960048036038101906102d4919061165f565b610803565b6040516102e691906114bd565b60405180910390f35b6102f7610848565b005b610313600480360381019061030e91906115ee565b61085b565b6040516103209190611646565b60405180910390f35b610343600480360381019061033e919061170e565b6108fe565b6040516103509190611748565b60405180910390f35b610361610939565b60405161036e9190611748565b60405180910390f35b61037f610961565b60405161038c9190611546565b60405180910390f35b6103af60048036038101906103aa919061165f565b6109f1565b6040516103bc9190611646565b60405180910390f35b6103df60048036038101906103da91906115ee565b610ae7565b6040516103ec9190611646565b60405180910390f35b61040f600480360381019061040a919061165f565b610b09565b60405161041c9190611646565b60405180910390f35b61043f600480360381019061043a9190611761565b610bae565b60405161044c91906114bd565b60405180910390f35b61046f600480360381019061046a919061165f565b610c30565b005b5f600780549050905090565b60606003805461048c906117cc565b80601f01602080910402602001604051908101604052809291908181526020018280546104b8906117cc565b80156105035780601f106104da57610100808354040283529160200191610503565b820191905f5260205f20905b8154815290600101906020018083116104e657829003601f168201915b5050505050905090565b5f5f610517610cb4565b9050610524818585610cbb565b600191505092915050565b5f600254905090565b5f610541610ccd565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036105af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105a69061186c565b60405180910390fd5b5f600780549050111561073f575f5f90505b60078054905081101561073d578273ffffffffffffffffffffffffffffffffffffffff16600782815481106105f9576105f861188a565b5b905f5260205f20015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603610730576007600160078054905061065091906118e4565b815481106106615761066061188a565b5b905f5260205f20015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff166007828154811061069d5761069c61188a565b5b905f5260205f20015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060078054806106f4576106f3611917565b5b600190038181905f5260205f20015f6101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905590556001915050610743565b80806001019150506105c1565b505b5f90505b919050565b5f5f610752610cb4565b905061075f858285610d54565b61076a858585610de6565b60019150509392505050565b5f6006905090565b60065481565b5f610795610790610cb4565b610b09565b6107d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107cb9061198e565b60405180910390fd5b6107de8383610ed6565b6001905092915050565b5f6107fa6107f4610cb4565b83610f55565b60019050919050565b5f5f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610850610ccd565b6108595f610fd4565b565b5f5f61086e84610869610cb4565b610bae565b9050828110156108c057610880610cb4565b81846040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526004016108b7939291906119ac565b60405180910390fd5b5f6108d4848361109790919063ffffffff16565b90506108e8856108e2610cb4565b83610cbb565b6108f28585610f55565b60019250505092915050565b6007818154811061090d575f80fd5b905f5260205f20015f915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610970906117cc565b80601f016020809104026020016040519081016040528092919081815260200182805461099c906117cc565b80156109e75780601f106109be576101008083540402835291602001916109e7565b820191905f5260205f20905b8154815290600101906020018083116109ca57829003601f168201915b5050505050905090565b5f6109fa610ccd565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5f90611a51565b60405180910390fd5b610a7182610b09565b610ade57600782908060018154018082558091505060019003905f5260205f20015f9091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060019050610ae2565b5f90505b919050565b5f5f610af1610cb4565b9050610afe818585610de6565b600191505092915050565b5f5f5f90505f5f90505b600780549050811015610ba4578373ffffffffffffffffffffffffffffffffffffffff1660078281548110610b4b57610b4a61188a565b5b905f5260205f20015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603610b975760019150610ba4565b8080600101915050610b13565b5080915050919050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610c38610ccd565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ca8575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610c9f9190611748565b60405180910390fd5b610cb181610fd4565b50565b5f33905090565b610cc883838360016110bd565b505050565b610cd5610cb4565b73ffffffffffffffffffffffffffffffffffffffff16610cf3610939565b73ffffffffffffffffffffffffffffffffffffffff1614610d5257610d16610cb4565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610d499190611748565b60405180910390fd5b565b5f610d5f8484610bae565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610de05781811015610dd1578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610dc8939291906119ac565b60405180910390fd5b610ddf84848484035f6110bd565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e56575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610e4d9190611748565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ec6575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610ebd9190611748565b60405180910390fd5b610ed183838361128c565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f46575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610f3d9190611748565b60405180910390fd5b610f515f838361128c565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fc5575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610fbc9190611748565b60405180910390fd5b610fd0825f8361128c565b5050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f828211156110a9576110a8611a6f565b5b81836110b591906118e4565b905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361112d575f6040517fe602df050000000000000000000000000000000000000000000000000000000081526004016111249190611748565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361119d575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016111949190611748565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015611286578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161127d91906114bd565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036112dc578060025f8282546112d09190611a9c565b925050819055506113aa565b5f5f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611365578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161135c939291906119ac565b60405180910390fd5b8181035f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113f1578060025f828254039250508190555061143b565b805f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161149891906114bd565b60405180910390a3505050565b5f819050919050565b6114b7816114a5565b82525050565b5f6020820190506114d05f8301846114ae565b92915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f611518826114d6565b61152281856114e0565b93506115328185602086016114f0565b61153b816114fe565b840191505092915050565b5f6020820190508181035f83015261155e818461150e565b905092915050565b5f5ffd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6115938261156a565b9050919050565b6115a381611589565b81146115ad575f5ffd5b50565b5f813590506115be8161159a565b92915050565b6115cd816114a5565b81146115d7575f5ffd5b50565b5f813590506115e8816115c4565b92915050565b5f5f6040838503121561160457611603611566565b5b5f611611858286016115b0565b9250506020611622858286016115da565b9150509250929050565b5f8115159050919050565b6116408161162c565b82525050565b5f6020820190506116595f830184611637565b92915050565b5f6020828403121561167457611673611566565b5b5f611681848285016115b0565b91505092915050565b5f5f5f606084860312156116a1576116a0611566565b5b5f6116ae868287016115b0565b93505060206116bf868287016115b0565b92505060406116d0868287016115da565b9150509250925092565b5f60ff82169050919050565b6116ef816116da565b82525050565b5f6020820190506117085f8301846116e6565b92915050565b5f6020828403121561172357611722611566565b5b5f611730848285016115da565b91505092915050565b61174281611589565b82525050565b5f60208201905061175b5f830184611739565b92915050565b5f5f6040838503121561177757611776611566565b5b5f611784858286016115b0565b9250506020611795858286016115b0565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806117e357607f821691505b6020821081036117f6576117f561179f565b5b50919050565b7f4d4f424955533a205f64656c4d696e74657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6118566026836114e0565b9150611861826117fc565b604082019050919050565b5f6020820190508181035f8301526118838161184a565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6118ee826114a5565b91506118f9836114a5565b9250828203905081811115611911576119106118b7565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603160045260245ffd5b7f43616c6c6572206973206e6f7420746865206d696e74657200000000000000005f82015250565b5f6119786018836114e0565b915061198382611944565b602082019050919050565b5f6020820190508181035f8301526119a58161196c565b9050919050565b5f6060820190506119bf5f830186611739565b6119cc60208301856114ae565b6119d960408301846114ae565b949350505050565b7f4d4f424955533a205f6164644d696e74657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f611a3b6026836114e0565b9150611a46826119e1565b604082019050919050565b5f6020820190508181035f830152611a6881611a2f565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52600160045260245ffd5b5f611aa6826114a5565b9150611ab1836114a5565b9250828201905080821115611ac957611ac86118b7565b5b9291505056fea2646970667358221220672af6f5719828e174abfdf801909c1353ea9cb722217aef97049256f6e365a864736f6c634300081c00330000000000000000000000009a007a5e84f30e5b667709460a4274be0a246c84
Deployed Bytecode
0x608060405234801561000f575f5ffd5b5060043610610135575f3560e01c806370a08231116100b657806395d89b411161007a57806395d89b4114610377578063983b2d5614610395578063a9059cbb146103c5578063aa271e1a146103f5578063dd62ed3e14610425578063f2fde38b1461045557610135565b806370a08231146102bf578063715018a6146102ef57806379cc6790146102f95780638623ec7b146103295780638da5cb5b1461035957610135565b806323b872dd116100fd57806323b872dd146101f3578063313ce56714610223578063378dc3dc1461024157806340c10f191461025f57806342966c681461028f57610135565b80630323aac71461013957806306fdde0314610157578063095ea7b31461017557806318160ddd146101a557806323338b88146101c3575b5f5ffd5b610141610471565b60405161014e91906114bd565b60405180910390f35b61015f61047d565b60405161016c9190611546565b60405180910390f35b61018f600480360381019061018a91906115ee565b61050d565b60405161019c9190611646565b60405180910390f35b6101ad61052f565b6040516101ba91906114bd565b60405180910390f35b6101dd60048036038101906101d8919061165f565b610538565b6040516101ea9190611646565b60405180910390f35b61020d6004803603810190610208919061168a565b610748565b60405161021a9190611646565b60405180910390f35b61022b610776565b60405161023891906116f5565b60405180910390f35b61024961077e565b60405161025691906114bd565b60405180910390f35b610279600480360381019061027491906115ee565b610784565b6040516102869190611646565b60405180910390f35b6102a960048036038101906102a4919061170e565b6107e8565b6040516102b69190611646565b60405180910390f35b6102d960048036038101906102d4919061165f565b610803565b6040516102e691906114bd565b60405180910390f35b6102f7610848565b005b610313600480360381019061030e91906115ee565b61085b565b6040516103209190611646565b60405180910390f35b610343600480360381019061033e919061170e565b6108fe565b6040516103509190611748565b60405180910390f35b610361610939565b60405161036e9190611748565b60405180910390f35b61037f610961565b60405161038c9190611546565b60405180910390f35b6103af60048036038101906103aa919061165f565b6109f1565b6040516103bc9190611646565b60405180910390f35b6103df60048036038101906103da91906115ee565b610ae7565b6040516103ec9190611646565b60405180910390f35b61040f600480360381019061040a919061165f565b610b09565b60405161041c9190611646565b60405180910390f35b61043f600480360381019061043a9190611761565b610bae565b60405161044c91906114bd565b60405180910390f35b61046f600480360381019061046a919061165f565b610c30565b005b5f600780549050905090565b60606003805461048c906117cc565b80601f01602080910402602001604051908101604052809291908181526020018280546104b8906117cc565b80156105035780601f106104da57610100808354040283529160200191610503565b820191905f5260205f20905b8154815290600101906020018083116104e657829003601f168201915b5050505050905090565b5f5f610517610cb4565b9050610524818585610cbb565b600191505092915050565b5f600254905090565b5f610541610ccd565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036105af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105a69061186c565b60405180910390fd5b5f600780549050111561073f575f5f90505b60078054905081101561073d578273ffffffffffffffffffffffffffffffffffffffff16600782815481106105f9576105f861188a565b5b905f5260205f20015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603610730576007600160078054905061065091906118e4565b815481106106615761066061188a565b5b905f5260205f20015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff166007828154811061069d5761069c61188a565b5b905f5260205f20015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060078054806106f4576106f3611917565b5b600190038181905f5260205f20015f6101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905590556001915050610743565b80806001019150506105c1565b505b5f90505b919050565b5f5f610752610cb4565b905061075f858285610d54565b61076a858585610de6565b60019150509392505050565b5f6006905090565b60065481565b5f610795610790610cb4565b610b09565b6107d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107cb9061198e565b60405180910390fd5b6107de8383610ed6565b6001905092915050565b5f6107fa6107f4610cb4565b83610f55565b60019050919050565b5f5f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610850610ccd565b6108595f610fd4565b565b5f5f61086e84610869610cb4565b610bae565b9050828110156108c057610880610cb4565b81846040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526004016108b7939291906119ac565b60405180910390fd5b5f6108d4848361109790919063ffffffff16565b90506108e8856108e2610cb4565b83610cbb565b6108f28585610f55565b60019250505092915050565b6007818154811061090d575f80fd5b905f5260205f20015f915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610970906117cc565b80601f016020809104026020016040519081016040528092919081815260200182805461099c906117cc565b80156109e75780601f106109be576101008083540402835291602001916109e7565b820191905f5260205f20905b8154815290600101906020018083116109ca57829003601f168201915b5050505050905090565b5f6109fa610ccd565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5f90611a51565b60405180910390fd5b610a7182610b09565b610ade57600782908060018154018082558091505060019003905f5260205f20015f9091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060019050610ae2565b5f90505b919050565b5f5f610af1610cb4565b9050610afe818585610de6565b600191505092915050565b5f5f5f90505f5f90505b600780549050811015610ba4578373ffffffffffffffffffffffffffffffffffffffff1660078281548110610b4b57610b4a61188a565b5b905f5260205f20015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603610b975760019150610ba4565b8080600101915050610b13565b5080915050919050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610c38610ccd565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ca8575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610c9f9190611748565b60405180910390fd5b610cb181610fd4565b50565b5f33905090565b610cc883838360016110bd565b505050565b610cd5610cb4565b73ffffffffffffffffffffffffffffffffffffffff16610cf3610939565b73ffffffffffffffffffffffffffffffffffffffff1614610d5257610d16610cb4565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610d499190611748565b60405180910390fd5b565b5f610d5f8484610bae565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610de05781811015610dd1578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610dc8939291906119ac565b60405180910390fd5b610ddf84848484035f6110bd565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e56575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610e4d9190611748565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ec6575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610ebd9190611748565b60405180910390fd5b610ed183838361128c565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f46575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610f3d9190611748565b60405180910390fd5b610f515f838361128c565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fc5575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610fbc9190611748565b60405180910390fd5b610fd0825f8361128c565b5050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f828211156110a9576110a8611a6f565b5b81836110b591906118e4565b905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361112d575f6040517fe602df050000000000000000000000000000000000000000000000000000000081526004016111249190611748565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361119d575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016111949190611748565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015611286578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161127d91906114bd565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036112dc578060025f8282546112d09190611a9c565b925050819055506113aa565b5f5f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611365578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161135c939291906119ac565b60405180910390fd5b8181035f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113f1578060025f828254039250508190555061143b565b805f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161149891906114bd565b60405180910390a3505050565b5f819050919050565b6114b7816114a5565b82525050565b5f6020820190506114d05f8301846114ae565b92915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f611518826114d6565b61152281856114e0565b93506115328185602086016114f0565b61153b816114fe565b840191505092915050565b5f6020820190508181035f83015261155e818461150e565b905092915050565b5f5ffd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6115938261156a565b9050919050565b6115a381611589565b81146115ad575f5ffd5b50565b5f813590506115be8161159a565b92915050565b6115cd816114a5565b81146115d7575f5ffd5b50565b5f813590506115e8816115c4565b92915050565b5f5f6040838503121561160457611603611566565b5b5f611611858286016115b0565b9250506020611622858286016115da565b9150509250929050565b5f8115159050919050565b6116408161162c565b82525050565b5f6020820190506116595f830184611637565b92915050565b5f6020828403121561167457611673611566565b5b5f611681848285016115b0565b91505092915050565b5f5f5f606084860312156116a1576116a0611566565b5b5f6116ae868287016115b0565b93505060206116bf868287016115b0565b92505060406116d0868287016115da565b9150509250925092565b5f60ff82169050919050565b6116ef816116da565b82525050565b5f6020820190506117085f8301846116e6565b92915050565b5f6020828403121561172357611722611566565b5b5f611730848285016115da565b91505092915050565b61174281611589565b82525050565b5f60208201905061175b5f830184611739565b92915050565b5f5f6040838503121561177757611776611566565b5b5f611784858286016115b0565b9250506020611795858286016115b0565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806117e357607f821691505b6020821081036117f6576117f561179f565b5b50919050565b7f4d4f424955533a205f64656c4d696e74657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6118566026836114e0565b9150611861826117fc565b604082019050919050565b5f6020820190508181035f8301526118838161184a565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6118ee826114a5565b91506118f9836114a5565b9250828203905081811115611911576119106118b7565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603160045260245ffd5b7f43616c6c6572206973206e6f7420746865206d696e74657200000000000000005f82015250565b5f6119786018836114e0565b915061198382611944565b602082019050919050565b5f6020820190508181035f8301526119a58161196c565b9050919050565b5f6060820190506119bf5f830186611739565b6119cc60208301856114ae565b6119d960408301846114ae565b949350505050565b7f4d4f424955533a205f6164644d696e74657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f611a3b6026836114e0565b9150611a46826119e1565b604082019050919050565b5f6020820190508181035f830152611a6881611a2f565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52600160045260245ffd5b5f611aa6826114a5565b9150611ab1836114a5565b9250828201905080821115611ac957611ac86118b7565b5b9291505056fea2646970667358221220672af6f5719828e174abfdf801909c1353ea9cb722217aef97049256f6e365a864736f6c634300081c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000009a007a5e84f30e5b667709460a4274be0a246c84
-----Decoded View---------------
Arg [0] : initialOwner (address): 0x9a007A5E84f30e5B667709460A4274BE0a246C84
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000009a007a5e84f30e5b667709460a4274be0a246c84
Deployed Bytecode Sourcemap
25748:3028:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28207:97;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12195:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14487:190;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13296:99;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27687:512;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15287:249;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13148:83;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25828:41;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26181:136;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26433:128;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13458:118;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24912:103;;;:::i;:::-;;26880:487;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25876:24;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24237:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12405:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27375:304;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13781:182;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28312:306;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14026:142;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25170:220;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28207:97;28255:7;28282;:14;;;;28275:21;;28207:97;:::o;12195:91::-;12240:13;12273:5;12266:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12195:91;:::o;14487:190::-;14560:4;14577:13;14593:12;:10;:12::i;:::-;14577:28;;14616:31;14625:5;14632:7;14641:5;14616:8;:31::i;:::-;14665:4;14658:11;;;14487:190;;;;:::o;13296:99::-;13348:7;13375:12;;13368:19;;13296:99;:::o;27687:512::-;27752:4;24123:13;:11;:13::i;:::-;27799:1:::1;27777:24;;:10;:24;;::::0;27769:75:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;27876:1;27859:7;:14;;;;:18;27855:312;;;27899:9;27911:1;27899:13;;27894:262;27918:7;:14;;;;27914:1;:18;27894:262;;;27976:10;27962:24;;:7;27970:1;27962:10;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:24;;::::0;27958:183:::1;;28024:7;28049:1;28032:7;:14;;;;:18;;;;:::i;:::-;28024:27;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;28011:7;28019:1;28011:10;;;;;;;;:::i;:::-;;;;;;;;;;:40;;;;;;;;;;;;;;;;;;28074:7;:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;28117:4;28110:11;;;;;27958:183;27934:3;;;;;;;27894:262;;;;27855:312;28186:5;28179:12;;24147:1;27687:512:::0;;;:::o;15287:249::-;15374:4;15391:15;15409:12;:10;:12::i;:::-;15391:30;;15432:37;15448:4;15454:7;15463:5;15432:15;:37::i;:::-;15480:26;15490:4;15496:2;15500:5;15480:9;:26::i;:::-;15524:4;15517:11;;;15287:249;;;;;:::o;13148:83::-;13197:5;13222:1;13215:8;;13148:83;:::o;25828:41::-;;;;:::o;26181:136::-;26251:4;28702:22;28711:12;:10;:12::i;:::-;28702:8;:22::i;:::-;28694:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;26268:19:::1;26274:3;26279:7;26268:5;:19::i;:::-;26305:4;26298:11;;26181:136:::0;;;;:::o;26433:128::-;26487:4;26504:27;26510:12;:10;:12::i;:::-;26524:6;26504:5;:27::i;:::-;26549:4;26542:11;;26433:128;;;:::o;13458:118::-;13523:7;13550:9;:18;13560:7;13550:18;;;;;;;;;;;;;;;;13543:25;;13458:118;;;:::o;24912:103::-;24123:13;:11;:13::i;:::-;24977:30:::1;25004:1;24977:18;:30::i;:::-;24912:103::o:0;26880:487::-;26955:4;26972:24;26999:32;27009:7;27018:12;:10;:12::i;:::-;26999:9;:32::i;:::-;26972:59;;27065:6;27046:16;:25;27042:131;;;27122:12;:10;:12::i;:::-;27136:16;27154:6;27095:66;;;;;;;;;;;;;:::i;:::-;;;;;;;;27042:131;27185:26;27214:28;27235:6;27214:16;:20;;:28;;;;:::i;:::-;27185:57;;27253:51;27262:7;27271:12;:10;:12::i;:::-;27285:18;27253:8;:51::i;:::-;27315:22;27321:7;27330:6;27315:5;:22::i;:::-;27355:4;27348:11;;;;26880:487;;;;:::o;25876:24::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;24237:87::-;24283:7;24310:6;;;;;;;;;;;24303:13;;24237:87;:::o;12405:95::-;12452:13;12485:7;12478:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12405:95;:::o;27375:304::-;27440:4;24123:13;:11;:13::i;:::-;27487:1:::1;27465:24;;:10;:24;;::::0;27457:75:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;27548:20;27557:10;27548:8;:20::i;:::-;27543:104;;27585:7;27598:10;27585:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27631:4;27624:11;;;;27543:104;27666:5;27659:12;;24147:1;27375:304:::0;;;:::o;13781:182::-;13850:4;13867:13;13883:12;:10;:12::i;:::-;13867:28;;13906:27;13916:5;13923:2;13927:5;13906:9;:27::i;:::-;13951:4;13944:11;;;13781:182;;;;:::o;28312:306::-;28368:4;28385:11;28399:5;28385:19;;28420:9;28432:1;28420:13;;28415:170;28439:7;:14;;;;28435:1;:18;28415:170;;;28493:7;28479:21;;:7;28487:1;28479:10;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:21;;;28475:99;;28530:4;28521:13;;28553:5;;28475:99;28455:3;;;;;;;28415:170;;;;28604:6;28597:13;;;28312:306;;;:::o;14026:142::-;14106:7;14133:11;:18;14145:5;14133:18;;;;;;;;;;;;;;;:27;14152:7;14133:27;;;;;;;;;;;;;;;;14126:34;;14026:142;;;;:::o;25170:220::-;24123:13;:11;:13::i;:::-;25275:1:::1;25255:22;;:8;:22;;::::0;25251:93:::1;;25329:1;25301:31;;;;;;;;;;;:::i;:::-;;;;;;;;25251:93;25354:28;25373:8;25354:18;:28::i;:::-;25170:220:::0;:::o;601:98::-;654:7;681:10;674:17;;601:98;:::o;19346:130::-;19431:37;19440:5;19447:7;19456:5;19463:4;19431:8;:37::i;:::-;19346:130;;;:::o;24402:166::-;24473:12;:10;:12::i;:::-;24462:23;;:7;:5;:7::i;:::-;:23;;;24458:103;;24536:12;:10;:12::i;:::-;24509:40;;;;;;;;;;;:::i;:::-;;;;;;;;24458:103;24402:166::o;21078:487::-;21178:24;21205:25;21215:5;21222:7;21205:9;:25::i;:::-;21178:52;;21265:17;21245:16;:37;21241:317;;21322:5;21303:16;:24;21299:132;;;21382:7;21391:16;21409:5;21355:60;;;;;;;;;;;;;:::i;:::-;;;;;;;;21299:132;21474:57;21483:5;21490:7;21518:5;21499:16;:24;21525:5;21474:8;:57::i;:::-;21241:317;21167:398;21078:487;;;:::o;15921:308::-;16021:1;16005:18;;:4;:18;;;16001:88;;16074:1;16047:30;;;;;;;;;;;:::i;:::-;;;;;;;;16001:88;16117:1;16103:16;;:2;:16;;;16099:88;;16172:1;16143:32;;;;;;;;;;;:::i;:::-;;;;;;;;16099:88;16197:24;16205:4;16211:2;16215:5;16197:7;:24::i;:::-;15921:308;;;:::o;18041:213::-;18131:1;18112:21;;:7;:21;;;18108:93;;18186:1;18157:32;;;;;;;;;;;:::i;:::-;;;;;;;;18108:93;18211:35;18227:1;18231:7;18240:5;18211:7;:35::i;:::-;18041:213;;:::o;18582:211::-;18672:1;18653:21;;:7;:21;;;18649:91;;18725:1;18698:30;;;;;;;;;;;:::i;:::-;;;;;;;;18649:91;18750:35;18758:7;18775:1;18779:5;18750:7;:35::i;:::-;18582:211;;:::o;25550:191::-;25624:16;25643:6;;;;;;;;;;;25624:25;;25669:8;25660:6;;:17;;;;;;;;;;;;;;;;;;25724:8;25693:40;;25714:8;25693:40;;;;;;;;;;;;25613:128;25550:191;:::o;22412:113::-;22470:7;22498:1;22493;:6;;22486:14;;;;:::i;:::-;;22518:1;22514;:5;;;;:::i;:::-;22507:12;;22412:113;;;;:::o;20343:443::-;20473:1;20456:19;;:5;:19;;;20452:91;;20528:1;20499:32;;;;;;;;;;;:::i;:::-;;;;;;;;20452:91;20576:1;20557:21;;:7;:21;;;20553:92;;20630:1;20602:31;;;;;;;;;;;:::i;:::-;;;;;;;;20553:92;20685:5;20655:11;:18;20667:5;20655:18;;;;;;;;;;;;;;;:27;20674:7;20655:27;;;;;;;;;;;;;;;:35;;;;20705:9;20701:78;;;20752:7;20736:31;;20745:5;20736:31;;;20761:5;20736:31;;;;;;:::i;:::-;;;;;;;;20701:78;20343:443;;;;:::o;16553:1135::-;16659:1;16643:18;;:4;:18;;;16639:552;;16797:5;16781:12;;:21;;;;;;;:::i;:::-;;;;;;;;16639:552;;;16835:19;16857:9;:15;16867:4;16857:15;;;;;;;;;;;;;;;;16835:37;;16905:5;16891:11;:19;16887:117;;;16963:4;16969:11;16982:5;16938:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;16887:117;17159:5;17145:11;:19;17127:9;:15;17137:4;17127:15;;;;;;;;;;;;;;;:37;;;;16820:371;16639:552;17221:1;17207:16;;:2;:16;;;17203:435;;17389:5;17373:12;;:21;;;;;;;;;;;17203:435;;;17606:5;17589:9;:13;17599:2;17589:13;;;;;;;;;;;;;;;;:22;;;;;;;;;;;17203:435;17670:2;17655:25;;17664:4;17655:25;;;17674:5;17655:25;;;;;;:::i;:::-;;;;;;;;16553:1135;;;:::o;7:77:1:-;44:7;73:5;62:16;;7:77;;;:::o;90:118::-;177:24;195:5;177:24;:::i;:::-;172:3;165:37;90:118;;:::o;214:222::-;307:4;345:2;334:9;330:18;322:26;;358:71;426:1;415:9;411:17;402:6;358:71;:::i;:::-;214:222;;;;:::o;442:99::-;494:6;528:5;522:12;512:22;;442:99;;;:::o;547:169::-;631:11;665:6;660:3;653:19;705:4;700:3;696:14;681:29;;547:169;;;;:::o;722:139::-;811:6;806:3;801;795:23;852:1;843:6;838:3;834:16;827:27;722:139;;;:::o;867:102::-;908:6;959:2;955:7;950:2;943:5;939:14;935:28;925:38;;867:102;;;:::o;975:377::-;1063:3;1091:39;1124:5;1091:39;:::i;:::-;1146:71;1210:6;1205:3;1146:71;:::i;:::-;1139:78;;1226:65;1284:6;1279:3;1272:4;1265:5;1261:16;1226:65;:::i;:::-;1316:29;1338:6;1316:29;:::i;:::-;1311:3;1307:39;1300:46;;1067:285;975:377;;;;:::o;1358:313::-;1471:4;1509:2;1498:9;1494:18;1486:26;;1558:9;1552:4;1548:20;1544:1;1533:9;1529:17;1522:47;1586:78;1659:4;1650:6;1586:78;:::i;:::-;1578:86;;1358:313;;;;:::o;1758:117::-;1867:1;1864;1857:12;2004:126;2041:7;2081:42;2074:5;2070:54;2059:65;;2004:126;;;:::o;2136:96::-;2173:7;2202:24;2220:5;2202:24;:::i;:::-;2191:35;;2136:96;;;:::o;2238:122::-;2311:24;2329:5;2311:24;:::i;:::-;2304:5;2301:35;2291:63;;2350:1;2347;2340:12;2291:63;2238:122;:::o;2366:139::-;2412:5;2450:6;2437:20;2428:29;;2466:33;2493:5;2466:33;:::i;:::-;2366:139;;;;:::o;2511:122::-;2584:24;2602:5;2584:24;:::i;:::-;2577:5;2574:35;2564:63;;2623:1;2620;2613:12;2564:63;2511:122;:::o;2639:139::-;2685:5;2723:6;2710:20;2701:29;;2739:33;2766:5;2739:33;:::i;:::-;2639:139;;;;:::o;2784:474::-;2852:6;2860;2909:2;2897:9;2888:7;2884:23;2880:32;2877:119;;;2915:79;;:::i;:::-;2877:119;3035:1;3060:53;3105:7;3096:6;3085:9;3081:22;3060:53;:::i;:::-;3050:63;;3006:117;3162:2;3188:53;3233:7;3224:6;3213:9;3209:22;3188:53;:::i;:::-;3178:63;;3133:118;2784:474;;;;;:::o;3264:90::-;3298:7;3341:5;3334:13;3327:21;3316:32;;3264:90;;;:::o;3360:109::-;3441:21;3456:5;3441:21;:::i;:::-;3436:3;3429:34;3360:109;;:::o;3475:210::-;3562:4;3600:2;3589:9;3585:18;3577:26;;3613:65;3675:1;3664:9;3660:17;3651:6;3613:65;:::i;:::-;3475:210;;;;:::o;3691:329::-;3750:6;3799:2;3787:9;3778:7;3774:23;3770:32;3767:119;;;3805:79;;:::i;:::-;3767:119;3925:1;3950:53;3995:7;3986:6;3975:9;3971:22;3950:53;:::i;:::-;3940:63;;3896:117;3691:329;;;;:::o;4026:619::-;4103:6;4111;4119;4168:2;4156:9;4147:7;4143:23;4139:32;4136:119;;;4174:79;;:::i;:::-;4136:119;4294:1;4319:53;4364:7;4355:6;4344:9;4340:22;4319:53;:::i;:::-;4309:63;;4265:117;4421:2;4447:53;4492:7;4483:6;4472:9;4468:22;4447:53;:::i;:::-;4437:63;;4392:118;4549:2;4575:53;4620:7;4611:6;4600:9;4596:22;4575:53;:::i;:::-;4565:63;;4520:118;4026:619;;;;;:::o;4651:86::-;4686:7;4726:4;4719:5;4715:16;4704:27;;4651:86;;;:::o;4743:112::-;4826:22;4842:5;4826:22;:::i;:::-;4821:3;4814:35;4743:112;;:::o;4861:214::-;4950:4;4988:2;4977:9;4973:18;4965:26;;5001:67;5065:1;5054:9;5050:17;5041:6;5001:67;:::i;:::-;4861:214;;;;:::o;5081:329::-;5140:6;5189:2;5177:9;5168:7;5164:23;5160:32;5157:119;;;5195:79;;:::i;:::-;5157:119;5315:1;5340:53;5385:7;5376:6;5365:9;5361:22;5340:53;:::i;:::-;5330:63;;5286:117;5081:329;;;;:::o;5416:118::-;5503:24;5521:5;5503:24;:::i;:::-;5498:3;5491:37;5416:118;;:::o;5540:222::-;5633:4;5671:2;5660:9;5656:18;5648:26;;5684:71;5752:1;5741:9;5737:17;5728:6;5684:71;:::i;:::-;5540:222;;;;:::o;5768:474::-;5836:6;5844;5893:2;5881:9;5872:7;5868:23;5864:32;5861:119;;;5899:79;;:::i;:::-;5861:119;6019:1;6044:53;6089:7;6080:6;6069:9;6065:22;6044:53;:::i;:::-;6034:63;;5990:117;6146:2;6172:53;6217:7;6208:6;6197:9;6193:22;6172:53;:::i;:::-;6162:63;;6117:118;5768:474;;;;;:::o;6248:180::-;6296:77;6293:1;6286:88;6393:4;6390:1;6383:15;6417:4;6414:1;6407:15;6434:320;6478:6;6515:1;6509:4;6505:12;6495:22;;6562:1;6556:4;6552:12;6583:18;6573:81;;6639:4;6631:6;6627:17;6617:27;;6573:81;6701:2;6693:6;6690:14;6670:18;6667:38;6664:84;;6720:18;;:::i;:::-;6664:84;6485:269;6434:320;;;:::o;6760:225::-;6900:34;6896:1;6888:6;6884:14;6877:58;6969:8;6964:2;6956:6;6952:15;6945:33;6760:225;:::o;6991:366::-;7133:3;7154:67;7218:2;7213:3;7154:67;:::i;:::-;7147:74;;7230:93;7319:3;7230:93;:::i;:::-;7348:2;7343:3;7339:12;7332:19;;6991:366;;;:::o;7363:419::-;7529:4;7567:2;7556:9;7552:18;7544:26;;7616:9;7610:4;7606:20;7602:1;7591:9;7587:17;7580:47;7644:131;7770:4;7644:131;:::i;:::-;7636:139;;7363:419;;;:::o;7788:180::-;7836:77;7833:1;7826:88;7933:4;7930:1;7923:15;7957:4;7954:1;7947:15;7974:180;8022:77;8019:1;8012:88;8119:4;8116:1;8109:15;8143:4;8140:1;8133:15;8160:194;8200:4;8220:20;8238:1;8220:20;:::i;:::-;8215:25;;8254:20;8272:1;8254:20;:::i;:::-;8249:25;;8298:1;8295;8291:9;8283:17;;8322:1;8316:4;8313:11;8310:37;;;8327:18;;:::i;:::-;8310:37;8160:194;;;;:::o;8360:180::-;8408:77;8405:1;8398:88;8505:4;8502:1;8495:15;8529:4;8526:1;8519:15;8546:174;8686:26;8682:1;8674:6;8670:14;8663:50;8546:174;:::o;8726:366::-;8868:3;8889:67;8953:2;8948:3;8889:67;:::i;:::-;8882:74;;8965:93;9054:3;8965:93;:::i;:::-;9083:2;9078:3;9074:12;9067:19;;8726:366;;;:::o;9098:419::-;9264:4;9302:2;9291:9;9287:18;9279:26;;9351:9;9345:4;9341:20;9337:1;9326:9;9322:17;9315:47;9379:131;9505:4;9379:131;:::i;:::-;9371:139;;9098:419;;;:::o;9523:442::-;9672:4;9710:2;9699:9;9695:18;9687:26;;9723:71;9791:1;9780:9;9776:17;9767:6;9723:71;:::i;:::-;9804:72;9872:2;9861:9;9857:18;9848:6;9804:72;:::i;:::-;9886;9954:2;9943:9;9939:18;9930:6;9886:72;:::i;:::-;9523:442;;;;;;:::o;9971:225::-;10111:34;10107:1;10099:6;10095:14;10088:58;10180:8;10175:2;10167:6;10163:15;10156:33;9971:225;:::o;10202:366::-;10344:3;10365:67;10429:2;10424:3;10365:67;:::i;:::-;10358:74;;10441:93;10530:3;10441:93;:::i;:::-;10559:2;10554:3;10550:12;10543:19;;10202:366;;;:::o;10574:419::-;10740:4;10778:2;10767:9;10763:18;10755:26;;10827:9;10821:4;10817:20;10813:1;10802:9;10798:17;10791:47;10855:131;10981:4;10855:131;:::i;:::-;10847:139;;10574:419;;;:::o;10999:180::-;11047:77;11044:1;11037:88;11144:4;11141:1;11134:15;11168:4;11165:1;11158:15;11185:191;11225:3;11244:20;11262:1;11244:20;:::i;:::-;11239:25;;11278:20;11296:1;11278:20;:::i;:::-;11273:25;;11321:1;11318;11314:9;11307:16;;11342:3;11339:1;11336:10;11333:36;;;11349:18;;:::i;:::-;11333:36;11185:191;;;;:::o
Swarm Source
ipfs://672af6f5719828e174abfdf801909c1353ea9cb722217aef97049256f6e365a8
[ 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.