Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 1,558 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 21464280 | 28 hrs ago | IN | 0 ETH | 0.00034381 | ||||
Approve | 21464188 | 29 hrs ago | IN | 0 ETH | 0.0003496 | ||||
Approve | 21463783 | 30 hrs ago | IN | 0 ETH | 0.00024267 | ||||
Approve | 21463763 | 30 hrs ago | IN | 0 ETH | 0.00022857 | ||||
Approve | 21463751 | 30 hrs ago | IN | 0 ETH | 0.0002233 | ||||
Approve | 21463738 | 30 hrs ago | IN | 0 ETH | 0.00024957 | ||||
Approve | 21463725 | 30 hrs ago | IN | 0 ETH | 0.00024525 | ||||
Approve | 21463719 | 30 hrs ago | IN | 0 ETH | 0.0002687 | ||||
Approve | 21463691 | 30 hrs ago | IN | 0 ETH | 0.00021616 | ||||
Approve | 21463679 | 30 hrs ago | IN | 0 ETH | 0.00022455 | ||||
Approve | 21463674 | 30 hrs ago | IN | 0 ETH | 0.00023918 | ||||
Approve | 21456064 | 2 days ago | IN | 0 ETH | 0.00024263 | ||||
Approve | 21408465 | 8 days ago | IN | 0 ETH | 0.00051243 | ||||
Approve | 21367204 | 14 days ago | IN | 0 ETH | 0.00145195 | ||||
Approve | 21367189 | 14 days ago | IN | 0 ETH | 0.00153882 | ||||
Approve | 21349814 | 17 days ago | IN | 0 ETH | 0.00061249 | ||||
Approve | 21320125 | 21 days ago | IN | 0 ETH | 0.0008224 | ||||
Approve | 21300201 | 24 days ago | IN | 0 ETH | 0.00032874 | ||||
Approve | 21289445 | 25 days ago | IN | 0 ETH | 0.00036978 | ||||
Approve | 21271809 | 28 days ago | IN | 0 ETH | 0.00048521 | ||||
Approve | 21232693 | 33 days ago | IN | 0 ETH | 0.00041736 | ||||
Approve | 21167081 | 42 days ago | IN | 0 ETH | 0.00094948 | ||||
Approve | 21167081 | 42 days ago | IN | 0 ETH | 0.0016657 | ||||
Approve | 21116502 | 49 days ago | IN | 0 ETH | 0.00023917 | ||||
Approve | 21048392 | 59 days ago | IN | 0 ETH | 0.00020148 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
OperatingSystem
Compiler Version
v0.8.9+commit.e5eed63a
Contract Source Code (Solidity Standard Json-Input format)
//SPDX-License-Identifier: Unlicense pragma solidity = 0.8.9; /* ^PY??????????????????????????????YP^ !G! !G! 7BY7???????????????????????????????J?YB7 5Y Y5 Y G:?5YYYYYYYYYYYYYYYYYYYYYYY57:B7 YY Y PJ5 PJG YY Y GG7 .@@@@@. .@@@@@@~ 7GG YY Y GG7 G@# &J@ #5 ?PG YY Y GG7 G@@ B@@ ~5??Y5~. ?PG YY Y GG7 G@@ G@@ 5# ?PG YY Y GG7 55JJYP? PYJJ5P? 7PG YY Y PPJ YPG YY Y G:YJ77777777777777777777777JY:G7 YY Y - + () Y5 BJ??????????????????????????????????????JB 5Y ?::??::??::??::??::??::??::??::??::? Y5 !B. ^YJ!:JJ7:?J?:7J?^~JJ~^?J7:?J?:7JJ:!JY^ .B! :G~ :??~:??7.???.7??:~??^^??~:??7.???.7??:~??: ~G: 5P^^~~^~^~~~^~~~^~~~~~~^~^~~~^~~~^^~~^^^~~~^^~~^^P5 */ import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol"; /// @title Stablz Operating System contract OperatingSystem is ERC20Burnable, Ownable { /// @dev whitelist addresses for minting, burning and transferring to or from mapping(address => bool) public whitelist; modifier onlyWhitelisted() { require(whitelist[_msgSender()], "OperatingSystem: Only whitelisted addresses can call this function"); _; } event WhitelistUpdated(address account, bool isWhitelisted); constructor() ERC20("Operating System", "OS") { } /// @notice Mint stakedStablz /// @param _account Address to mint tokens to /// @param _amount Number of tokens to mint function mint(address _account, uint _amount) external onlyWhitelisted { _mint(_account, _amount); } /// @notice Burn stakedStablz /// @param _amount Amount to burn function burn(uint _amount) public override onlyWhitelisted { super.burn(_amount); } /// @notice Burn stakedStablz from an address /// @param _account Address to burn from (caller has to be approved) /// @param _amount Amount to burn function burnFrom(address _account, uint _amount) public override onlyWhitelisted { super.burnFrom(_account, _amount); } /// @notice Update whitelist /// @param _account Account /// @param _whitelist true = add to whitelist, false = remove from whitelist function updateWhitelist(address _account, bool _whitelist) external onlyOwner { whitelist[_account] = _whitelist; emit WhitelistUpdated(_account, _whitelist); } function _beforeTokenTransfer( address from, address to, uint256 amount ) internal override { super._beforeTokenTransfer(from, to, amount); if (from != address(0) && to != address(0)) { /// @dev tokens can only be transferred to or from whitelisted address require(whitelist[from] || whitelist[to], "OperatingSystem: Can only transfer to or from whitelisted addresses"); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol) pragma solidity ^0.8.0; import "../ERC20.sol"; import "../../../utils/Context.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 ERC20Burnable is Context, ERC20 { /** * @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 { _spendAllowance(account, _msgSender(), amount); _burn(account, amount); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.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.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, 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}. * * NOTE: If `amount` 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 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, 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}. * * 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 `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, 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) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, 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) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `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. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, 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; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _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; // Overflow not possible: amount <= accountBalance <= totalSupply. _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 Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - 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 {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.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 Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @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 { 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 { _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 { require(newOwner != address(0), "Ownable: new owner is the zero address"); _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); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ 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 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 `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, 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 `from` to `to` 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 from, address to, uint256 amount ) external returns (bool); }
{ "optimizer": { "enabled": true, "runs": 1000 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isWhitelisted","type":"bool"}],"name":"WhitelistUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","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":"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":"amount","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":"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":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"bool","name":"_whitelist","type":"bool"}],"name":"updateWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b50604080518082018252601081526f4f7065726174696e672053797374656d60801b6020808301918252835180850190945260028452614f5360f01b9084015281519192916200006491600391620000f3565b5080516200007a906004906020840190620000f3565b50505062000097620000916200009d60201b60201c565b620000a1565b620001d6565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001019062000199565b90600052602060002090601f01602090048101928262000125576000855562000170565b82601f106200014057805160ff191683800117855562000170565b8280016001018555821562000170579182015b828111156200017057825182559160200191906001019062000153565b506200017e92915062000182565b5090565b5b808211156200017e576000815560010162000183565b600181811c90821680620001ae57607f821691505b60208210811415620001d057634e487b7160e01b600052602260045260246000fd5b50919050565b6111ec80620001e66000396000f3fe608060405234801561001057600080fd5b50600436106101515760003560e01c806370a08231116100cd5780639b19251a11610081578063a9059cbb11610066578063a9059cbb146102b6578063dd62ed3e146102c9578063f2fde38b1461030257600080fd5b80639b19251a14610280578063a457c2d7146102a357600080fd5b806379cc6790116100b257806379cc67901461024a5780638da5cb5b1461025d57806395d89b411461027857600080fd5b806370a0823114610219578063715018a61461024257600080fd5b806323b872dd11610124578063395093511161010957806339509351146101e057806340c10f19146101f357806342966c681461020657600080fd5b806323b872dd146101be578063313ce567146101d157600080fd5b806306fdde0314610156578063095ea7b3146101745780630d392cd91461019757806318160ddd146101ac575b600080fd5b61015e610315565b60405161016b9190610fd4565b60405180910390f35b610187610182366004611045565b6103a7565b604051901515815260200161016b565b6101aa6101a536600461106f565b6103bf565b005b6002545b60405190815260200161016b565b6101876101cc3660046110ab565b61042a565b6040516012815260200161016b565b6101876101ee366004611045565b61044e565b6101aa610201366004611045565b61048d565b6101aa6102143660046110e7565b610530565b6101b0610227366004611100565b6001600160a01b031660009081526020819052604090205490565b6101aa6105cc565b6101aa610258366004611045565b6105e0565b6005546040516001600160a01b03909116815260200161016b565b61015e61067a565b61018761028e366004611100565b60066020526000908152604090205460ff1681565b6101876102b1366004611045565b610689565b6101876102c4366004611045565b610733565b6101b06102d7366004611122565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6101aa610310366004611100565b610741565b60606003805461032490611155565b80601f016020809104026020016040519081016040528092919081815260200182805461035090611155565b801561039d5780601f106103725761010080835404028352916020019161039d565b820191906000526020600020905b81548152906001019060200180831161038057829003601f168201915b5050505050905090565b6000336103b58185856107ce565b5060019392505050565b6103c7610926565b6001600160a01b038216600081815260066020908152604091829020805460ff19168515159081179091558251938452908301527ff93f9a76c1bf3444d22400a00cb9fe990e6abe9dbb333fda48859cfee864543d910160405180910390a15050565b600033610438858285610980565b610443858585610a12565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091906103b59082908690610488908790611190565b6107ce565b3360009081526006602052604090205460ff166105225760405162461bcd60e51b815260206004820152604260248201527f4f7065726174696e6753797374656d3a204f6e6c792077686974656c6973746560448201527f64206164647265737365732063616e2063616c6c20746869732066756e63746960648201526137b760f11b608482015260a4015b60405180910390fd5b61052c8282610c0a565b5050565b3360009081526006602052604090205460ff166105c05760405162461bcd60e51b815260206004820152604260248201527f4f7065726174696e6753797374656d3a204f6e6c792077686974656c6973746560448201527f64206164647265737365732063616e2063616c6c20746869732066756e63746960648201526137b760f11b608482015260a401610519565b6105c981610cd5565b50565b6105d4610926565b6105de6000610cdf565b565b3360009081526006602052604090205460ff166106705760405162461bcd60e51b815260206004820152604260248201527f4f7065726174696e6753797374656d3a204f6e6c792077686974656c6973746560448201527f64206164647265737365732063616e2063616c6c20746869732066756e63746960648201526137b760f11b608482015260a401610519565b61052c8282610d49565b60606004805461032490611155565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909190838110156107265760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610519565b61044382868684036107ce565b6000336103b5818585610a12565b610749610926565b6001600160a01b0381166107c55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610519565b6105c981610cdf565b6001600160a01b0383166108495760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610519565b6001600160a01b0382166108c55760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610519565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b031633146105de5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610519565b6001600160a01b038381166000908152600160209081526040808320938616835292905220546000198114610a0c57818110156109ff5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610519565b610a0c84848484036107ce565b50505050565b6001600160a01b038316610a8e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610519565b6001600160a01b038216610b0a5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610519565b610b15838383610d5e565b6001600160a01b03831660009081526020819052604090205481811015610ba45760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610519565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610a0c565b6001600160a01b038216610c605760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610519565b610c6c60008383610d5e565b8060026000828254610c7e9190611190565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6105c93382610e5f565b600580546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610d54823383610980565b61052c8282610e5f565b6001600160a01b03831615801590610d7e57506001600160a01b03821615155b15610e5a576001600160a01b03831660009081526006602052604090205460ff1680610dc257506001600160a01b03821660009081526006602052604090205460ff165b610e5a5760405162461bcd60e51b815260206004820152604360248201527f4f7065726174696e6753797374656d3a2043616e206f6e6c79207472616e736660448201527f657220746f206f722066726f6d2077686974656c69737465642061646472657360648201527f7365730000000000000000000000000000000000000000000000000000000000608482015260a401610519565b505050565b6001600160a01b038216610edb5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610519565b610ee782600083610d5e565b6001600160a01b03821660009081526020819052604090205481811015610f765760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f63650000000000000000000000000000000000000000000000000000000000006064820152608401610519565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b600060208083528351808285015260005b8181101561100157858101830151858201604001528201610fe5565b81811115611013576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b038116811461104057600080fd5b919050565b6000806040838503121561105857600080fd5b61106183611029565b946020939093013593505050565b6000806040838503121561108257600080fd5b61108b83611029565b9150602083013580151581146110a057600080fd5b809150509250929050565b6000806000606084860312156110c057600080fd5b6110c984611029565b92506110d760208501611029565b9150604084013590509250925092565b6000602082840312156110f957600080fd5b5035919050565b60006020828403121561111257600080fd5b61111b82611029565b9392505050565b6000806040838503121561113557600080fd5b61113e83611029565b915061114c60208401611029565b90509250929050565b600181811c9082168061116957607f821691505b6020821081141561118a57634e487b7160e01b600052602260045260246000fd5b50919050565b600082198211156111b157634e487b7160e01b600052601160045260246000fd5b50019056fea2646970667358221220a912b6762337656720d95577d199a4c335a313444a6d71de16ff16d9da63c77264736f6c63430008090033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101515760003560e01c806370a08231116100cd5780639b19251a11610081578063a9059cbb11610066578063a9059cbb146102b6578063dd62ed3e146102c9578063f2fde38b1461030257600080fd5b80639b19251a14610280578063a457c2d7146102a357600080fd5b806379cc6790116100b257806379cc67901461024a5780638da5cb5b1461025d57806395d89b411461027857600080fd5b806370a0823114610219578063715018a61461024257600080fd5b806323b872dd11610124578063395093511161010957806339509351146101e057806340c10f19146101f357806342966c681461020657600080fd5b806323b872dd146101be578063313ce567146101d157600080fd5b806306fdde0314610156578063095ea7b3146101745780630d392cd91461019757806318160ddd146101ac575b600080fd5b61015e610315565b60405161016b9190610fd4565b60405180910390f35b610187610182366004611045565b6103a7565b604051901515815260200161016b565b6101aa6101a536600461106f565b6103bf565b005b6002545b60405190815260200161016b565b6101876101cc3660046110ab565b61042a565b6040516012815260200161016b565b6101876101ee366004611045565b61044e565b6101aa610201366004611045565b61048d565b6101aa6102143660046110e7565b610530565b6101b0610227366004611100565b6001600160a01b031660009081526020819052604090205490565b6101aa6105cc565b6101aa610258366004611045565b6105e0565b6005546040516001600160a01b03909116815260200161016b565b61015e61067a565b61018761028e366004611100565b60066020526000908152604090205460ff1681565b6101876102b1366004611045565b610689565b6101876102c4366004611045565b610733565b6101b06102d7366004611122565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6101aa610310366004611100565b610741565b60606003805461032490611155565b80601f016020809104026020016040519081016040528092919081815260200182805461035090611155565b801561039d5780601f106103725761010080835404028352916020019161039d565b820191906000526020600020905b81548152906001019060200180831161038057829003601f168201915b5050505050905090565b6000336103b58185856107ce565b5060019392505050565b6103c7610926565b6001600160a01b038216600081815260066020908152604091829020805460ff19168515159081179091558251938452908301527ff93f9a76c1bf3444d22400a00cb9fe990e6abe9dbb333fda48859cfee864543d910160405180910390a15050565b600033610438858285610980565b610443858585610a12565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091906103b59082908690610488908790611190565b6107ce565b3360009081526006602052604090205460ff166105225760405162461bcd60e51b815260206004820152604260248201527f4f7065726174696e6753797374656d3a204f6e6c792077686974656c6973746560448201527f64206164647265737365732063616e2063616c6c20746869732066756e63746960648201526137b760f11b608482015260a4015b60405180910390fd5b61052c8282610c0a565b5050565b3360009081526006602052604090205460ff166105c05760405162461bcd60e51b815260206004820152604260248201527f4f7065726174696e6753797374656d3a204f6e6c792077686974656c6973746560448201527f64206164647265737365732063616e2063616c6c20746869732066756e63746960648201526137b760f11b608482015260a401610519565b6105c981610cd5565b50565b6105d4610926565b6105de6000610cdf565b565b3360009081526006602052604090205460ff166106705760405162461bcd60e51b815260206004820152604260248201527f4f7065726174696e6753797374656d3a204f6e6c792077686974656c6973746560448201527f64206164647265737365732063616e2063616c6c20746869732066756e63746960648201526137b760f11b608482015260a401610519565b61052c8282610d49565b60606004805461032490611155565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909190838110156107265760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f0000000000000000000000000000000000000000000000000000006064820152608401610519565b61044382868684036107ce565b6000336103b5818585610a12565b610749610926565b6001600160a01b0381166107c55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610519565b6105c981610cdf565b6001600160a01b0383166108495760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610519565b6001600160a01b0382166108c55760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610519565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b031633146105de5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610519565b6001600160a01b038381166000908152600160209081526040808320938616835292905220546000198114610a0c57818110156109ff5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610519565b610a0c84848484036107ce565b50505050565b6001600160a01b038316610a8e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610519565b6001600160a01b038216610b0a5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610519565b610b15838383610d5e565b6001600160a01b03831660009081526020819052604090205481811015610ba45760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152608401610519565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610a0c565b6001600160a01b038216610c605760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610519565b610c6c60008383610d5e565b8060026000828254610c7e9190611190565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6105c93382610e5f565b600580546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610d54823383610980565b61052c8282610e5f565b6001600160a01b03831615801590610d7e57506001600160a01b03821615155b15610e5a576001600160a01b03831660009081526006602052604090205460ff1680610dc257506001600160a01b03821660009081526006602052604090205460ff165b610e5a5760405162461bcd60e51b815260206004820152604360248201527f4f7065726174696e6753797374656d3a2043616e206f6e6c79207472616e736660448201527f657220746f206f722066726f6d2077686974656c69737465642061646472657360648201527f7365730000000000000000000000000000000000000000000000000000000000608482015260a401610519565b505050565b6001600160a01b038216610edb5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610519565b610ee782600083610d5e565b6001600160a01b03821660009081526020819052604090205481811015610f765760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f63650000000000000000000000000000000000000000000000000000000000006064820152608401610519565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b600060208083528351808285015260005b8181101561100157858101830151858201604001528201610fe5565b81811115611013576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b038116811461104057600080fd5b919050565b6000806040838503121561105857600080fd5b61106183611029565b946020939093013593505050565b6000806040838503121561108257600080fd5b61108b83611029565b9150602083013580151581146110a057600080fd5b809150509250929050565b6000806000606084860312156110c057600080fd5b6110c984611029565b92506110d760208501611029565b9150604084013590509250925092565b6000602082840312156110f957600080fd5b5035919050565b60006020828403121561111257600080fd5b61111b82611029565b9392505050565b6000806040838503121561113557600080fd5b61113e83611029565b915061114c60208401611029565b90509250929050565b600181811c9082168061116957607f821691505b6020821081141561118a57634e487b7160e01b600052602260045260246000fd5b50919050565b600082198211156111b157634e487b7160e01b600052601160045260246000fd5b50019056fea2646970667358221220a912b6762337656720d95577d199a4c335a313444a6d71de16ff16d9da63c77264736f6c63430008090033
Deployed Bytecode Sourcemap
1179:1988:6:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2154:98:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4431:197;;;;;;:::i;:::-;;:::i;:::-;;;1241:14:7;;1234:22;1216:41;;1204:2;1189:18;4431:197:1;1076:187:7;2524:181:6;;;;;;:::i;:::-;;:::i;:::-;;3242:106:1;3329:12;;3242:106;;;1766:25:7;;;1754:2;1739:18;3242:106:1;1620:177:7;5190:286:1;;;;;;:::i;:::-;;:::i;3091:91::-;;;3173:2;2277:36:7;;2265:2;2250:18;3091:91:1;2135:184:7;5871:234:1;;;;;;:::i;:::-;;:::i;1787:112:6:-;;;;;;:::i;:::-;;:::i;1977:96::-;;;;;;:::i;:::-;;:::i;3406:125:1:-;;;;;;:::i;:::-;-1:-1:-1;;;;;3506:18:1;3480:7;3506:18;;;;;;;;;;;;3406:125;1831:101:0;;;:::i;2240:132:6:-;;;;;;:::i;:::-;;:::i;1201:85:0:-;1273:6;;1201:85;;-1:-1:-1;;;;;1273:6:0;;;2846:74:7;;2834:2;2819:18;1201:85:0;2700:226:7;2365:102:1;;;:::i;1319:41:6:-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;6592:427:1;;;;;;:::i;:::-;;:::i;3727:189::-;;;;;;:::i;:::-;;:::i;3974:149::-;;;;;;:::i;:::-;-1:-1:-1;;;;;4089:18:1;;;4063:7;4089:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;3974:149;2081:198:0;;;;;;:::i;:::-;;:::i;2154:98:1:-;2208:13;2240:5;2233:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2154:98;:::o;4431:197::-;4514:4;719:10:5;4568:32:1;719:10:5;4584:7:1;4593:6;4568:8;:32::i;:::-;-1:-1:-1;4617:4:1;;4431:197;-1:-1:-1;;;4431:197:1:o;2524:181:6:-;1094:13:0;:11;:13::i;:::-;-1:-1:-1;;;;;2613:19:6;::::1;;::::0;;;:9:::1;:19;::::0;;;;;;;;:32;;-1:-1:-1;;2613:32:6::1;::::0;::::1;;::::0;;::::1;::::0;;;2660:38;;3806:74:7;;;3896:18;;;3889:50;2660:38:6::1;::::0;3779:18:7;2660:38:6::1;;;;;;;2524:181:::0;;:::o;5190:286:1:-;5317:4;719:10:5;5373:38:1;5389:4;719:10:5;5404:6:1;5373:15;:38::i;:::-;5421:27;5431:4;5437:2;5441:6;5421:9;:27::i;:::-;-1:-1:-1;5465:4:1;;5190:286;-1:-1:-1;;;;5190:286:1:o;5871:234::-;719:10:5;5959:4:1;4089:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;4089:27:1;;;;;;;;;;5959:4;;719:10:5;6013:64:1;;719:10:5;;4089:27:1;;6038:38;;6066:10;;6038:38;:::i;:::-;6013:8;:64::i;1787:112:6:-;719:10:5;1412:23:6;;;;:9;:23;;;;;;;;1404:102;;;;-1:-1:-1;;;1404:102:6;;4439:2:7;1404:102:6;;;4421:21:7;4478:2;4458:18;;;4451:30;4517:34;4497:18;;;4490:62;4588:34;4568:18;;;4561:62;-1:-1:-1;;;4639:19:7;;;4632:33;4682:19;;1404:102:6;;;;;;;;;1868:24:::1;1874:8;1884:7;1868:5;:24::i;:::-;1787:112:::0;;:::o;1977:96::-;719:10:5;1412:23:6;;;;:9;:23;;;;;;;;1404:102;;;;-1:-1:-1;;;1404:102:6;;4439:2:7;1404:102:6;;;4421:21:7;4478:2;4458:18;;;4451:30;4517:34;4497:18;;;4490:62;4588:34;4568:18;;;4561:62;-1:-1:-1;;;4639:19:7;;;4632:33;4682:19;;1404:102:6;4237:470:7;1404:102:6;2047:19:::1;2058:7;2047:10;:19::i;:::-;1977:96:::0;:::o;1831:101:0:-;1094:13;:11;:13::i;:::-;1895:30:::1;1922:1;1895:18;:30::i;:::-;1831:101::o:0;2240:132:6:-;719:10:5;1412:23:6;;;;:9;:23;;;;;;;;1404:102;;;;-1:-1:-1;;;1404:102:6;;4439:2:7;1404:102:6;;;4421:21:7;4478:2;4458:18;;;4451:30;4517:34;4497:18;;;4490:62;4588:34;4568:18;;;4561:62;-1:-1:-1;;;4639:19:7;;;4632:33;4682:19;;1404:102:6;4237:470:7;1404:102:6;2332:33:::1;2347:8;2357:7;2332:14;:33::i;2365:102:1:-:0;2421:13;2453:7;2446:14;;;;;:::i;6592:427::-;719:10:5;6685:4:1;4089:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;4089:27:1;;;;;;;;;;6685:4;;719:10:5;6829:15:1;6809:16;:35;;6801:85;;;;-1:-1:-1;;;6801:85:1;;4914:2:7;6801:85:1;;;4896:21:7;4953:2;4933:18;;;4926:30;4992:34;4972:18;;;4965:62;5063:7;5043:18;;;5036:35;5088:19;;6801:85:1;4712:401:7;6801:85:1;6920:60;6929:5;6936:7;6964:15;6945:16;:34;6920:8;:60::i;3727:189::-;3806:4;719:10:5;3860:28:1;719:10:5;3877:2:1;3881:6;3860:9;:28::i;2081:198:0:-;1094:13;:11;:13::i;:::-;-1:-1:-1;;;;;2169:22:0;::::1;2161:73;;;::::0;-1:-1:-1;;;2161:73:0;;5320:2:7;2161:73:0::1;::::0;::::1;5302:21:7::0;5359:2;5339:18;;;5332:30;5398:34;5378:18;;;5371:62;5469:8;5449:18;;;5442:36;5495:19;;2161:73:0::1;5118:402:7::0;2161:73:0::1;2244:28;2263:8;2244:18;:28::i;10504:370:1:-:0;-1:-1:-1;;;;;10635:19:1;;10627:68;;;;-1:-1:-1;;;10627:68:1;;5727:2:7;10627:68:1;;;5709:21:7;5766:2;5746:18;;;5739:30;5805:34;5785:18;;;5778:62;5876:6;5856:18;;;5849:34;5900:19;;10627:68:1;5525:400:7;10627:68:1;-1:-1:-1;;;;;10713:21:1;;10705:68;;;;-1:-1:-1;;;10705:68:1;;6132:2:7;10705:68:1;;;6114:21:7;6171:2;6151:18;;;6144:30;6210:34;6190:18;;;6183:62;6281:4;6261:18;;;6254:32;6303:19;;10705:68:1;5930:398:7;10705:68:1;-1:-1:-1;;;;;10784:18:1;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;10835:32;;1766:25:7;;;10835:32:1;;1739:18:7;10835:32:1;;;;;;;10504:370;;;:::o;1359:130:0:-;1273:6;;-1:-1:-1;;;;;1273:6:0;719:10:5;1422:23:0;1414:68;;;;-1:-1:-1;;;1414:68:0;;6535:2:7;1414:68:0;;;6517:21:7;;;6554:18;;;6547:30;6613:34;6593:18;;;6586:62;6665:18;;1414:68:0;6333:356:7;11155:441:1;-1:-1:-1;;;;;4089:18:1;;;11285:24;4089:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;11351:37:1;;11347:243;;11432:6;11412:16;:26;;11404:68;;;;-1:-1:-1;;;11404:68:1;;6896:2:7;11404:68:1;;;6878:21:7;6935:2;6915:18;;;6908:30;6974:31;6954:18;;;6947:59;7023:18;;11404:68:1;6694:353:7;11404:68:1;11514:51;11523:5;11530:7;11558:6;11539:16;:25;11514:8;:51::i;:::-;11275:321;11155:441;;;:::o;7473:818::-;-1:-1:-1;;;;;7599:18:1;;7591:68;;;;-1:-1:-1;;;7591:68:1;;7254:2:7;7591:68:1;;;7236:21:7;7293:2;7273:18;;;7266:30;7332:34;7312:18;;;7305:62;7403:7;7383:18;;;7376:35;7428:19;;7591:68:1;7052:401:7;7591:68:1;-1:-1:-1;;;;;7677:16:1;;7669:64;;;;-1:-1:-1;;;7669:64:1;;7660:2:7;7669:64:1;;;7642:21:7;7699:2;7679:18;;;7672:30;7738:34;7718:18;;;7711:62;7809:5;7789:18;;;7782:33;7832:19;;7669:64:1;7458:399:7;7669:64:1;7744:38;7765:4;7771:2;7775:6;7744:20;:38::i;:::-;-1:-1:-1;;;;;7815:15:1;;7793:19;7815:15;;;;;;;;;;;7848:21;;;;7840:72;;;;-1:-1:-1;;;7840:72:1;;8064:2:7;7840:72:1;;;8046:21:7;8103:2;8083:18;;;8076:30;8142:34;8122:18;;;8115:62;8213:8;8193:18;;;8186:36;8239:19;;7840:72:1;7862:402:7;7840:72:1;-1:-1:-1;;;;;7946:15:1;;;:9;:15;;;;;;;;;;;7964:20;;;7946:38;;8161:13;;;;;;;;;;:23;;;;;;8210:26;;1766:25:7;;;8161:13:1;;8210:26;;1739:18:7;8210:26:1;;;;;;;8247:37;2711:454:6;8567:535:1;-1:-1:-1;;;;;8650:21:1;;8642:65;;;;-1:-1:-1;;;8642:65:1;;8471:2:7;8642:65:1;;;8453:21:7;8510:2;8490:18;;;8483:30;8549:33;8529:18;;;8522:61;8600:18;;8642:65:1;8269:355:7;8642:65:1;8718:49;8747:1;8751:7;8760:6;8718:20;:49::i;:::-;8794:6;8778:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;8946:18:1;;:9;:18;;;;;;;;;;;:28;;;;;;8999:37;1766:25:7;;;8999:37:1;;1739:18:7;8999:37:1;;;;;;;1787:112:6;;:::o;578:89:3:-;633:27;719:10:5;653:6:3;633:5;:27::i;2433:187:0:-;2525:6;;;-1:-1:-1;;;;;2541:17:0;;;;;;;;;;;2573:40;;2525:6;;;2541:17;2525:6;;2573:40;;2506:16;;2573:40;2496:124;2433:187;:::o;973:161:3:-;1049:46;1065:7;719:10:5;1088:6:3;1049:15;:46::i;:::-;1105:22;1111:7;1120:6;1105:5;:22::i;2711:454:6:-;-1:-1:-1;;;;;2899:18:6;;;;;;:38;;-1:-1:-1;;;;;;2921:16:6;;;;2899:38;2895:264;;;-1:-1:-1;;;;;3044:15:6;;;;;;:9;:15;;;;;;;;;:32;;-1:-1:-1;;;;;;3063:13:6;;;;;;:9;:13;;;;;;;;3044:32;3036:112;;;;-1:-1:-1;;;3036:112:6;;8831:2:7;3036:112:6;;;8813:21:7;8870:2;8850:18;;;8843:30;8909:34;8889:18;;;8882:62;8980:34;8960:18;;;8953:62;9052:5;9031:19;;;9024:34;9075:19;;3036:112:6;8629:471:7;3036:112:6;2711:454;;;:::o;9422:659:1:-;-1:-1:-1;;;;;9505:21:1;;9497:67;;;;-1:-1:-1;;;9497:67:1;;9307:2:7;9497:67:1;;;9289:21:7;9346:2;9326:18;;;9319:30;9385:34;9365:18;;;9358:62;9456:3;9436:18;;;9429:31;9477:19;;9497:67:1;9105:397:7;9497:67:1;9575:49;9596:7;9613:1;9617:6;9575:20;:49::i;:::-;-1:-1:-1;;;;;9660:18:1;;9635:22;9660:18;;;;;;;;;;;9696:24;;;;9688:71;;;;-1:-1:-1;;;9688:71:1;;9709:2:7;9688:71:1;;;9691:21:7;9748:2;9728:18;;;9721:30;9787:34;9767:18;;;9760:62;9858:4;9838:18;;;9831:32;9880:19;;9688:71:1;9507:398:7;9688:71:1;-1:-1:-1;;;;;9793:18:1;;:9;:18;;;;;;;;;;;9814:23;;;9793:44;;9930:12;:22;;;;;;;9978:37;1766:25:7;;;9793:9:1;;:18;9978:37;;1739:18:7;9978:37:1;;;;;;;2711:454:6;;;:::o;14:597:7:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:7;574:15;-1:-1:-1;;570:29:7;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:7:o;616:196::-;684:20;;-1:-1:-1;;;;;733:54:7;;723:65;;713:93;;802:1;799;792:12;713:93;616:196;;;:::o;817:254::-;885:6;893;946:2;934:9;925:7;921:23;917:32;914:52;;;962:1;959;952:12;914:52;985:29;1004:9;985:29;:::i;:::-;975:39;1061:2;1046:18;;;;1033:32;;-1:-1:-1;;;817:254:7:o;1268:347::-;1333:6;1341;1394:2;1382:9;1373:7;1369:23;1365:32;1362:52;;;1410:1;1407;1400:12;1362:52;1433:29;1452:9;1433:29;:::i;:::-;1423:39;;1512:2;1501:9;1497:18;1484:32;1559:5;1552:13;1545:21;1538:5;1535:32;1525:60;;1581:1;1578;1571:12;1525:60;1604:5;1594:15;;;1268:347;;;;;:::o;1802:328::-;1879:6;1887;1895;1948:2;1936:9;1927:7;1923:23;1919:32;1916:52;;;1964:1;1961;1954:12;1916:52;1987:29;2006:9;1987:29;:::i;:::-;1977:39;;2035:38;2069:2;2058:9;2054:18;2035:38;:::i;:::-;2025:48;;2120:2;2109:9;2105:18;2092:32;2082:42;;1802:328;;;;;:::o;2324:180::-;2383:6;2436:2;2424:9;2415:7;2411:23;2407:32;2404:52;;;2452:1;2449;2442:12;2404:52;-1:-1:-1;2475:23:7;;2324:180;-1:-1:-1;2324:180:7:o;2509:186::-;2568:6;2621:2;2609:9;2600:7;2596:23;2592:32;2589:52;;;2637:1;2634;2627:12;2589:52;2660:29;2679:9;2660:29;:::i;:::-;2650:39;2509:186;-1:-1:-1;;;2509:186:7:o;2931:260::-;2999:6;3007;3060:2;3048:9;3039:7;3035:23;3031:32;3028:52;;;3076:1;3073;3066:12;3028:52;3099:29;3118:9;3099:29;:::i;:::-;3089:39;;3147:38;3181:2;3170:9;3166:18;3147:38;:::i;:::-;3137:48;;2931:260;;;;;:::o;3196:437::-;3275:1;3271:12;;;;3318;;;3339:61;;3393:4;3385:6;3381:17;3371:27;;3339:61;3446:2;3438:6;3435:14;3415:18;3412:38;3409:218;;;-1:-1:-1;;;3480:1:7;3473:88;3584:4;3581:1;3574:15;3612:4;3609:1;3602:15;3409:218;;3196:437;;;:::o;3950:282::-;3990:3;4021:1;4017:6;4014:1;4011:13;4008:193;;;-1:-1:-1;;;4054:1:7;4047:88;4158:4;4155:1;4148:15;4186:4;4183:1;4176:15;4008:193;-1:-1:-1;4217:9:7;;3950:282::o
Swarm Source
ipfs://a912b6762337656720d95577d199a4c335a313444a6d71de16ff16d9da63c772
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
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.