Polygon Sponsored slots available. Book your slot here!
Overview
POL Balance
0 POL
POL Value
$0.00More Info
Private Name Tags
ContractCreator
Loading...
Loading
Contract Name:
GhostMarketToken
Compiler Version
v0.8.11+commit.d7f03943
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts-upgradeable/token/ERC20/ERC20Upgradeable.sol"; import "@openzeppelin/contracts-upgradeable/token/ERC20/extensions/ERC20BurnableUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol"; contract GhostMarketToken is Initializable, ERC20Upgradeable, OwnableUpgradeable, PausableUpgradeable { uint8 private _decimals; function initialize(string memory name, string memory symbol, uint256 initialSupply, uint8 __decimals) public virtual initializer { __Ownable_init_unchained(); __Pausable_init_unchained(); __ERC20_init(name, symbol); _mint(_msgSender(), initialSupply); _decimals = __decimals; } function pause() public onlyOwner { _pause(); } function unpause() public onlyOwner { _unpause(); } function _beforeTokenTransfer(address from, address to, uint256 amount) internal whenNotPaused override { super._beforeTokenTransfer(from, to, amount); } function decimals() public view override returns (uint8) { return _decimals; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../proxy/utils/Initializable.sol"; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract ContextUpgradeable is Initializable { function __Context_init() internal initializer { __Context_init_unchained(); } function __Context_init_unchained() internal initializer { } function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } uint256[50] private __gap; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../IERC20Upgradeable.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20MetadataUpgradeable is IERC20Upgradeable { /** * @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); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../ERC20Upgradeable.sol"; import "../../../utils/ContextUpgradeable.sol"; import "../../../proxy/utils/Initializable.sol"; /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20BurnableUpgradeable is Initializable, ContextUpgradeable, ERC20Upgradeable { function __ERC20Burnable_init() internal initializer { __Context_init_unchained(); __ERC20Burnable_init_unchained(); } function __ERC20Burnable_init_unchained() internal initializer { } /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @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 { uint256 currentAllowance = allowance(account, _msgSender()); require(currentAllowance >= amount, "ERC20: burn amount exceeds allowance"); unchecked { _approve(account, _msgSender(), currentAllowance - amount); } _burn(account, amount); } uint256[50] private __gap; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20Upgradeable { /** * @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.8.0; import "./IERC20Upgradeable.sol"; import "./extensions/IERC20MetadataUpgradeable.sol"; import "../../utils/ContextUpgradeable.sol"; import "../../proxy/utils/Initializable.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 ERC20Upgradeable is Initializable, ContextUpgradeable, IERC20Upgradeable, IERC20MetadataUpgradeable { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ function __ERC20_init(string memory name_, string memory symbol_) internal initializer { __Context_init_unchained(); __ERC20_init_unchained(name_, symbol_); } function __ERC20_init_unchained(string memory name_, string memory symbol_) internal initializer { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} uint256[45] private __gap; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../utils/ContextUpgradeable.sol"; import "../proxy/utils/Initializable.sol"; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract PausableUpgradeable is Initializable, ContextUpgradeable { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ function __Pausable_init() internal initializer { __Context_init_unchained(); __Pausable_init_unchained(); } function __Pausable_init_unchained() internal initializer { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } uint256[49] private __gap; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed * behind a proxy. Since a proxied contract can't have a constructor, it's common to move constructor logic to an * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect. * * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}. * * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity. */ abstract contract Initializable { /** * @dev Indicates that the contract has been initialized. */ bool private _initialized; /** * @dev Indicates that the contract is in the process of being initialized. */ bool private _initializing; /** * @dev Modifier to protect an initializer function from being invoked twice. */ modifier initializer() { require(_initializing || !_initialized, "Initializable: contract is already initialized"); bool isTopLevelCall = !_initializing; if (isTopLevelCall) { _initializing = true; _initialized = true; } _; if (isTopLevelCall) { _initializing = false; } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../utils/ContextUpgradeable.sol"; import "../proxy/utils/Initializable.sol"; /** * @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. * * By default, the owner account will be the one that deploys the contract. 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 OwnableUpgradeable is Initializable, ContextUpgradeable { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ function __Ownable_init() internal initializer { __Context_init_unchained(); __Ownable_init_unchained(); } function __Ownable_init_unchained() internal initializer { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(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 { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } uint256[49] private __gap; }
{ "remappings": [], "optimizer": { "enabled": false, "runs": 200 }, "evmVersion": "london", "libraries": {}, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint256","name":"initialSupply","type":"uint256"},{"internalType":"uint8","name":"__decimals","type":"uint8"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405234801561001057600080fd5b506126cb806100206000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c806370a08231116100a257806395d89b411161007157806395d89b41146102ab578063a457c2d7146102c9578063a9059cbb146102f9578063dd62ed3e14610329578063f2fde38b1461035957610116565b806370a0823114610249578063715018a6146102795780638456cb59146102835780638da5cb5b1461028d57610116565b8063313ce567116100e9578063313ce567146101b757806339509351146101d55780633f4ba83a1461020557806341658f3c1461020f5780635c975abb1461022b57610116565b806306fdde031461011b578063095ea7b31461013957806318160ddd1461016957806323b872dd14610187575b600080fd5b610123610375565b6040516101309190611a52565b60405180910390f35b610153600480360381019061014e9190611b1c565b610407565b6040516101609190611b77565b60405180910390f35b610171610425565b60405161017e9190611ba1565b60405180910390f35b6101a1600480360381019061019c9190611bbc565b61042f565b6040516101ae9190611b77565b60405180910390f35b6101bf610527565b6040516101cc9190611c2b565b60405180910390f35b6101ef60048036038101906101ea9190611b1c565b61053e565b6040516101fc9190611b77565b60405180910390f35b61020d6105ea565b005b61022960048036038101906102249190611da7565b610670565b005b610233610793565b6040516102409190611b77565b60405180910390f35b610263600480360381019061025e9190611e46565b6107aa565b6040516102709190611ba1565b60405180910390f35b6102816107f3565b005b61028b61087b565b005b610295610901565b6040516102a29190611e82565b60405180910390f35b6102b361092b565b6040516102c09190611a52565b60405180910390f35b6102e360048036038101906102de9190611b1c565b6109bd565b6040516102f09190611b77565b60405180910390f35b610313600480360381019061030e9190611b1c565b610aa8565b6040516103209190611b77565b60405180910390f35b610343600480360381019061033e9190611e9d565b610ac6565b6040516103509190611ba1565b60405180910390f35b610373600480360381019061036e9190611e46565b610b4d565b005b60606036805461038490611f0c565b80601f01602080910402602001604051908101604052809291908181526020018280546103b090611f0c565b80156103fd5780601f106103d2576101008083540402835291602001916103fd565b820191906000526020600020905b8154815290600101906020018083116103e057829003601f168201915b5050505050905090565b600061041b610414610c45565b8484610c4d565b6001905092915050565b6000603554905090565b600061043c848484610e18565b6000603460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610487610c45565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610507576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104fe90611fb0565b60405180910390fd5b61051b85610513610c45565b858403610c4d565b60019150509392505050565b600060c960009054906101000a900460ff16905090565b60006105e061054b610c45565b848460346000610559610c45565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105db9190611fff565b610c4d565b6001905092915050565b6105f2610c45565b73ffffffffffffffffffffffffffffffffffffffff16610610610901565b73ffffffffffffffffffffffffffffffffffffffff1614610666576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161065d906120a1565b60405180910390fd5b61066e61109c565b565b600060019054906101000a900460ff1680610696575060008054906101000a900460ff16155b6106d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106cc90612133565b60405180910390fd5b60008060019054906101000a900460ff161590508015610725576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b61072d61113e565b610735611227565b61073f858561131b565b61075061074a610c45565b84611408565b8160c960006101000a81548160ff021916908360ff160217905550801561078c5760008060016101000a81548160ff0219169083151502179055505b5050505050565b6000609760009054906101000a900460ff16905090565b6000603360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6107fb610c45565b73ffffffffffffffffffffffffffffffffffffffff16610819610901565b73ffffffffffffffffffffffffffffffffffffffff161461086f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610866906120a1565b60405180910390fd5b6108796000611569565b565b610883610c45565b73ffffffffffffffffffffffffffffffffffffffff166108a1610901565b73ffffffffffffffffffffffffffffffffffffffff16146108f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ee906120a1565b60405180910390fd5b6108ff61162f565b565b6000606560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606037805461093a90611f0c565b80601f016020809104026020016040519081016040528092919081815260200182805461096690611f0c565b80156109b35780601f10610988576101008083540402835291602001916109b3565b820191906000526020600020905b81548152906001019060200180831161099657829003601f168201915b5050505050905090565b600080603460006109cc610c45565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610a89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a80906121c5565b60405180910390fd5b610a9d610a94610c45565b85858403610c4d565b600191505092915050565b6000610abc610ab5610c45565b8484610e18565b6001905092915050565b6000603460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610b55610c45565b73ffffffffffffffffffffffffffffffffffffffff16610b73610901565b73ffffffffffffffffffffffffffffffffffffffff1614610bc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc0906120a1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3090612257565b60405180910390fd5b610c4281611569565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb4906122e9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d249061237b565b60405180910390fd5b80603460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e0b9190611ba1565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7f9061240d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ef8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eef9061249f565b60405180910390fd5b610f038383836116d2565b6000603360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610f8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8190612531565b60405180910390fd5b818103603360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081603360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461101f9190611fff565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110839190611ba1565b60405180910390a361109684848461172a565b50505050565b6110a4610793565b6110e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110da9061259d565b60405180910390fd5b6000609760006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611127610c45565b6040516111349190611e82565b60405180910390a1565b600060019054906101000a900460ff1680611164575060008054906101000a900460ff16155b6111a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119a90612133565b60405180910390fd5b60008060019054906101000a900460ff1615905080156111f3576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b6112036111fe610c45565b611569565b80156112245760008060016101000a81548160ff0219169083151502179055505b50565b600060019054906101000a900460ff168061124d575060008054906101000a900460ff16155b61128c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128390612133565b60405180910390fd5b60008060019054906101000a900460ff1615905080156112dc576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b6000609760006101000a81548160ff02191690831515021790555080156113185760008060016101000a81548160ff0219169083151502179055505b50565b600060019054906101000a900460ff1680611341575060008054906101000a900460ff16155b611380576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137790612133565b60405180910390fd5b60008060019054906101000a900460ff1615905080156113d0576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b6113d861172f565b6113e28383611808565b80156114035760008060016101000a81548160ff0219169083151502179055505b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611478576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146f90612609565b60405180910390fd5b611484600083836116d2565b80603560008282546114969190611fff565b9250508190555080603360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114ec9190611fff565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516115519190611ba1565b60405180910390a36115656000838361172a565b5050565b6000606560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081606560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611637610793565b15611677576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166e90612675565b60405180910390fd5b6001609760006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586116bb610c45565b6040516116c89190611e82565b60405180910390a1565b6116da610793565b1561171a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171190612675565b60405180910390fd5b611725838383611911565b505050565b505050565b600060019054906101000a900460ff1680611755575060008054906101000a900460ff16155b611794576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178b90612133565b60405180910390fd5b60008060019054906101000a900460ff1615905080156117e4576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b80156118055760008060016101000a81548160ff0219169083151502179055505b50565b600060019054906101000a900460ff168061182e575060008054906101000a900460ff16155b61186d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186490612133565b60405180910390fd5b60008060019054906101000a900460ff1615905080156118bd576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b82603690805190602001906118d3929190611916565b5081603790805190602001906118ea929190611916565b50801561190c5760008060016101000a81548160ff0219169083151502179055505b505050565b505050565b82805461192290611f0c565b90600052602060002090601f016020900481019282611944576000855561198b565b82601f1061195d57805160ff191683800117855561198b565b8280016001018555821561198b579182015b8281111561198a57825182559160200191906001019061196f565b5b509050611998919061199c565b5090565b5b808211156119b557600081600090555060010161199d565b5090565b600081519050919050565b600082825260208201905092915050565b60005b838110156119f35780820151818401526020810190506119d8565b83811115611a02576000848401525b50505050565b6000601f19601f8301169050919050565b6000611a24826119b9565b611a2e81856119c4565b9350611a3e8185602086016119d5565b611a4781611a08565b840191505092915050565b60006020820190508181036000830152611a6c8184611a19565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611ab382611a88565b9050919050565b611ac381611aa8565b8114611ace57600080fd5b50565b600081359050611ae081611aba565b92915050565b6000819050919050565b611af981611ae6565b8114611b0457600080fd5b50565b600081359050611b1681611af0565b92915050565b60008060408385031215611b3357611b32611a7e565b5b6000611b4185828601611ad1565b9250506020611b5285828601611b07565b9150509250929050565b60008115159050919050565b611b7181611b5c565b82525050565b6000602082019050611b8c6000830184611b68565b92915050565b611b9b81611ae6565b82525050565b6000602082019050611bb66000830184611b92565b92915050565b600080600060608486031215611bd557611bd4611a7e565b5b6000611be386828701611ad1565b9350506020611bf486828701611ad1565b9250506040611c0586828701611b07565b9150509250925092565b600060ff82169050919050565b611c2581611c0f565b82525050565b6000602082019050611c406000830184611c1c565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611c8882611a08565b810181811067ffffffffffffffff82111715611ca757611ca6611c50565b5b80604052505050565b6000611cba611a74565b9050611cc68282611c7f565b919050565b600067ffffffffffffffff821115611ce657611ce5611c50565b5b611cef82611a08565b9050602081019050919050565b82818337600083830152505050565b6000611d1e611d1984611ccb565b611cb0565b905082815260208101848484011115611d3a57611d39611c4b565b5b611d45848285611cfc565b509392505050565b600082601f830112611d6257611d61611c46565b5b8135611d72848260208601611d0b565b91505092915050565b611d8481611c0f565b8114611d8f57600080fd5b50565b600081359050611da181611d7b565b92915050565b60008060008060808587031215611dc157611dc0611a7e565b5b600085013567ffffffffffffffff811115611ddf57611dde611a83565b5b611deb87828801611d4d565b945050602085013567ffffffffffffffff811115611e0c57611e0b611a83565b5b611e1887828801611d4d565b9350506040611e2987828801611b07565b9250506060611e3a87828801611d92565b91505092959194509250565b600060208284031215611e5c57611e5b611a7e565b5b6000611e6a84828501611ad1565b91505092915050565b611e7c81611aa8565b82525050565b6000602082019050611e976000830184611e73565b92915050565b60008060408385031215611eb457611eb3611a7e565b5b6000611ec285828601611ad1565b9250506020611ed385828601611ad1565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611f2457607f821691505b60208210811415611f3857611f37611edd565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000611f9a6028836119c4565b9150611fa582611f3e565b604082019050919050565b60006020820190508181036000830152611fc981611f8d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061200a82611ae6565b915061201583611ae6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561204a57612049611fd0565b5b828201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061208b6020836119c4565b915061209682612055565b602082019050919050565b600060208201905081810360008301526120ba8161207e565b9050919050565b7f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160008201527f647920696e697469616c697a6564000000000000000000000000000000000000602082015250565b600061211d602e836119c4565b9150612128826120c1565b604082019050919050565b6000602082019050818103600083015261214c81612110565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006121af6025836119c4565b91506121ba82612153565b604082019050919050565b600060208201905081810360008301526121de816121a2565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006122416026836119c4565b915061224c826121e5565b604082019050919050565b6000602082019050818103600083015261227081612234565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006122d36024836119c4565b91506122de82612277565b604082019050919050565b60006020820190508181036000830152612302816122c6565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006123656022836119c4565b915061237082612309565b604082019050919050565b6000602082019050818103600083015261239481612358565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006123f76025836119c4565b91506124028261239b565b604082019050919050565b60006020820190508181036000830152612426816123ea565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006124896023836119c4565b91506124948261242d565b604082019050919050565b600060208201905081810360008301526124b88161247c565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061251b6026836119c4565b9150612526826124bf565b604082019050919050565b6000602082019050818103600083015261254a8161250e565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b60006125876014836119c4565b915061259282612551565b602082019050919050565b600060208201905081810360008301526125b68161257a565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006125f3601f836119c4565b91506125fe826125bd565b602082019050919050565b60006020820190508181036000830152612622816125e6565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b600061265f6010836119c4565b915061266a82612629565b602082019050919050565b6000602082019050818103600083015261268e81612652565b905091905056fea26469706673582212206b430e75284dbd7ff3ad3a37901c5453a34dd94a8eb5b4ca6ca8488a5ca1cea264736f6c634300080b0033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101165760003560e01c806370a08231116100a257806395d89b411161007157806395d89b41146102ab578063a457c2d7146102c9578063a9059cbb146102f9578063dd62ed3e14610329578063f2fde38b1461035957610116565b806370a0823114610249578063715018a6146102795780638456cb59146102835780638da5cb5b1461028d57610116565b8063313ce567116100e9578063313ce567146101b757806339509351146101d55780633f4ba83a1461020557806341658f3c1461020f5780635c975abb1461022b57610116565b806306fdde031461011b578063095ea7b31461013957806318160ddd1461016957806323b872dd14610187575b600080fd5b610123610375565b6040516101309190611a52565b60405180910390f35b610153600480360381019061014e9190611b1c565b610407565b6040516101609190611b77565b60405180910390f35b610171610425565b60405161017e9190611ba1565b60405180910390f35b6101a1600480360381019061019c9190611bbc565b61042f565b6040516101ae9190611b77565b60405180910390f35b6101bf610527565b6040516101cc9190611c2b565b60405180910390f35b6101ef60048036038101906101ea9190611b1c565b61053e565b6040516101fc9190611b77565b60405180910390f35b61020d6105ea565b005b61022960048036038101906102249190611da7565b610670565b005b610233610793565b6040516102409190611b77565b60405180910390f35b610263600480360381019061025e9190611e46565b6107aa565b6040516102709190611ba1565b60405180910390f35b6102816107f3565b005b61028b61087b565b005b610295610901565b6040516102a29190611e82565b60405180910390f35b6102b361092b565b6040516102c09190611a52565b60405180910390f35b6102e360048036038101906102de9190611b1c565b6109bd565b6040516102f09190611b77565b60405180910390f35b610313600480360381019061030e9190611b1c565b610aa8565b6040516103209190611b77565b60405180910390f35b610343600480360381019061033e9190611e9d565b610ac6565b6040516103509190611ba1565b60405180910390f35b610373600480360381019061036e9190611e46565b610b4d565b005b60606036805461038490611f0c565b80601f01602080910402602001604051908101604052809291908181526020018280546103b090611f0c565b80156103fd5780601f106103d2576101008083540402835291602001916103fd565b820191906000526020600020905b8154815290600101906020018083116103e057829003601f168201915b5050505050905090565b600061041b610414610c45565b8484610c4d565b6001905092915050565b6000603554905090565b600061043c848484610e18565b6000603460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610487610c45565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610507576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104fe90611fb0565b60405180910390fd5b61051b85610513610c45565b858403610c4d565b60019150509392505050565b600060c960009054906101000a900460ff16905090565b60006105e061054b610c45565b848460346000610559610c45565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105db9190611fff565b610c4d565b6001905092915050565b6105f2610c45565b73ffffffffffffffffffffffffffffffffffffffff16610610610901565b73ffffffffffffffffffffffffffffffffffffffff1614610666576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161065d906120a1565b60405180910390fd5b61066e61109c565b565b600060019054906101000a900460ff1680610696575060008054906101000a900460ff16155b6106d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106cc90612133565b60405180910390fd5b60008060019054906101000a900460ff161590508015610725576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b61072d61113e565b610735611227565b61073f858561131b565b61075061074a610c45565b84611408565b8160c960006101000a81548160ff021916908360ff160217905550801561078c5760008060016101000a81548160ff0219169083151502179055505b5050505050565b6000609760009054906101000a900460ff16905090565b6000603360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6107fb610c45565b73ffffffffffffffffffffffffffffffffffffffff16610819610901565b73ffffffffffffffffffffffffffffffffffffffff161461086f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610866906120a1565b60405180910390fd5b6108796000611569565b565b610883610c45565b73ffffffffffffffffffffffffffffffffffffffff166108a1610901565b73ffffffffffffffffffffffffffffffffffffffff16146108f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ee906120a1565b60405180910390fd5b6108ff61162f565b565b6000606560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606037805461093a90611f0c565b80601f016020809104026020016040519081016040528092919081815260200182805461096690611f0c565b80156109b35780601f10610988576101008083540402835291602001916109b3565b820191906000526020600020905b81548152906001019060200180831161099657829003601f168201915b5050505050905090565b600080603460006109cc610c45565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610a89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a80906121c5565b60405180910390fd5b610a9d610a94610c45565b85858403610c4d565b600191505092915050565b6000610abc610ab5610c45565b8484610e18565b6001905092915050565b6000603460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610b55610c45565b73ffffffffffffffffffffffffffffffffffffffff16610b73610901565b73ffffffffffffffffffffffffffffffffffffffff1614610bc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc0906120a1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3090612257565b60405180910390fd5b610c4281611569565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb4906122e9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d249061237b565b60405180910390fd5b80603460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e0b9190611ba1565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7f9061240d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ef8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eef9061249f565b60405180910390fd5b610f038383836116d2565b6000603360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610f8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8190612531565b60405180910390fd5b818103603360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081603360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461101f9190611fff565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110839190611ba1565b60405180910390a361109684848461172a565b50505050565b6110a4610793565b6110e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110da9061259d565b60405180910390fd5b6000609760006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611127610c45565b6040516111349190611e82565b60405180910390a1565b600060019054906101000a900460ff1680611164575060008054906101000a900460ff16155b6111a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119a90612133565b60405180910390fd5b60008060019054906101000a900460ff1615905080156111f3576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b6112036111fe610c45565b611569565b80156112245760008060016101000a81548160ff0219169083151502179055505b50565b600060019054906101000a900460ff168061124d575060008054906101000a900460ff16155b61128c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128390612133565b60405180910390fd5b60008060019054906101000a900460ff1615905080156112dc576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b6000609760006101000a81548160ff02191690831515021790555080156113185760008060016101000a81548160ff0219169083151502179055505b50565b600060019054906101000a900460ff1680611341575060008054906101000a900460ff16155b611380576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137790612133565b60405180910390fd5b60008060019054906101000a900460ff1615905080156113d0576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b6113d861172f565b6113e28383611808565b80156114035760008060016101000a81548160ff0219169083151502179055505b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611478576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146f90612609565b60405180910390fd5b611484600083836116d2565b80603560008282546114969190611fff565b9250508190555080603360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114ec9190611fff565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516115519190611ba1565b60405180910390a36115656000838361172a565b5050565b6000606560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081606560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611637610793565b15611677576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166e90612675565b60405180910390fd5b6001609760006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586116bb610c45565b6040516116c89190611e82565b60405180910390a1565b6116da610793565b1561171a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171190612675565b60405180910390fd5b611725838383611911565b505050565b505050565b600060019054906101000a900460ff1680611755575060008054906101000a900460ff16155b611794576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178b90612133565b60405180910390fd5b60008060019054906101000a900460ff1615905080156117e4576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b80156118055760008060016101000a81548160ff0219169083151502179055505b50565b600060019054906101000a900460ff168061182e575060008054906101000a900460ff16155b61186d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186490612133565b60405180910390fd5b60008060019054906101000a900460ff1615905080156118bd576001600060016101000a81548160ff02191690831515021790555060016000806101000a81548160ff0219169083151502179055505b82603690805190602001906118d3929190611916565b5081603790805190602001906118ea929190611916565b50801561190c5760008060016101000a81548160ff0219169083151502179055505b505050565b505050565b82805461192290611f0c565b90600052602060002090601f016020900481019282611944576000855561198b565b82601f1061195d57805160ff191683800117855561198b565b8280016001018555821561198b579182015b8281111561198a57825182559160200191906001019061196f565b5b509050611998919061199c565b5090565b5b808211156119b557600081600090555060010161199d565b5090565b600081519050919050565b600082825260208201905092915050565b60005b838110156119f35780820151818401526020810190506119d8565b83811115611a02576000848401525b50505050565b6000601f19601f8301169050919050565b6000611a24826119b9565b611a2e81856119c4565b9350611a3e8185602086016119d5565b611a4781611a08565b840191505092915050565b60006020820190508181036000830152611a6c8184611a19565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611ab382611a88565b9050919050565b611ac381611aa8565b8114611ace57600080fd5b50565b600081359050611ae081611aba565b92915050565b6000819050919050565b611af981611ae6565b8114611b0457600080fd5b50565b600081359050611b1681611af0565b92915050565b60008060408385031215611b3357611b32611a7e565b5b6000611b4185828601611ad1565b9250506020611b5285828601611b07565b9150509250929050565b60008115159050919050565b611b7181611b5c565b82525050565b6000602082019050611b8c6000830184611b68565b92915050565b611b9b81611ae6565b82525050565b6000602082019050611bb66000830184611b92565b92915050565b600080600060608486031215611bd557611bd4611a7e565b5b6000611be386828701611ad1565b9350506020611bf486828701611ad1565b9250506040611c0586828701611b07565b9150509250925092565b600060ff82169050919050565b611c2581611c0f565b82525050565b6000602082019050611c406000830184611c1c565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611c8882611a08565b810181811067ffffffffffffffff82111715611ca757611ca6611c50565b5b80604052505050565b6000611cba611a74565b9050611cc68282611c7f565b919050565b600067ffffffffffffffff821115611ce657611ce5611c50565b5b611cef82611a08565b9050602081019050919050565b82818337600083830152505050565b6000611d1e611d1984611ccb565b611cb0565b905082815260208101848484011115611d3a57611d39611c4b565b5b611d45848285611cfc565b509392505050565b600082601f830112611d6257611d61611c46565b5b8135611d72848260208601611d0b565b91505092915050565b611d8481611c0f565b8114611d8f57600080fd5b50565b600081359050611da181611d7b565b92915050565b60008060008060808587031215611dc157611dc0611a7e565b5b600085013567ffffffffffffffff811115611ddf57611dde611a83565b5b611deb87828801611d4d565b945050602085013567ffffffffffffffff811115611e0c57611e0b611a83565b5b611e1887828801611d4d565b9350506040611e2987828801611b07565b9250506060611e3a87828801611d92565b91505092959194509250565b600060208284031215611e5c57611e5b611a7e565b5b6000611e6a84828501611ad1565b91505092915050565b611e7c81611aa8565b82525050565b6000602082019050611e976000830184611e73565b92915050565b60008060408385031215611eb457611eb3611a7e565b5b6000611ec285828601611ad1565b9250506020611ed385828601611ad1565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611f2457607f821691505b60208210811415611f3857611f37611edd565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000611f9a6028836119c4565b9150611fa582611f3e565b604082019050919050565b60006020820190508181036000830152611fc981611f8d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061200a82611ae6565b915061201583611ae6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561204a57612049611fd0565b5b828201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061208b6020836119c4565b915061209682612055565b602082019050919050565b600060208201905081810360008301526120ba8161207e565b9050919050565b7f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160008201527f647920696e697469616c697a6564000000000000000000000000000000000000602082015250565b600061211d602e836119c4565b9150612128826120c1565b604082019050919050565b6000602082019050818103600083015261214c81612110565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006121af6025836119c4565b91506121ba82612153565b604082019050919050565b600060208201905081810360008301526121de816121a2565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006122416026836119c4565b915061224c826121e5565b604082019050919050565b6000602082019050818103600083015261227081612234565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006122d36024836119c4565b91506122de82612277565b604082019050919050565b60006020820190508181036000830152612302816122c6565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006123656022836119c4565b915061237082612309565b604082019050919050565b6000602082019050818103600083015261239481612358565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006123f76025836119c4565b91506124028261239b565b604082019050919050565b60006020820190508181036000830152612426816123ea565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006124896023836119c4565b91506124948261242d565b604082019050919050565b600060208201905081810360008301526124b88161247c565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061251b6026836119c4565b9150612526826124bf565b604082019050919050565b6000602082019050818103600083015261254a8161250e565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b60006125876014836119c4565b915061259282612551565b602082019050919050565b600060208201905081810360008301526125b68161257a565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006125f3601f836119c4565b91506125fe826125bd565b602082019050919050565b60006020820190508181036000830152612622816125e6565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b600061265f6010836119c4565b915061266a82612629565b602082019050919050565b6000602082019050818103600083015261268e81612652565b905091905056fea26469706673582212206b430e75284dbd7ff3ad3a37901c5453a34dd94a8eb5b4ca6ca8488a5ca1cea264736f6c634300080b0033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.