Overview
FTM Balance
FTM Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 1 from a total of 1 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Set Vault | 51980568 | 834 days ago | IN | 0 FTM | 0.00165266 |
Latest 1 internal transaction
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
51980348 | 834 days ago | Contract Creation | 0 FTM |
Contract Source Code (Solidity)
/** *Submitted for verification at ftmscan.com on 2022-12-07 */ // SPDX-License-Identifier: MIT pragma solidity 0.8.13; // // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol) /** * @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 `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); /** * @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); } // // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.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); } // // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/ERC20.sol) /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin 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, _allowances[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 = _allowances[owner][spender]; require( currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero" ); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `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; } _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; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Spend `amount` form the allowance of `owner` toward `spender`. * * 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 {} } // // OpenZeppelin Contracts v4.4.1 (access/Ownable.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 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 { _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); } } // contract vexHNR is ERC20, Ownable { address public vault; constructor() ERC20("vexHonour", "vexHNR") { // do nothing } modifier onlyVault() { require(msg.sender == vault, "Contract: Not Vault"); _; } function mint(uint256 amount, address depositor) external onlyVault { _mint(depositor, amount); } function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual override { super._beforeTokenTransfer(from, to, amount); // only allow the vault to transfer if (from != address(0)) { require(from == vault, "Contract: Not Vault"); } } function setVault(address _vault) external onlyOwner { vault = _vault; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"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"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"depositor","type":"address"}],"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":[{"internalType":"address","name":"_vault","type":"address"}],"name":"setVault","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":[],"name":"vault","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060408051808201825260098152683b32bc2437b737bab960b91b6020808301918252835180850190945260068452653b32bc24272960d11b9084015281519192916200006191600391620000f0565b50805162000077906004906020840190620000f0565b505050620000946200008e6200009a60201b60201c565b6200009e565b620001d2565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620000fe9062000196565b90600052602060002090601f0160209004810192826200012257600085556200016d565b82601f106200013d57805160ff19168380011785556200016d565b828001600101855582156200016d579182015b828111156200016d57825182559160200191906001019062000150565b506200017b9291506200017f565b5090565b5b808211156200017b576000815560010162000180565b600181811c90821680620001ab57607f821691505b602082108103620001cc57634e487b7160e01b600052602260045260246000fd5b50919050565b610d3080620001e26000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c8063715018a6116100a2578063a457c2d711610071578063a457c2d71461021e578063a9059cbb14610231578063dd62ed3e14610244578063f2fde38b1461027d578063fbfa77cf1461029057600080fd5b8063715018a6146101d65780638da5cb5b146101de57806394bf804d1461020357806395d89b411461021657600080fd5b8063313ce567116100de578063313ce5671461017657806339509351146101855780636817031b1461019857806370a08231146101ad57600080fd5b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015157806323b872dd14610163575b600080fd5b6101186102a3565b6040516101259190610b16565b60405180910390f35b61014161013c366004610b87565b610335565b6040519015158152602001610125565b6002545b604051908152602001610125565b610141610171366004610bb1565b61034d565b60405160128152602001610125565b610141610193366004610b87565b610371565b6101ab6101a6366004610bed565b6103b0565b005b6101556101bb366004610bed565b6001600160a01b031660009081526020819052604090205490565b6101ab610405565b6005546001600160a01b03165b6040516001600160a01b039091168152602001610125565b6101ab610211366004610c0f565b61043b565b610118610499565b61014161022c366004610b87565b6104a8565b61014161023f366004610b87565b61053a565b610155610252366004610c3b565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6101ab61028b366004610bed565b610548565b6006546101eb906001600160a01b031681565b6060600380546102b290610c65565b80601f01602080910402602001604051908101604052809291908181526020018280546102de90610c65565b801561032b5780601f106103005761010080835404028352916020019161032b565b820191906000526020600020905b81548152906001019060200180831161030e57829003601f168201915b5050505050905090565b6000336103438185856105e3565b5060019392505050565b60003361035b858285610707565b610366858585610799565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490919061034390829086906103ab908790610c9f565b6105e3565b6005546001600160a01b031633146103e35760405162461bcd60e51b81526004016103da90610cc5565b60405180910390fd5b600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b0316331461042f5760405162461bcd60e51b81526004016103da90610cc5565b6104396000610972565b565b6006546001600160a01b0316331461048b5760405162461bcd60e51b815260206004820152601360248201527210dbdb9d1c9858dd0e88139bdd0815985d5b1d606a1b60448201526064016103da565b61049581836109c4565b5050565b6060600480546102b290610c65565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091908381101561052d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103da565b61036682868684036105e3565b600033610343818585610799565b6005546001600160a01b031633146105725760405162461bcd60e51b81526004016103da90610cc5565b6001600160a01b0381166105d75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103da565b6105e081610972565b50565b6001600160a01b0383166106455760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103da565b6001600160a01b0382166106a65760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103da565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03838116600090815260016020908152604080832093861683529290522054600019811461079357818110156107865760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016103da565b61079384848484036105e3565b50505050565b6001600160a01b0383166107fd5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103da565b6001600160a01b03821661085f5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103da565b61086a838383610aaf565b6001600160a01b038316600090815260208190526040902054818110156108e25760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103da565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610919908490610c9f565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161096591815260200190565b60405180910390a3610793565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216610a1a5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016103da565b610a2660008383610aaf565b8060026000828254610a389190610c9f565b90915550506001600160a01b03821660009081526020819052604081208054839290610a65908490610c9f565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b03831615610b11576006546001600160a01b03848116911614610b115760405162461bcd60e51b815260206004820152601360248201527210dbdb9d1c9858dd0e88139bdd0815985d5b1d606a1b60448201526064016103da565b505050565b600060208083528351808285015260005b81811015610b4357858101830151858201604001528201610b27565b81811115610b55576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610b8257600080fd5b919050565b60008060408385031215610b9a57600080fd5b610ba383610b6b565b946020939093013593505050565b600080600060608486031215610bc657600080fd5b610bcf84610b6b565b9250610bdd60208501610b6b565b9150604084013590509250925092565b600060208284031215610bff57600080fd5b610c0882610b6b565b9392505050565b60008060408385031215610c2257600080fd5b82359150610c3260208401610b6b565b90509250929050565b60008060408385031215610c4e57600080fd5b610c5783610b6b565b9150610c3260208401610b6b565b600181811c90821680610c7957607f821691505b602082108103610c9957634e487b7160e01b600052602260045260246000fd5b50919050565b60008219821115610cc057634e487b7160e01b600052601160045260246000fd5b500190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260408201526060019056fea2646970667358221220f7d363e3885e7be6bd96b51ec28b294674d211c3a53d9104d4b145126e6e327564736f6c634300080d0033
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061010b5760003560e01c8063715018a6116100a2578063a457c2d711610071578063a457c2d71461021e578063a9059cbb14610231578063dd62ed3e14610244578063f2fde38b1461027d578063fbfa77cf1461029057600080fd5b8063715018a6146101d65780638da5cb5b146101de57806394bf804d1461020357806395d89b411461021657600080fd5b8063313ce567116100de578063313ce5671461017657806339509351146101855780636817031b1461019857806370a08231146101ad57600080fd5b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015157806323b872dd14610163575b600080fd5b6101186102a3565b6040516101259190610b16565b60405180910390f35b61014161013c366004610b87565b610335565b6040519015158152602001610125565b6002545b604051908152602001610125565b610141610171366004610bb1565b61034d565b60405160128152602001610125565b610141610193366004610b87565b610371565b6101ab6101a6366004610bed565b6103b0565b005b6101556101bb366004610bed565b6001600160a01b031660009081526020819052604090205490565b6101ab610405565b6005546001600160a01b03165b6040516001600160a01b039091168152602001610125565b6101ab610211366004610c0f565b61043b565b610118610499565b61014161022c366004610b87565b6104a8565b61014161023f366004610b87565b61053a565b610155610252366004610c3b565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6101ab61028b366004610bed565b610548565b6006546101eb906001600160a01b031681565b6060600380546102b290610c65565b80601f01602080910402602001604051908101604052809291908181526020018280546102de90610c65565b801561032b5780601f106103005761010080835404028352916020019161032b565b820191906000526020600020905b81548152906001019060200180831161030e57829003601f168201915b5050505050905090565b6000336103438185856105e3565b5060019392505050565b60003361035b858285610707565b610366858585610799565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490919061034390829086906103ab908790610c9f565b6105e3565b6005546001600160a01b031633146103e35760405162461bcd60e51b81526004016103da90610cc5565b60405180910390fd5b600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b0316331461042f5760405162461bcd60e51b81526004016103da90610cc5565b6104396000610972565b565b6006546001600160a01b0316331461048b5760405162461bcd60e51b815260206004820152601360248201527210dbdb9d1c9858dd0e88139bdd0815985d5b1d606a1b60448201526064016103da565b61049581836109c4565b5050565b6060600480546102b290610c65565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091908381101561052d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103da565b61036682868684036105e3565b600033610343818585610799565b6005546001600160a01b031633146105725760405162461bcd60e51b81526004016103da90610cc5565b6001600160a01b0381166105d75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103da565b6105e081610972565b50565b6001600160a01b0383166106455760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103da565b6001600160a01b0382166106a65760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103da565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03838116600090815260016020908152604080832093861683529290522054600019811461079357818110156107865760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016103da565b61079384848484036105e3565b50505050565b6001600160a01b0383166107fd5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103da565b6001600160a01b03821661085f5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103da565b61086a838383610aaf565b6001600160a01b038316600090815260208190526040902054818110156108e25760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103da565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610919908490610c9f565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161096591815260200190565b60405180910390a3610793565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216610a1a5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016103da565b610a2660008383610aaf565b8060026000828254610a389190610c9f565b90915550506001600160a01b03821660009081526020819052604081208054839290610a65908490610c9f565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b03831615610b11576006546001600160a01b03848116911614610b115760405162461bcd60e51b815260206004820152601360248201527210dbdb9d1c9858dd0e88139bdd0815985d5b1d606a1b60448201526064016103da565b505050565b600060208083528351808285015260005b81811015610b4357858101830151858201604001528201610b27565b81811115610b55576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610b8257600080fd5b919050565b60008060408385031215610b9a57600080fd5b610ba383610b6b565b946020939093013593505050565b600080600060608486031215610bc657600080fd5b610bcf84610b6b565b9250610bdd60208501610b6b565b9150604084013590509250925092565b600060208284031215610bff57600080fd5b610c0882610b6b565b9392505050565b60008060408385031215610c2257600080fd5b82359150610c3260208401610b6b565b90509250929050565b60008060408385031215610c4e57600080fd5b610c5783610b6b565b9150610c3260208401610b6b565b600181811c90821680610c7957607f821691505b602082108103610c9957634e487b7160e01b600052602260045260246000fd5b50919050565b60008219821115610cc057634e487b7160e01b600052601160045260246000fd5b500190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260408201526060019056fea2646970667358221220f7d363e3885e7be6bd96b51ec28b294674d211c3a53d9104d4b145126e6e327564736f6c634300080d0033
Deployed Bytecode Sourcemap
18682:747:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6139:94;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8417:210;;;;;;:::i;:::-;;:::i;:::-;;;1218:14:1;;1211:22;1193:41;;1181:2;1166:18;8417:210:0;1053:187:1;7195:102:0;7279:12;;7195:102;;;1391:25:1;;;1379:2;1364:18;7195:102:0;1245:177:1;9173:263:0;;;;;;:::i;:::-;;:::i;7051:87::-;;;7130:2;1902:36:1;;1890:2;1875:18;7051:87:0;1760:184:1;9819:244:0;;;;;;:::i;:::-;;:::i;19346:80::-;;;;;;:::i;:::-;;:::i;:::-;;7352:149;;;;;;:::i;:::-;-1:-1:-1;;;;;7477:18:0;7451:7;7477:18;;;;;;;;;;;;7352:149;17911:97;;;:::i;17300:81::-;17369:6;;-1:-1:-1;;;;;17369:6:0;17300:81;;;-1:-1:-1;;;;;2304:32:1;;;2286:51;;2274:2;2259:18;17300:81:0;2140:203:1;18921:105:0;;;;;;:::i;:::-;;:::i;6342:98::-;;;:::i;10536:445::-;;;;;;:::i;:::-;;:::i;7689:202::-;;;;;;:::i;:::-;;:::i;7946:173::-;;;;;;:::i;:::-;-1:-1:-1;;;;;8086:18:0;;;8060:7;8086:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;7946:173;18153:191;;;;;;:::i;:::-;;:::i;18721:20::-;;;;;-1:-1:-1;;;;;18721:20:0;;;6139:94;6193:13;6222:5;6215:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6139:94;:::o;8417:210::-;8520:4;4008:10;8571:32;4008:10;8587:7;8596:6;8571:8;:32::i;:::-;-1:-1:-1;8617:4:0;;8417:210;-1:-1:-1;;;8417:210:0:o;9173:263::-;9290:4;4008:10;9340:38;9356:4;4008:10;9371:6;9340:15;:38::i;:::-;9385:27;9395:4;9401:2;9405:6;9385:9;:27::i;:::-;-1:-1:-1;9426:4:0;;9173:263;-1:-1:-1;;;;9173:263:0:o;9819:244::-;4008:10;9922:4;9998:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;9998:27:0;;;;;;;;;;9922:4;;4008:10;9973:66;;4008:10;;9998:27;;:40;;10028:10;;9998:40;:::i;:::-;9973:8;:66::i;19346:80::-;17369:6;;-1:-1:-1;;;;;17369:6:0;4008:10;17502:23;17494:68;;;;-1:-1:-1;;;17494:68:0;;;;;;;:::i;:::-;;;;;;;;;19406:5:::1;:14:::0;;-1:-1:-1;;;;;;19406:14:0::1;-1:-1:-1::0;;;;;19406:14:0;;;::::1;::::0;;;::::1;::::0;;19346:80::o;17911:97::-;17369:6;;-1:-1:-1;;;;;17369:6:0;4008:10;17502:23;17494:68;;;;-1:-1:-1;;;17494:68:0;;;;;;;:::i;:::-;17972:30:::1;17999:1;17972:18;:30::i;:::-;17911:97::o:0;18921:105::-;18872:5;;-1:-1:-1;;;;;18872:5:0;18858:10;:19;18850:51;;;;-1:-1:-1;;;18850:51:0;;4050:2:1;18850:51:0;;;4032:21:1;4089:2;4069:18;;;4062:30;-1:-1:-1;;;4108:18:1;;;4101:49;4167:18;;18850:51:0;3848:343:1;18850:51:0;18996:24:::1;19002:9;19013:6;18996:5;:24::i;:::-;18921:105:::0;;:::o;6342:98::-;6398:13;6427:7;6420:14;;;;;:::i;10536:445::-;4008:10;10644:4;10722:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;10722:27:0;;;;;;;;;;10644:4;;4008:10;10772:35;;;;10756:106;;;;-1:-1:-1;;;10756:106:0;;4398:2:1;10756:106:0;;;4380:21:1;4437:2;4417:18;;;4410:30;4476:34;4456:18;;;4449:62;-1:-1:-1;;;4527:18:1;;;4520:35;4572:19;;10756:106:0;4196:401:1;10756:106:0;10888:60;10897:5;10904:7;10932:15;10913:16;:34;10888:8;:60::i;7689:202::-;7788:4;4008:10;7839:28;4008:10;7856:2;7860:6;7839:9;:28::i;18153:191::-;17369:6;;-1:-1:-1;;;;;17369:6:0;4008:10;17502:23;17494:68;;;;-1:-1:-1;;;17494:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;18238:22:0;::::1;18230:73;;;::::0;-1:-1:-1;;;18230:73:0;;4804:2:1;18230:73:0::1;::::0;::::1;4786:21:1::0;4843:2;4823:18;;;4816:30;4882:34;4862:18;;;4855:62;-1:-1:-1;;;4933:18:1;;;4926:36;4979:19;;18230:73:0::1;4602:402:1::0;18230:73:0::1;18310:28;18329:8;18310:18;:28::i;:::-;18153:191:::0;:::o;13945:348::-;-1:-1:-1;;;;;14063:19:0;;14055:68;;;;-1:-1:-1;;;14055:68:0;;5211:2:1;14055:68:0;;;5193:21:1;5250:2;5230:18;;;5223:30;5289:34;5269:18;;;5262:62;-1:-1:-1;;;5340:18:1;;;5333:34;5384:19;;14055:68:0;5009:400:1;14055:68:0;-1:-1:-1;;;;;14138:21:0;;14130:68;;;;-1:-1:-1;;;14130:68:0;;5616:2:1;14130:68:0;;;5598:21:1;5655:2;5635:18;;;5628:30;5694:34;5674:18;;;5667:62;-1:-1:-1;;;5745:18:1;;;5738:32;5787:19;;14130:68:0;5414:398:1;14130:68:0;-1:-1:-1;;;;;14207:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;14255:32;;1391:25:1;;;14255:32:0;;1364:18:1;14255:32:0;;;;;;;13945:348;;;:::o;14562:399::-;-1:-1:-1;;;;;8086:18:0;;;14679:24;8086:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;14742:37:0;;14738:218;;14818:6;14798:16;:26;;14790:68;;;;-1:-1:-1;;;14790:68:0;;6019:2:1;14790:68:0;;;6001:21:1;6058:2;6038:18;;;6031:30;6097:31;6077:18;;;6070:59;6146:18;;14790:68:0;5817:353:1;14790:68:0;14888:51;14897:5;14904:7;14932:6;14913:16;:25;14888:8;:51::i;:::-;14672:289;14562:399;;;:::o;11430:609::-;-1:-1:-1;;;;;11543:18:0;;11535:68;;;;-1:-1:-1;;;11535:68:0;;6377:2:1;11535:68:0;;;6359:21:1;6416:2;6396:18;;;6389:30;6455:34;6435:18;;;6428:62;-1:-1:-1;;;6506:18:1;;;6499:35;6551:19;;11535:68:0;6175:401:1;11535:68:0;-1:-1:-1;;;;;11618:16:0;;11610:64;;;;-1:-1:-1;;;11610:64:0;;6783:2:1;11610:64:0;;;6765:21:1;6822:2;6802:18;;;6795:30;6861:34;6841:18;;;6834:62;-1:-1:-1;;;6912:18:1;;;6905:33;6955:19;;11610:64:0;6581:399:1;11610:64:0;11683:38;11704:4;11710:2;11714:6;11683:20;:38::i;:::-;-1:-1:-1;;;;;11752:15:0;;11730:19;11752:15;;;;;;;;;;;11782:21;;;;11774:72;;;;-1:-1:-1;;;11774:72:0;;7187:2:1;11774:72:0;;;7169:21:1;7226:2;7206:18;;;7199:30;7265:34;7245:18;;;7238:62;-1:-1:-1;;;7316:18:1;;;7309:36;7362:19;;11774:72:0;6985:402:1;11774:72:0;-1:-1:-1;;;;;11872:15:0;;;:9;:15;;;;;;;;;;;11890:20;;;11872:38;;11924:13;;;;;;;;:23;;11904:6;;11872:9;11924:23;;11904:6;;11924:23;:::i;:::-;;;;;;;;11976:2;-1:-1:-1;;;;;11961:26:0;11970:4;-1:-1:-1;;;;;11961:26:0;;11980:6;11961:26;;;;1391:25:1;;1379:2;1364:18;;1245:177;11961:26:0;;;;;;;;11996:37;19032:308;18494:177;18583:6;;;-1:-1:-1;;;;;18596:17:0;;;-1:-1:-1;;;;;;18596:17:0;;;;;;;18625:40;;18583:6;;;18596:17;18583:6;;18625:40;;18564:16;;18625:40;18557:114;18494:177;:::o;12306:373::-;-1:-1:-1;;;;;12386:21:0;;12378:65;;;;-1:-1:-1;;;12378:65:0;;7594:2:1;12378:65:0;;;7576:21:1;7633:2;7613:18;;;7606:30;7672:33;7652:18;;;7645:61;7723:18;;12378:65:0;7392:355:1;12378:65:0;12452:49;12481:1;12485:7;12494:6;12452:20;:49::i;:::-;12526:6;12510:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;12539:18:0;;:9;:18;;;;;;;;;;:28;;12561:6;;12539:9;:28;;12561:6;;12539:28;:::i;:::-;;;;-1:-1:-1;;12579:37:0;;1391:25:1;;;-1:-1:-1;;;;;12579:37:0;;;12596:1;;12579:37;;1379:2:1;1364:18;12579:37:0;;;;;;;18921:105;;:::o;19032:308::-;-1:-1:-1;;;;;19253:18:0;;;19249:86;;19298:5;;-1:-1:-1;;;;;19290:13:0;;;19298:5;;19290:13;19282:45;;;;-1:-1:-1;;;19282:45:0;;4050:2:1;19282:45:0;;;4032:21:1;4089:2;4069:18;;;4062:30;-1:-1:-1;;;4108:18:1;;;4101:49;4167:18;;19282:45:0;3848:343:1;19282:45:0;19032:308;;;:::o;14:597:1:-;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:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:173::-;684:20;;-1:-1:-1;;;;;733:31:1;;723:42;;713:70;;779:1;776;769:12;713:70;616:173;;;:::o;794:254::-;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;962:29;981:9;962:29;:::i;:::-;952:39;1038:2;1023:18;;;;1010:32;;-1:-1:-1;;;794:254:1:o;1427:328::-;1504:6;1512;1520;1573:2;1561:9;1552:7;1548:23;1544:32;1541:52;;;1589:1;1586;1579:12;1541:52;1612:29;1631:9;1612:29;:::i;:::-;1602:39;;1660:38;1694:2;1683:9;1679:18;1660:38;:::i;:::-;1650:48;;1745:2;1734:9;1730:18;1717:32;1707:42;;1427:328;;;;;:::o;1949:186::-;2008:6;2061:2;2049:9;2040:7;2036:23;2032:32;2029:52;;;2077:1;2074;2067:12;2029:52;2100:29;2119:9;2100:29;:::i;:::-;2090:39;1949:186;-1:-1:-1;;;1949:186:1:o;2348:254::-;2416:6;2424;2477:2;2465:9;2456:7;2452:23;2448:32;2445:52;;;2493:1;2490;2483:12;2445:52;2529:9;2516:23;2506:33;;2558:38;2592:2;2581:9;2577:18;2558:38;:::i;:::-;2548:48;;2348:254;;;;;:::o;2607:260::-;2675:6;2683;2736:2;2724:9;2715:7;2711:23;2707:32;2704:52;;;2752:1;2749;2742:12;2704:52;2775:29;2794:9;2775:29;:::i;:::-;2765:39;;2823:38;2857:2;2846:9;2842:18;2823:38;:::i;2872:380::-;2951:1;2947:12;;;;2994;;;3015:61;;3069:4;3061:6;3057:17;3047:27;;3015:61;3122:2;3114:6;3111:14;3091:18;3088:38;3085:161;;3168:10;3163:3;3159:20;3156:1;3149:31;3203:4;3200:1;3193:15;3231:4;3228:1;3221:15;3085:161;;2872:380;;;:::o;3257:225::-;3297:3;3328:1;3324:6;3321:1;3318:13;3315:136;;;3373:10;3368:3;3364:20;3361:1;3354:31;3408:4;3405:1;3398:15;3436:4;3433:1;3426:15;3315:136;-1:-1:-1;3467:9:1;;3257:225::o;3487:356::-;3689:2;3671:21;;;3708:18;;;3701:30;3767:34;3762:2;3747:18;;3740:62;3834:2;3819:18;;3487:356::o
Swarm Source
ipfs://f7d363e3885e7be6bd96b51ec28b294674d211c3a53d9104d4b145126e6e3275
Multichain Portfolio | 35 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.