Overview
S Balance
S Value
$0.00More Info
Private Name Tags
ContractCreator
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
XCobra
Compiler Version
v0.8.26+commit.8a97fa7a
Contract Source Code (Solidity)
/** *Submitted for verification at SonicScan.org on 2025-03-01 */ pragma solidity ^0.8.0; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b > a) return (false, 0); return (true, a - b); } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a / b); } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a % b); } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { require(b <= a, "SafeMath: subtraction overflow"); return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0) return 0; uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { require(b > 0, "SafeMath: division by zero"); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { require(b > 0, "SafeMath: modulo by zero"); return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); return a - b; } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryDiv}. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); return a % b; } } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File: @openzeppelin/contracts/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; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } } // File: @openzeppelin/contracts/access/Ownable.sol pragma solidity ^0.8.0; /** * @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 () internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), 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 { emit OwnershipTransferred(_owner, address(0)); _owner = 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"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } // File: @openzeppelin/contracts/GSN/Context.sol pragma solidity ^0.8.0; // File: contracts/owner/Operator.sol pragma solidity ^0.8.0; contract Operator is Context, Ownable { address private _operator; event OperatorTransferred(address indexed previousOperator, address indexed newOperator); constructor() { _operator = _msgSender(); emit OperatorTransferred(address(0), _operator); } function operator() public view returns (address) { return _operator; } modifier onlyOperator() { require(_operator == msg.sender, "operator: caller is not the operator"); _; } function isOperator() public view returns (bool) { return _msgSender() == _operator; } function transferOperator(address newOperator_) public onlyOwner { _transferOperator(newOperator_); } function _transferOperator(address newOperator_) internal { require(newOperator_ != address(0), "operator: zero address given for new operator"); emit OperatorTransferred(address(0), newOperator_); _operator = newOperator_; } function _renounceOperator() public onlyOwner { emit OperatorTransferred(_operator, address(0)); _operator = address(0); } } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20 { using SafeMath for uint256; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for {name} and {symbol}, initializes {decimals} with * a default value of 18. * * To select a different value for {decimals}, use {_setupDecimals}. * * All three of these values are immutable: they can only be set once during * construction. */ constructor (string memory name_, string memory symbol_) public { _name = name_; _symbol = symbol_; _decimals = 18; } /** * @dev Returns the name of the token. */ function name() public view virtual returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is * called. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual returns (uint8) { return _decimals; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Sets {decimals} to a value other than the default one of 18. * * WARNING: This function should only be called from the constructor. Most * applications that interact with token contracts will not expect * {decimals} to ever change, and may work incorrectly if it does. */ function _setupDecimals(uint8 decimals_) internal virtual { _decimals = decimals_; } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { } } // File: @openzeppelin/contracts/token/ERC20/ERC20Burnable.sol pragma solidity ^0.8.0; /** * @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 { using SafeMath for uint256; /** * @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 decreasedAllowance = allowance(account, _msgSender()).sub(amount, "ERC20: burn amount exceeds allowance"); _approve(account, _msgSender(), decreasedAllowance); _burn(account, amount); } } // File: contracts/XCobra.sol pragma solidity ^0.8.0; contract XCobra is ERC20Burnable, Operator { /** * @notice Constructs the XCOBRA Bond ERC-20 contract. */ constructor() public ERC20("XCOBRA", "XCOBRA") {} /** * @notice Operator mints basis bonds to a recipient * @param recipient_ The address of recipient * @param amount_ The amount of basis bonds to mint to * @return whether the process has been done */ function mint(address recipient_, uint256 amount_) public onlyOperator returns (bool) { uint256 balanceBefore = balanceOf(recipient_); _mint(recipient_, amount_); uint256 balanceAfter = balanceOf(recipient_); return balanceAfter > balanceBefore; } function burn(uint256 amount) public override { super.burn(amount); } function burnFrom(address account, uint256 amount) public override onlyOperator { super.burnFrom(account, amount); } }
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":"previousOperator","type":"address"},{"indexed":true,"internalType":"address","name":"newOperator","type":"address"}],"name":"OperatorTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_renounceOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isOperator","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient_","type":"address"},{"internalType":"uint256","name":"amount_","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operator","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"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":"newOperator_","type":"address"}],"name":"transferOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405234801561000f575f80fd5b5060408051808201825260068082526558434f42524160d01b602080840182905284518086019095529184529083015290600361004c83826101a2565b50600461005982826101a2565b50506005805460ff19166012179055505f6100713390565b60058054610100600160a81b0319166101006001600160a01b03841690810291909117909155604051919250905f907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600680546001600160a01b031916339081179091556040515f907f74da04524d50c64947f5dd5381ef1a4dca5cba8ed1d816243f9e48aa0b5617ed908290a361025c565b634e487b7160e01b5f52604160045260245ffd5b600181811c9082168061013257607f821691505b60208210810361015057634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111561019d57805f5260205f20601f840160051c8101602085101561017b5750805b601f840160051c820191505b8181101561019a575f8155600101610187565b50505b505050565b81516001600160401b038111156101bb576101bb61010a565b6101cf816101c9845461011e565b84610156565b6020601f821160018114610201575f83156101ea5750848201515b5f19600385901b1c1916600184901b17845561019a565b5f84815260208120601f198516915b828110156102305787850151825560209485019460019092019101610210565b508482101561024d57868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b611123806102695f395ff3fe608060405234801561000f575f80fd5b5060043610610132575f3560e01c8063570ca735116100b45780638da5cb5b116100795780638da5cb5b1461028257806395d89b4114610298578063a457c2d7146102a0578063a9059cbb146102b3578063dd62ed3e146102c6578063f2fde38b146102fe575f80fd5b8063570ca7351461021257806370a0823114610237578063715018a61461025f57806379cc6790146102675780638a27f1031461027a575f80fd5b8063313ce567116100fa578063313ce567146101b157806339509351146101c657806340c10f19146101d957806342966c68146101ec5780634456eda2146101ff575f80fd5b806306fdde0314610136578063095ea7b31461015457806318160ddd1461017757806323b872dd1461018957806329605e771461019c575b5f80fd5b61013e610311565b60405161014b9190610e36565b60405180910390f35b610167610162366004610e86565b6103a1565b604051901515815260200161014b565b6002545b60405190815260200161014b565b610167610197366004610eae565b6103b7565b6101af6101aa366004610ee8565b61041e565b005b60055460405160ff909116815260200161014b565b6101676101d4366004610e86565b610463565b6101676101e7366004610e86565b610498565b6101af6101fa366004610f01565b61050a565b6006546001600160a01b03163314610167565b6006546001600160a01b03165b6040516001600160a01b03909116815260200161014b565b61017b610245366004610ee8565b6001600160a01b03165f9081526020819052604090205490565b6101af610513565b6101af610275366004610e86565b610592565b6101af6105ca565b60055461010090046001600160a01b031661021f565b61013e610643565b6101676102ae366004610e86565b610652565b6101676102c1366004610e86565b61069f565b61017b6102d4366004610f18565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6101af61030c366004610ee8565b6106ab565b60606003805461032090610f49565b80601f016020809104026020016040519081016040528092919081815260200182805461034c90610f49565b80156103975780601f1061036e57610100808354040283529160200191610397565b820191905f5260205f20905b81548152906001019060200180831161037a57829003601f168201915b5050505050905090565b5f6103ad3384846107a6565b5060015b92915050565b5f6103c38484846108ca565b610414843361040f8560405180606001604052806028815260200161107d602891396001600160a01b038a165f9081526001602090815260408083203384529091529020549190610a4a565b6107a6565b5060019392505050565b6005546001600160a01b036101009091041633146104575760405162461bcd60e51b815260040161044e90610f81565b60405180910390fd5b61046081610a80565b50565b335f8181526001602090815260408083206001600160a01b038716845290915281205490916103ad91859061040f9086610b43565b6006545f906001600160a01b031633146104c45760405162461bcd60e51b815260040161044e90610fb6565b6001600160a01b0383165f908152602081905260409020546104e68484610ba8565b6001600160a01b0384165f9081526020819052604081205491909111949350505050565b61046081610c85565b6005546001600160a01b036101009091041633146105435760405162461bcd60e51b815260040161044e90610f81565b6005546040515f9161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b6006546001600160a01b031633146105bc5760405162461bcd60e51b815260040161044e90610fb6565b6105c68282610c8f565b5050565b6005546001600160a01b036101009091041633146105fa5760405162461bcd60e51b815260040161044e90610f81565b6006546040515f916001600160a01b0316907f74da04524d50c64947f5dd5381ef1a4dca5cba8ed1d816243f9e48aa0b5617ed908390a3600680546001600160a01b0319169055565b60606004805461032090610f49565b5f6103ad338461040f856040518060600160405280602581526020016110c960259139335f9081526001602090815260408083206001600160a01b038d1684529091529020549190610a4a565b5f6103ad3384846108ca565b6005546001600160a01b036101009091041633146106db5760405162461bcd60e51b815260040161044e90610f81565b6001600160a01b0381166107405760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161044e565b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6001600160a01b0383166108085760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161044e565b6001600160a01b0382166108695760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161044e565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b03831661092e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161044e565b6001600160a01b0382166109905760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161044e565b6109cc81604051806060016040528060268152602001611057602691396001600160a01b0386165f908152602081905260409020549190610a4a565b6001600160a01b038085165f9081526020819052604080822093909355908416815220546109fa9082610b43565b6001600160a01b038381165f818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91016108bd565b5f8184841115610a6d5760405162461bcd60e51b815260040161044e9190610e36565b50610a78838561100e565b949350505050565b6001600160a01b038116610aec5760405162461bcd60e51b815260206004820152602d60248201527f6f70657261746f723a207a65726f206164647265737320676976656e20666f7260448201526c103732bb9037b832b930ba37b960991b606482015260840161044e565b6040516001600160a01b038216905f907f74da04524d50c64947f5dd5381ef1a4dca5cba8ed1d816243f9e48aa0b5617ed908290a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b5f80610b4f8385611021565b905083811015610ba15760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015260640161044e565b9392505050565b6001600160a01b038216610bfe5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161044e565b600254610c0b9082610b43565b6002556001600160a01b0382165f90815260208190526040902054610c309082610b43565b6001600160a01b0383165f81815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91015b60405180910390a35050565b6104603382610cda565b5f610cbe826040518060600160405280602481526020016110a560249139610cb786336102d4565b9190610a4a565b9050610ccb8333836107a6565b610cd58383610cda565b505050565b6001600160a01b038216610d3a5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161044e565b610d7681604051806060016040528060228152602001611035602291396001600160a01b0385165f908152602081905260409020549190610a4a565b6001600160a01b0383165f90815260208190526040902055600254610d9b9082610ddb565b6002556040518181525f906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610c79565b5f82821115610e2c5760405162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015260640161044e565b610ba1828461100e565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b80356001600160a01b0381168114610e81575f80fd5b919050565b5f8060408385031215610e97575f80fd5b610ea083610e6b565b946020939093013593505050565b5f805f60608486031215610ec0575f80fd5b610ec984610e6b565b9250610ed760208501610e6b565b929592945050506040919091013590565b5f60208284031215610ef8575f80fd5b610ba182610e6b565b5f60208284031215610f11575f80fd5b5035919050565b5f8060408385031215610f29575f80fd5b610f3283610e6b565b9150610f4060208401610e6b565b90509250929050565b600181811c90821680610f5d57607f821691505b602082108103610f7b57634e487b7160e01b5f52602260045260245ffd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526024908201527f6f70657261746f723a2063616c6c6572206973206e6f7420746865206f70657260408201526330ba37b960e11b606082015260800190565b634e487b7160e01b5f52601160045260245ffd5b818103818111156103b1576103b1610ffa565b808201808211156103b1576103b1610ffa56fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122000594fc07e4ec50a64340926bf4a76d1c7416a0e61d2d4893ec76b58f136d31b64736f6c634300081a0033
Deployed Bytecode
0x608060405234801561000f575f80fd5b5060043610610132575f3560e01c8063570ca735116100b45780638da5cb5b116100795780638da5cb5b1461028257806395d89b4114610298578063a457c2d7146102a0578063a9059cbb146102b3578063dd62ed3e146102c6578063f2fde38b146102fe575f80fd5b8063570ca7351461021257806370a0823114610237578063715018a61461025f57806379cc6790146102675780638a27f1031461027a575f80fd5b8063313ce567116100fa578063313ce567146101b157806339509351146101c657806340c10f19146101d957806342966c68146101ec5780634456eda2146101ff575f80fd5b806306fdde0314610136578063095ea7b31461015457806318160ddd1461017757806323b872dd1461018957806329605e771461019c575b5f80fd5b61013e610311565b60405161014b9190610e36565b60405180910390f35b610167610162366004610e86565b6103a1565b604051901515815260200161014b565b6002545b60405190815260200161014b565b610167610197366004610eae565b6103b7565b6101af6101aa366004610ee8565b61041e565b005b60055460405160ff909116815260200161014b565b6101676101d4366004610e86565b610463565b6101676101e7366004610e86565b610498565b6101af6101fa366004610f01565b61050a565b6006546001600160a01b03163314610167565b6006546001600160a01b03165b6040516001600160a01b03909116815260200161014b565b61017b610245366004610ee8565b6001600160a01b03165f9081526020819052604090205490565b6101af610513565b6101af610275366004610e86565b610592565b6101af6105ca565b60055461010090046001600160a01b031661021f565b61013e610643565b6101676102ae366004610e86565b610652565b6101676102c1366004610e86565b61069f565b61017b6102d4366004610f18565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6101af61030c366004610ee8565b6106ab565b60606003805461032090610f49565b80601f016020809104026020016040519081016040528092919081815260200182805461034c90610f49565b80156103975780601f1061036e57610100808354040283529160200191610397565b820191905f5260205f20905b81548152906001019060200180831161037a57829003601f168201915b5050505050905090565b5f6103ad3384846107a6565b5060015b92915050565b5f6103c38484846108ca565b610414843361040f8560405180606001604052806028815260200161107d602891396001600160a01b038a165f9081526001602090815260408083203384529091529020549190610a4a565b6107a6565b5060019392505050565b6005546001600160a01b036101009091041633146104575760405162461bcd60e51b815260040161044e90610f81565b60405180910390fd5b61046081610a80565b50565b335f8181526001602090815260408083206001600160a01b038716845290915281205490916103ad91859061040f9086610b43565b6006545f906001600160a01b031633146104c45760405162461bcd60e51b815260040161044e90610fb6565b6001600160a01b0383165f908152602081905260409020546104e68484610ba8565b6001600160a01b0384165f9081526020819052604081205491909111949350505050565b61046081610c85565b6005546001600160a01b036101009091041633146105435760405162461bcd60e51b815260040161044e90610f81565b6005546040515f9161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b6006546001600160a01b031633146105bc5760405162461bcd60e51b815260040161044e90610fb6565b6105c68282610c8f565b5050565b6005546001600160a01b036101009091041633146105fa5760405162461bcd60e51b815260040161044e90610f81565b6006546040515f916001600160a01b0316907f74da04524d50c64947f5dd5381ef1a4dca5cba8ed1d816243f9e48aa0b5617ed908390a3600680546001600160a01b0319169055565b60606004805461032090610f49565b5f6103ad338461040f856040518060600160405280602581526020016110c960259139335f9081526001602090815260408083206001600160a01b038d1684529091529020549190610a4a565b5f6103ad3384846108ca565b6005546001600160a01b036101009091041633146106db5760405162461bcd60e51b815260040161044e90610f81565b6001600160a01b0381166107405760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161044e565b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6001600160a01b0383166108085760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161044e565b6001600160a01b0382166108695760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161044e565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b03831661092e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161044e565b6001600160a01b0382166109905760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161044e565b6109cc81604051806060016040528060268152602001611057602691396001600160a01b0386165f908152602081905260409020549190610a4a565b6001600160a01b038085165f9081526020819052604080822093909355908416815220546109fa9082610b43565b6001600160a01b038381165f818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91016108bd565b5f8184841115610a6d5760405162461bcd60e51b815260040161044e9190610e36565b50610a78838561100e565b949350505050565b6001600160a01b038116610aec5760405162461bcd60e51b815260206004820152602d60248201527f6f70657261746f723a207a65726f206164647265737320676976656e20666f7260448201526c103732bb9037b832b930ba37b960991b606482015260840161044e565b6040516001600160a01b038216905f907f74da04524d50c64947f5dd5381ef1a4dca5cba8ed1d816243f9e48aa0b5617ed908290a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b5f80610b4f8385611021565b905083811015610ba15760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015260640161044e565b9392505050565b6001600160a01b038216610bfe5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161044e565b600254610c0b9082610b43565b6002556001600160a01b0382165f90815260208190526040902054610c309082610b43565b6001600160a01b0383165f81815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91015b60405180910390a35050565b6104603382610cda565b5f610cbe826040518060600160405280602481526020016110a560249139610cb786336102d4565b9190610a4a565b9050610ccb8333836107a6565b610cd58383610cda565b505050565b6001600160a01b038216610d3a5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161044e565b610d7681604051806060016040528060228152602001611035602291396001600160a01b0385165f908152602081905260409020549190610a4a565b6001600160a01b0383165f90815260208190526040902055600254610d9b9082610ddb565b6002556040518181525f906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610c79565b5f82821115610e2c5760405162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015260640161044e565b610ba1828461100e565b602081525f82518060208401528060208501604085015e5f604082850101526040601f19601f83011684010191505092915050565b80356001600160a01b0381168114610e81575f80fd5b919050565b5f8060408385031215610e97575f80fd5b610ea083610e6b565b946020939093013593505050565b5f805f60608486031215610ec0575f80fd5b610ec984610e6b565b9250610ed760208501610e6b565b929592945050506040919091013590565b5f60208284031215610ef8575f80fd5b610ba182610e6b565b5f60208284031215610f11575f80fd5b5035919050565b5f8060408385031215610f29575f80fd5b610f3283610e6b565b9150610f4060208401610e6b565b90509250929050565b600181811c90821680610f5d57607f821691505b602082108103610f7b57634e487b7160e01b5f52602260045260245ffd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526024908201527f6f70657261746f723a2063616c6c6572206973206e6f7420746865206f70657260408201526330ba37b960e11b606082015260800190565b634e487b7160e01b5f52601160045260245ffd5b818103818111156103b1576103b1610ffa565b808201808211156103b1576103b1610ffa56fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122000594fc07e4ec50a64340926bf4a76d1c7416a0e61d2d4893ec76b58f136d31b64736f6c634300081a0033
Deployed Bytecode Sourcemap
27103:944:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16939:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19085:169;;;;;;:::i;:::-;;:::i;:::-;;;1085:14:1;;1078:22;1060:41;;1048:2;1033:18;19085:169:0;920:187:1;18038:108:0;18126:12;;18038:108;;;1258:25:1;;;1246:2;1231:18;18038:108:0;1112:177:1;19736:321:0;;;;;;:::i;:::-;;:::i;14239:115::-;;;;;;:::i;:::-;;:::i;:::-;;17882:91;17956:9;;17882:91;;17956:9;;;;2006:36:1;;1994:2;1979:18;17882:91:0;1864:184:1;20466:218:0;;;;;;:::i;:::-;;:::i;27525:290::-;;;;;;:::i;:::-;;:::i;27823:83::-;;;;;;:::i;:::-;;:::i;14131:100::-;14214:9;;-1:-1:-1;;;;;14214:9:0;10902:10;14198:25;14131:100;;13903:85;13971:9;;-1:-1:-1;;;;;13971:9:0;13903:85;;;-1:-1:-1;;;;;2448:32:1;;;2430:51;;2418:2;2403:18;13903:85:0;2284:203:1;18209:127:0;;;;;;:::i;:::-;-1:-1:-1;;;;;18310:18:0;18283:7;18310:18;;;;;;;;;;;;18209:127;12897:148;;;:::i;27914:130::-;;;;;;:::i;:::-;;:::i;14627:145::-;;;:::i;12246:87::-;12319:6;;;;;-1:-1:-1;;;;;12319:6:0;12246:87;;17149:95;;;:::i;21187:269::-;;;;;;:::i;:::-;;:::i;18549:175::-;;;;;;:::i;:::-;;:::i;18787:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;18903:18:0;;;18876:7;18903:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;18787:151;13200:244;;;;;;:::i;:::-;;:::i;16939:91::-;16984:13;17017:5;17010:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16939:91;:::o;19085:169::-;19168:4;19185:39;10902:10;19208:7;19217:6;19185:8;:39::i;:::-;-1:-1:-1;19242:4:0;19085:169;;;;;:::o;19736:321::-;19842:4;19859:36;19869:6;19877:9;19888:6;19859:9;:36::i;:::-;19906:121;19915:6;10902:10;19937:89;19975:6;19937:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19937:19:0;;;;;;:11;:19;;;;;;;;10902:10;19937:33;;;;;;;;;;:37;:89::i;:::-;19906:8;:121::i;:::-;-1:-1:-1;20045:4:0;19736:321;;;;;:::o;14239:115::-;12319:6;;-1:-1:-1;;;;;12319:6:0;;;;;10902:10;12466:23;12458:68;;;;-1:-1:-1;;;12458:68:0;;;;;;;:::i;:::-;;;;;;;;;14315:31:::1;14333:12;14315:17;:31::i;:::-;14239:115:::0;:::o;20466:218::-;10902:10;20554:4;20603:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;20603:34:0;;;;;;;;;;20554:4;;20571:83;;20594:7;;20603:50;;20642:10;20603:38;:50::i;27525:290::-;14039:9;;27605:4;;-1:-1:-1;;;;;14039:9:0;14052:10;14039:23;14031:72;;;;-1:-1:-1;;;14031:72:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;18310:18:0;;27622:21:::1;18310:18:::0;;;;;;;;;;;27678:26:::1;18310:18:::0;27696:7;27678:5:::1;:26::i;:::-;-1:-1:-1::0;;;;;18310:18:0;;27715:20:::1;18310:18:::0;;;;;;;;;;;27779:28;;;::::1;::::0;27525:290;-1:-1:-1;;;;27525:290:0:o;27823:83::-;27880:18;27891:6;27880:10;:18::i;12897:148::-;12319:6;;-1:-1:-1;;;;;12319:6:0;;;;;10902:10;12466:23;12458:68;;;;-1:-1:-1;;;12458:68:0;;;;;;;:::i;:::-;12988:6:::1;::::0;12967:40:::1;::::0;13004:1:::1;::::0;12988:6:::1;::::0;::::1;-1:-1:-1::0;;;;;12988:6:0::1;::::0;12967:40:::1;::::0;13004:1;;12967:40:::1;13018:6;:19:::0;;-1:-1:-1;;;;;;13018:19:0::1;::::0;;12897:148::o;27914:130::-;14039:9;;-1:-1:-1;;;;;14039:9:0;14052:10;14039:23;14031:72;;;;-1:-1:-1;;;14031:72:0;;;;;;;:::i;:::-;28005:31:::1;28020:7;28029:6;28005:14;:31::i;:::-;27914:130:::0;;:::o;14627:145::-;12319:6;;-1:-1:-1;;;;;12319:6:0;;;;;10902:10;12466:23;12458:68;;;;-1:-1:-1;;;12458:68:0;;;;;;;:::i;:::-;14709:9:::1;::::0;14689:42:::1;::::0;14728:1:::1;::::0;-1:-1:-1;;;;;14709:9:0::1;::::0;14689:42:::1;::::0;14728:1;;14689:42:::1;14742:9;:22:::0;;-1:-1:-1;;;;;;14742:22:0::1;::::0;;14627:145::o;17149:95::-;17196:13;17229:7;17222:14;;;;;:::i;21187:269::-;21280:4;21297:129;10902:10;21320:7;21329:96;21368:15;21329:96;;;;;;;;;;;;;;;;;10902:10;21329:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;21329:34:0;;;;;;;;;;;;:38;:96::i;18549:175::-;18635:4;18652:42;10902:10;18676:9;18687:6;18652:9;:42::i;13200:244::-;12319:6;;-1:-1:-1;;;;;12319:6:0;;;;;10902:10;12466:23;12458:68;;;;-1:-1:-1;;;12458:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13289:22:0;::::1;13281:73;;;::::0;-1:-1:-1;;;13281:73:0;;4110:2:1;13281:73:0::1;::::0;::::1;4092:21:1::0;4149:2;4129:18;;;4122:30;4188:34;4168:18;;;4161:62;-1:-1:-1;;;4239:18:1;;;4232:36;4285:19;;13281:73:0::1;3908:402:1::0;13281:73:0::1;13391:6;::::0;13370:38:::1;::::0;-1:-1:-1;;;;;13370:38:0;;::::1;::::0;13391:6:::1;::::0;::::1;;::::0;13370:38:::1;::::0;;;::::1;13419:6;:17:::0;;-1:-1:-1;;;;;13419:17:0;;::::1;;;-1:-1:-1::0;;;;;;13419:17:0;;::::1;::::0;;;::::1;::::0;;13200:244::o;24334:346::-;-1:-1:-1;;;;;24436:19:0;;24428:68;;;;-1:-1:-1;;;24428:68:0;;4517:2:1;24428:68:0;;;4499:21:1;4556:2;4536:18;;;4529:30;4595:34;4575:18;;;4568:62;-1:-1:-1;;;4646:18:1;;;4639:34;4690:19;;24428:68:0;4315:400:1;24428:68:0;-1:-1:-1;;;;;24515:21:0;;24507:68;;;;-1:-1:-1;;;24507:68:0;;4922:2:1;24507:68:0;;;4904:21:1;4961:2;4941:18;;;4934:30;5000:34;4980:18;;;4973:62;-1:-1:-1;;;5051:18:1;;;5044:32;5093:19;;24507:68:0;4720:398:1;24507:68:0;-1:-1:-1;;;;;24588:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;24640:32;;1258:25:1;;;24640:32:0;;1231:18:1;24640:32:0;;;;;;;;24334:346;;;:::o;21946:539::-;-1:-1:-1;;;;;22052:20:0;;22044:70;;;;-1:-1:-1;;;22044:70:0;;5325:2:1;22044:70:0;;;5307:21:1;5364:2;5344:18;;;5337:30;5403:34;5383:18;;;5376:62;-1:-1:-1;;;5454:18:1;;;5447:35;5499:19;;22044:70:0;5123:401:1;22044:70:0;-1:-1:-1;;;;;22133:23:0;;22125:71;;;;-1:-1:-1;;;22125:71:0;;5731:2:1;22125:71:0;;;5713:21:1;5770:2;5750:18;;;5743:30;5809:34;5789:18;;;5782:62;-1:-1:-1;;;5860:18:1;;;5853:33;5903:19;;22125:71:0;5529:399:1;22125:71:0;22289;22311:6;22289:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22289:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;22269:17:0;;;:9;:17;;;;;;;;;;;:91;;;;22394:20;;;;;;;:32;;22419:6;22394:24;:32::i;:::-;-1:-1:-1;;;;;22371:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;22442:35;1258:25:1;;;22371:20:0;;22442:35;;;;;;1231:18:1;22442:35:0;1112:177:1;5558:166:0;5644:7;5680:12;5672:6;;;;5664:29;;;;-1:-1:-1;;;5664:29:0;;;;;;;;:::i;:::-;-1:-1:-1;5711:5:0;5715:1;5711;:5;:::i;:::-;5704:12;5558:166;-1:-1:-1;;;;5558:166:0:o;14362:257::-;-1:-1:-1;;;;;14439:26:0;;14431:84;;;;-1:-1:-1;;;14431:84:0;;6400:2:1;14431:84:0;;;6382:21:1;6439:2;6419:18;;;6412:30;6478:34;6458:18;;;6451:62;-1:-1:-1;;;6529:18:1;;;6522:43;6582:19;;14431:84:0;6198:409:1;14431:84:0;14531:45;;-1:-1:-1;;;;;14531:45:0;;;14559:1;;14531:45;;14559:1;;14531:45;14587:9;:24;;-1:-1:-1;;;;;;14587:24:0;-1:-1:-1;;;;;14587:24:0;;;;;;;;;;14362:257::o;2731:179::-;2789:7;;2821:5;2825:1;2821;:5;:::i;:::-;2809:17;;2850:1;2845;:6;;2837:46;;;;-1:-1:-1;;;2837:46:0;;6944:2:1;2837:46:0;;;6926:21:1;6983:2;6963:18;;;6956:30;7022:29;7002:18;;;6995:57;7069:18;;2837:46:0;6742:351:1;2837:46:0;2901:1;2731:179;-1:-1:-1;;;2731:179:0:o;22767:378::-;-1:-1:-1;;;;;22851:21:0;;22843:65;;;;-1:-1:-1;;;22843:65:0;;7300:2:1;22843:65:0;;;7282:21:1;7339:2;7319:18;;;7312:30;7378:33;7358:18;;;7351:61;7429:18;;22843:65:0;7098:355:1;22843:65:0;22998:12;;:24;;23015:6;22998:16;:24::i;:::-;22983:12;:39;-1:-1:-1;;;;;23054:18:0;;:9;:18;;;;;;;;;;;:30;;23077:6;23054:22;:30::i;:::-;-1:-1:-1;;;;;23033:18:0;;:9;:18;;;;;;;;;;;:51;;;;23100:37;;1258:25:1;;;23033:18:0;;:9;;23100:37;;1231:18:1;23100:37:0;;;;;;;;22767:378;;:::o;26327:91::-;26383:27;10902:10;26403:6;26383:5;:27::i;26737:295::-;26814:26;26843:84;26880:6;26843:84;;;;;;;;;;;;;;;;;:32;26853:7;10902:10;18787:151;:::i;26843:32::-;:36;:84;:36;:84::i;:::-;26814:113;-1:-1:-1;26940:51:0;26949:7;10902:10;26972:18;26940:8;:51::i;:::-;27002:22;27008:7;27017:6;27002:5;:22::i;:::-;26803:229;26737:295;;:::o;23478:418::-;-1:-1:-1;;;;;23562:21:0;;23554:67;;;;-1:-1:-1;;;23554:67:0;;7660:2:1;23554:67:0;;;7642:21:1;7699:2;7679:18;;;7672:30;7738:34;7718:18;;;7711:62;-1:-1:-1;;;7789:18:1;;;7782:31;7830:19;;23554:67:0;7458:397:1;23554:67:0;23717:68;23740:6;23717:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;23717:18:0;;:9;:18;;;;;;;;;;;;:68;:22;:68::i;:::-;-1:-1:-1;;;;;23696:18:0;;:9;:18;;;;;;;;;;:89;23811:12;;:24;;23828:6;23811:16;:24::i;:::-;23796:12;:39;23851:37;;1258:25:1;;;23877:1:0;;-1:-1:-1;;;;;23851:37:0;;;;;1246:2:1;1231:18;23851:37:0;1112:177:1;3193:158:0;3251:7;3284:1;3279;:6;;3271:49;;;;-1:-1:-1;;;3271:49:0;;8062:2:1;3271:49:0;;;8044:21:1;8101:2;8081:18;;;8074:30;8140:32;8120:18;;;8113:60;8190:18;;3271:49:0;7860:354:1;3271:49:0;3338:5;3342:1;3338;:5;:::i;14:418:1:-;163:2;152:9;145:21;126:4;195:6;189:13;238:6;233:2;222:9;218:18;211:34;297:6;292:2;284:6;280:15;275:2;264:9;260:18;254:50;353:1;348:2;339:6;328:9;324:22;320:31;313:42;423:2;416;412:7;407:2;399:6;395:15;391:29;380:9;376:45;372:54;364:62;;;14:418;;;;:::o;437:173::-;505:20;;-1:-1:-1;;;;;554:31:1;;544:42;;534:70;;600:1;597;590:12;534:70;437:173;;;:::o;615:300::-;683:6;691;744:2;732:9;723:7;719:23;715:32;712:52;;;760:1;757;750:12;712:52;783:29;802:9;783:29;:::i;:::-;773:39;881:2;866:18;;;;853:32;;-1:-1:-1;;;615:300:1:o;1294:374::-;1371:6;1379;1387;1440:2;1428:9;1419:7;1415:23;1411:32;1408:52;;;1456:1;1453;1446:12;1408:52;1479:29;1498:9;1479:29;:::i;:::-;1469:39;;1527:38;1561:2;1550:9;1546:18;1527:38;:::i;:::-;1294:374;;1517:48;;-1:-1:-1;;;1634:2:1;1619:18;;;;1606:32;;1294:374::o;1673:186::-;1732:6;1785:2;1773:9;1764:7;1760:23;1756:32;1753:52;;;1801:1;1798;1791:12;1753:52;1824:29;1843:9;1824:29;:::i;2053:226::-;2112:6;2165:2;2153:9;2144:7;2140:23;2136:32;2133:52;;;2181:1;2178;2171:12;2133:52;-1:-1:-1;2226:23:1;;2053:226;-1:-1:-1;2053:226:1:o;2492:260::-;2560:6;2568;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;;2708:38;2742:2;2731:9;2727:18;2708:38;:::i;:::-;2698:48;;2492:260;;;;;:::o;2757:380::-;2836:1;2832:12;;;;2879;;;2900:61;;2954:4;2946:6;2942:17;2932:27;;2900:61;3007:2;2999:6;2996:14;2976:18;2973:38;2970:161;;3053:10;3048:3;3044:20;3041:1;3034:31;3088:4;3085:1;3078:15;3116:4;3113:1;3106:15;2970:161;;2757:380;;;:::o;3142:356::-;3344:2;3326:21;;;3363:18;;;3356:30;3422:34;3417:2;3402:18;;3395:62;3489:2;3474:18;;3142:356::o;3503:400::-;3705:2;3687:21;;;3744:2;3724:18;;;3717:30;3783:34;3778:2;3763:18;;3756:62;-1:-1:-1;;;3849:2:1;3834:18;;3827:34;3893:3;3878:19;;3503:400::o;5933:127::-;5994:10;5989:3;5985:20;5982:1;5975:31;6025:4;6022:1;6015:15;6049:4;6046:1;6039:15;6065:128;6132:9;;;6153:11;;;6150:37;;;6167:18;;:::i;6612:125::-;6677:9;;;6698:10;;;6695:36;;;6711:18;;:::i
Swarm Source
ipfs://00594fc07e4ec50a64340926bf4a76d1c7416a0e61d2d4893ec76b58f136d31b
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 31 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
[ 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.