Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
FankoTokenV2
Compiler Version
v0.8.26+commit.8a97fa7a
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity 0.8.26; import {Initializable} from "@openzeppelin/contracts/proxy/utils/Initializable.sol"; import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol"; import {ERC20, ERC20Burnable} from "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol"; import {ReentrancyGuard} from "@openzeppelin/contracts/utils/ReentrancyGuard.sol"; /** * @title FankoTokenV2 * @notice Immutable contract. Creator can't rug but they can still jeet, so becareful. * @dev only FankoFactory can setPair abd unblockPair */ contract FankoTokenV2 is Initializable, ERC20Burnable, Ownable, ReentrancyGuard { string private _name; string private _symbol; address public pair; bool public pairBlocked; error InvalidTransfer(); constructor() Ownable(msg.sender) ERC20("Fanko", "FANKO") {} function initialize(string memory name_, string memory symbol_, uint256 totalSupply_) external initializer { _name = name_; _symbol = symbol_; _mint(msg.sender, totalSupply_); _transferOwnership(msg.sender); pairBlocked = true; } /////////////////////////////////////////////////////////////// // Admin Actions // /////////////////////////////////////////////////////////////// function setPair(address pair_) external onlyOwner { pair = pair_; } function unblockPair() external onlyOwner { pairBlocked = false; } //////////////////////////////////////////////////////////////// // Private Write Functions // //////////////////////////////////////////////////////////////// function _update(address from, address to, uint256 value) internal virtual override { if (to == pair && pairBlocked) { revert InvalidTransfer(); } super._update(from, to, value); } //////////////////////////////////////////////////////////////// // Public Read Functions // //////////////////////////////////////////////////////////////// function name() public view virtual override returns (string memory) { return _name; } function symbol() public view virtual override returns (string memory) { return _symbol; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (proxy/utils/Initializable.sol) pragma solidity ^0.8.20; /** * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed * behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect. * * The initialization functions use a version number. Once a version number is used, it is consumed and cannot be * reused. This mechanism prevents re-execution of each "step" but allows the creation of new initialization steps in * case an upgrade adds a module that needs to be initialized. * * For example: * * [.hljs-theme-light.nopadding] * ```solidity * contract MyToken is ERC20Upgradeable { * function initialize() initializer public { * __ERC20_init("MyToken", "MTK"); * } * } * * contract MyTokenV2 is MyToken, ERC20PermitUpgradeable { * function initializeV2() reinitializer(2) public { * __ERC20Permit_init("MyToken"); * } * } * ``` * * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}. * * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity. * * [CAUTION] * ==== * Avoid leaving a contract uninitialized. * * An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation * contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke * the {_disableInitializers} function in the constructor to automatically lock it when it is deployed: * * [.hljs-theme-light.nopadding] * ``` * /// @custom:oz-upgrades-unsafe-allow constructor * constructor() { * _disableInitializers(); * } * ``` * ==== */ abstract contract Initializable { /** * @dev Storage of the initializable contract. * * It's implemented on a custom ERC-7201 namespace to reduce the risk of storage collisions * when using with upgradeable contracts. * * @custom:storage-location erc7201:openzeppelin.storage.Initializable */ struct InitializableStorage { /** * @dev Indicates that the contract has been initialized. */ uint64 _initialized; /** * @dev Indicates that the contract is in the process of being initialized. */ bool _initializing; } // keccak256(abi.encode(uint256(keccak256("openzeppelin.storage.Initializable")) - 1)) & ~bytes32(uint256(0xff)) bytes32 private constant INITIALIZABLE_STORAGE = 0xf0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00; /** * @dev The contract is already initialized. */ error InvalidInitialization(); /** * @dev The contract is not initializing. */ error NotInitializing(); /** * @dev Triggered when the contract has been initialized or reinitialized. */ event Initialized(uint64 version); /** * @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope, * `onlyInitializing` functions can be used to initialize parent contracts. * * Similar to `reinitializer(1)`, except that in the context of a constructor an `initializer` may be invoked any * number of times. This behavior in the constructor can be useful during testing and is not expected to be used in * production. * * Emits an {Initialized} event. */ modifier initializer() { // solhint-disable-next-line var-name-mixedcase InitializableStorage storage $ = _getInitializableStorage(); // Cache values to avoid duplicated sloads bool isTopLevelCall = !$._initializing; uint64 initialized = $._initialized; // Allowed calls: // - initialSetup: the contract is not in the initializing state and no previous version was // initialized // - construction: the contract is initialized at version 1 (no reininitialization) and the // current contract is just being deployed bool initialSetup = initialized == 0 && isTopLevelCall; bool construction = initialized == 1 && address(this).code.length == 0; if (!initialSetup && !construction) { revert InvalidInitialization(); } $._initialized = 1; if (isTopLevelCall) { $._initializing = true; } _; if (isTopLevelCall) { $._initializing = false; emit Initialized(1); } } /** * @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the * contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be * used to initialize parent contracts. * * A reinitializer may be used after the original initialization step. This is essential to configure modules that * are added through upgrades and that require initialization. * * When `version` is 1, this modifier is similar to `initializer`, except that functions marked with `reinitializer` * cannot be nested. If one is invoked in the context of another, execution will revert. * * Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in * a contract, executing them in the right order is up to the developer or operator. * * WARNING: Setting the version to 2**64 - 1 will prevent any future reinitialization. * * Emits an {Initialized} event. */ modifier reinitializer(uint64 version) { // solhint-disable-next-line var-name-mixedcase InitializableStorage storage $ = _getInitializableStorage(); if ($._initializing || $._initialized >= version) { revert InvalidInitialization(); } $._initialized = version; $._initializing = true; _; $._initializing = false; emit Initialized(version); } /** * @dev Modifier to protect an initialization function so that it can only be invoked by functions with the * {initializer} and {reinitializer} modifiers, directly or indirectly. */ modifier onlyInitializing() { _checkInitializing(); _; } /** * @dev Reverts if the contract is not in an initializing state. See {onlyInitializing}. */ function _checkInitializing() internal view virtual { if (!_isInitializing()) { revert NotInitializing(); } } /** * @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call. * Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized * to any version. It is recommended to use this to lock implementation contracts that are designed to be called * through proxies. * * Emits an {Initialized} event the first time it is successfully executed. */ function _disableInitializers() internal virtual { // solhint-disable-next-line var-name-mixedcase InitializableStorage storage $ = _getInitializableStorage(); if ($._initializing) { revert InvalidInitialization(); } if ($._initialized != type(uint64).max) { $._initialized = type(uint64).max; emit Initialized(type(uint64).max); } } /** * @dev Returns the highest version that has been initialized. See {reinitializer}. */ function _getInitializedVersion() internal view returns (uint64) { return _getInitializableStorage()._initialized; } /** * @dev Returns `true` if the contract is currently initializing. See {onlyInitializing}. */ function _isInitializing() internal view returns (bool) { return _getInitializableStorage()._initializing; } /** * @dev Returns a pointer to the storage namespace. */ // solhint-disable-next-line var-name-mixedcase function _getInitializableStorage() private pure returns (InitializableStorage storage $) { assembly { $.slot := INITIALIZABLE_STORAGE } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) pragma solidity ^0.8.20; import {Context} from "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * The initial owner is set to the address provided by the deployer. This can * later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; /** * @dev The caller account is not authorized to perform an operation. */ error OwnableUnauthorizedAccount(address account); /** * @dev The owner is not a valid owner account. (eg. `address(0)`) */ error OwnableInvalidOwner(address owner); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the address provided by the deployer as the initial owner. */ constructor(address initialOwner) { if (initialOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(initialOwner); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { if (owner() != _msgSender()) { revert OwnableUnauthorizedAccount(_msgSender()); } } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { if (newOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/ERC20Burnable.sol) pragma solidity ^0.8.20; import {ERC20} from "../ERC20.sol"; import {Context} from "../../../utils/Context.sol"; /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys a `value` amount of tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 value) public virtual { _burn(_msgSender(), value); } /** * @dev Destroys a `value` amount of 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 * `value`. */ function burnFrom(address account, uint256 value) public virtual { _spendAllowance(account, _msgSender(), value); _burn(account, value); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/ReentrancyGuard.sol) pragma solidity ^0.8.20; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant NOT_ENTERED = 1; uint256 private constant ENTERED = 2; uint256 private _status; /** * @dev Unauthorized reentrant call. */ error ReentrancyGuardReentrantCall(); constructor() { _status = NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { _nonReentrantBefore(); _; _nonReentrantAfter(); } function _nonReentrantBefore() private { // On the first call to nonReentrant, _status will be NOT_ENTERED if (_status == ENTERED) { revert ReentrancyGuardReentrantCall(); } // Any calls to nonReentrant after this point will fail _status = ENTERED; } function _nonReentrantAfter() private { // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = NOT_ENTERED; } /** * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a * `nonReentrant` function in the call stack. */ function _reentrancyGuardEntered() internal view returns (bool) { return _status == ENTERED; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol) pragma solidity ^0.8.20; /** * @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; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.20; import {IERC20} from "./IERC20.sol"; import {IERC20Metadata} from "./extensions/IERC20Metadata.sol"; import {Context} from "../../utils/Context.sol"; import {IERC20Errors} from "../../interfaces/draft-IERC6093.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}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of 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. */ abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors { mapping(address account => uint256) private _balances; mapping(address account => mapping(address spender => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `value`. */ function transfer(address to, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _transfer(owner, to, value); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `value` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, value); return true; } /** * @dev See {IERC20-transferFrom}. * * 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 `value`. * - the caller must have allowance for ``from``'s tokens of at least * `value`. */ function transferFrom(address from, address to, uint256 value) public virtual returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, value); _transfer(from, to, value); return true; } /** * @dev Moves a `value` amount of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _transfer(address from, address to, uint256 value) internal { if (from == address(0)) { revert ERC20InvalidSender(address(0)); } if (to == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(from, to, value); } /** * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from` * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding * this function. * * Emits a {Transfer} event. */ function _update(address from, address to, uint256 value) internal virtual { if (from == address(0)) { // Overflow check required: The rest of the code assumes that totalSupply never overflows _totalSupply += value; } else { uint256 fromBalance = _balances[from]; if (fromBalance < value) { revert ERC20InsufficientBalance(from, fromBalance, value); } unchecked { // Overflow not possible: value <= fromBalance <= totalSupply. _balances[from] = fromBalance - value; } } if (to == address(0)) { unchecked { // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply. _totalSupply -= value; } } else { unchecked { // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256. _balances[to] += value; } } emit Transfer(from, to, value); } /** * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0). * Relies on the `_update` mechanism * * Emits a {Transfer} event with `from` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _mint(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(address(0), account, value); } /** * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply. * Relies on the `_update` mechanism. * * Emits a {Transfer} event with `to` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead */ function _burn(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidSender(address(0)); } _update(account, address(0), value); } /** * @dev Sets `value` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. * * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument. */ function _approve(address owner, address spender, uint256 value) internal { _approve(owner, spender, value, true); } /** * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event. * * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any * `Approval` event during `transferFrom` operations. * * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to * true using the following override: * ``` * function _approve(address owner, address spender, uint256 value, bool) internal virtual override { * super._approve(owner, spender, value, true); * } * ``` * * Requirements are the same as {_approve}. */ function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual { if (owner == address(0)) { revert ERC20InvalidApprover(address(0)); } if (spender == address(0)) { revert ERC20InvalidSpender(address(0)); } _allowances[owner][spender] = value; if (emitEvent) { emit Approval(owner, spender, value); } } /** * @dev Updates `owner` s allowance for `spender` based on spent `value`. * * Does not update the allowance value in case of infinite allowance. * Revert if not enough allowance is available. * * Does not emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 value) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { if (currentAllowance < value) { revert ERC20InsufficientAllowance(spender, currentAllowance, value); } unchecked { _approve(owner, spender, currentAllowance - value, false); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.20; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the value of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the value of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves a `value` amount of tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 value) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets a `value` amount of tokens as the allowance of `spender` over the * caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 value) external returns (bool); /** * @dev Moves a `value` amount of tokens from `from` to `to` using the * allowance mechanism. `value` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 value) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.20; import {IERC20} from "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol) pragma solidity ^0.8.20; /** * @dev Standard ERC20 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens. */ interface IERC20Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC20InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC20InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers. * @param spender Address that may be allowed to operate on tokens without being their owner. * @param allowance Amount of tokens a `spender` is allowed to operate with. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC20InvalidApprover(address approver); /** * @dev Indicates a failure with the `spender` to be approved. Used in approvals. * @param spender Address that may be allowed to operate on tokens without being their owner. */ error ERC20InvalidSpender(address spender); } /** * @dev Standard ERC721 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens. */ interface IERC721Errors { /** * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20. * Used in balance queries. * @param owner Address of the current owner of a token. */ error ERC721InvalidOwner(address owner); /** * @dev Indicates a `tokenId` whose `owner` is the zero address. * @param tokenId Identifier number of a token. */ error ERC721NonexistentToken(uint256 tokenId); /** * @dev Indicates an error related to the ownership over a particular token. Used in transfers. * @param sender Address whose tokens are being transferred. * @param tokenId Identifier number of a token. * @param owner Address of the current owner of a token. */ error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC721InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC721InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param tokenId Identifier number of a token. */ error ERC721InsufficientApproval(address operator, uint256 tokenId); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC721InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC721InvalidOperator(address operator); } /** * @dev Standard ERC1155 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens. */ interface IERC1155Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. * @param tokenId Identifier number of a token. */ error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC1155InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC1155InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param owner Address of the current owner of a token. */ error ERC1155MissingApprovalForAll(address operator, address owner); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC1155InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC1155InvalidOperator(address operator); /** * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation. * Used in batch transfers. * @param idsLength Length of the array of token identifiers * @param valuesLength Length of the array of token amounts */ error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength); }
{ "remappings": [ "@openzeppelin/contracts/=lib/openzeppelin-contracts/contracts/", "forge-std/=lib/forge-std/src/", "ds-test/=lib/openzeppelin-contracts/lib/forge-std/lib/ds-test/src/", "erc4626-tests/=lib/openzeppelin-contracts/lib/erc4626-tests/", "openzeppelin-contracts/=lib/openzeppelin-contracts/" ], "optimizer": { "enabled": true, "runs": 20000 }, "metadata": { "useLiteralContent": false, "bytecodeHash": "ipfs", "appendCBOR": true }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } }, "evmVersion": "paris", "viaIR": false, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[],"name":"InvalidInitialization","type":"error"},{"inputs":[],"name":"InvalidTransfer","type":"error"},{"inputs":[],"name":"NotInitializing","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[],"name":"ReentrancyGuardReentrantCall","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint64","name":"version","type":"uint64"}],"name":"Initialized","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":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint256","name":"totalSupply_","type":"uint256"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pairBlocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair_","type":"address"}],"name":"setPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unblockPair","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405234801561001057600080fd5b50336040518060400160405280600581526020016446616e6b6f60d81b8152506040518060400160405280600581526020016446414e4b4f60d81b815250816003908161005d91906101a0565b50600461006a82826101a0565b5050506001600160a01b03811661009b57604051631e4fbdf760e01b81526000600482015260240160405180910390fd5b6100a4816100af565b50600160065561025e565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c9082168061012b57607f821691505b60208210810361014b57634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111561019b57806000526020600020601f840160051c810160208510156101785750805b601f840160051c820191505b818110156101985760008155600101610184565b50505b505050565b81516001600160401b038111156101b9576101b9610101565b6101cd816101c78454610117565b84610151565b6020601f82116001811461020157600083156101e95750848201515b600019600385901b1c1916600184901b178455610198565b600084815260208120601f198516915b828110156102315787850151825560209485019460019092019101610211565b508482101561024f5786840151600019600387901b60f8161c191681555b50505050600190811b01905550565b6112cd8061026d6000396000f3fe608060405234801561001057600080fd5b50600436106101505760003560e01c806379cc6790116100cd578063a8aa1b3111610081578063b119490e11610066578063b119490e146102ea578063dd62ed3e146102fd578063f2fde38b1461034357600080fd5b8063a8aa1b31146102b7578063a9059cbb146102d757600080fd5b80638da5cb5b116100b25780638da5cb5b1461024b57806395d89b411461028a578063984b328f1461029257600080fd5b806379cc6790146102255780638187f5161461023857600080fd5b806323b872dd1161012457806342966c681161010957806342966c68146101d457806370a08231146101e7578063715018a61461021d57600080fd5b806323b872dd146101b2578063313ce567146101c557600080fd5b806281a0b21461015557806306fdde031461015f578063095ea7b31461017d57806318160ddd146101a0575b600080fd5b61015d610356565b005b610167610388565b6040516101749190610dcb565b60405180910390f35b61019061018b366004610e60565b61041a565b6040519015158152602001610174565b6002545b604051908152602001610174565b6101906101c0366004610e8a565b610434565b60405160128152602001610174565b61015d6101e2366004610ec7565b610458565b6101a46101f5366004610ee0565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b61015d610465565b61015d610233366004610e60565b610479565b61015d610246366004610ee0565b610492565b60055473ffffffffffffffffffffffffffffffffffffffff165b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610174565b6101676104e1565b6009546101909074010000000000000000000000000000000000000000900460ff1681565b6009546102659073ffffffffffffffffffffffffffffffffffffffff1681565b6101906102e5366004610e60565b6104f0565b61015d6102f8366004610ffd565b6104fe565b6101a461030b366004611070565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b61015d610351366004610ee0565b6106e3565b61035e610749565b600980547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff169055565b606060078054610397906110a3565b80601f01602080910402602001604051908101604052809291908181526020018280546103c3906110a3565b80156104105780601f106103e557610100808354040283529160200191610410565b820191906000526020600020905b8154815290600101906020018083116103f357829003601f168201915b5050505050905090565b60003361042881858561079c565b60019150505b92915050565b6000336104428582856107ae565b61044d85858561087d565b506001949350505050565b6104623382610928565b50565b61046d610749565b6104776000610984565b565b6104848233836107ae565b61048e8282610928565b5050565b61049a610749565b600980547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b606060088054610397906110a3565b60003361042881858561087d565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000810460ff16159067ffffffffffffffff166000811580156105495750825b905060008267ffffffffffffffff1660011480156105665750303b155b905081158015610574575080155b156105ab576040517ff92ee8a900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b84547fffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000166001178555831561060c5784547fffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffff16680100000000000000001785555b60076106188982611144565b5060086106258882611144565b5061063033876109fb565b61063933610984565b600980547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff167401000000000000000000000000000000000000000017905583156106d95784547fffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffff168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b5050505050505050565b6106eb610749565b73ffffffffffffffffffffffffffffffffffffffff8116610740576040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600060048201526024015b60405180910390fd5b61046281610984565b60055473ffffffffffffffffffffffffffffffffffffffff163314610477576040517f118cdaa7000000000000000000000000000000000000000000000000000000008152336004820152602401610737565b6107a98383836001610a57565b505050565b73ffffffffffffffffffffffffffffffffffffffff8381166000908152600160209081526040808320938616835292905220547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146108775781811015610868576040517ffb8f41b200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff841660048201526024810182905260448101839052606401610737565b61087784848484036000610a57565b50505050565b73ffffffffffffffffffffffffffffffffffffffff83166108cd576040517f96c6fd1e00000000000000000000000000000000000000000000000000000000815260006004820152602401610737565b73ffffffffffffffffffffffffffffffffffffffff821661091d576040517fec442f0500000000000000000000000000000000000000000000000000000000815260006004820152602401610737565b6107a9838383610b9f565b73ffffffffffffffffffffffffffffffffffffffff8216610978576040517f96c6fd1e00000000000000000000000000000000000000000000000000000000815260006004820152602401610737565b61048e82600083610b9f565b6005805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b73ffffffffffffffffffffffffffffffffffffffff8216610a4b576040517fec442f0500000000000000000000000000000000000000000000000000000000815260006004820152602401610737565b61048e60008383610b9f565b73ffffffffffffffffffffffffffffffffffffffff8416610aa7576040517fe602df0500000000000000000000000000000000000000000000000000000000815260006004820152602401610737565b73ffffffffffffffffffffffffffffffffffffffff8316610af7576040517f94280d6200000000000000000000000000000000000000000000000000000000815260006004820152602401610737565b73ffffffffffffffffffffffffffffffffffffffff80851660009081526001602090815260408083209387168352929052208290558015610877578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610b9191815260200190565b60405180910390a350505050565b60095473ffffffffffffffffffffffffffffffffffffffff8381169116148015610be3575060095474010000000000000000000000000000000000000000900460ff165b15610c1a576040517f2f35253100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6107a983838373ffffffffffffffffffffffffffffffffffffffff8316610c58578060026000828254610c4d919061125d565b90915550610d0a9050565b73ffffffffffffffffffffffffffffffffffffffff831660009081526020819052604090205481811015610cde576040517fe450d38c00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff851660048201526024810182905260448101839052606401610737565b73ffffffffffffffffffffffffffffffffffffffff841660009081526020819052604090209082900390555b73ffffffffffffffffffffffffffffffffffffffff8216610d3357600280548290039055610d5f565b73ffffffffffffffffffffffffffffffffffffffff821660009081526020819052604090208054820190555b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610dbe91815260200190565b60405180910390a3505050565b602081526000825180602084015260005b81811015610df95760208186018101516040868401015201610ddc565b5060006040828501015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f83011684010191505092915050565b803573ffffffffffffffffffffffffffffffffffffffff81168114610e5b57600080fd5b919050565b60008060408385031215610e7357600080fd5b610e7c83610e37565b946020939093013593505050565b600080600060608486031215610e9f57600080fd5b610ea884610e37565b9250610eb660208501610e37565b929592945050506040919091013590565b600060208284031215610ed957600080fd5b5035919050565b600060208284031215610ef257600080fd5b610efb82610e37565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600082601f830112610f4257600080fd5b813567ffffffffffffffff811115610f5c57610f5c610f02565b6040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0603f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8501160116810181811067ffffffffffffffff82111715610fc857610fc8610f02565b604052818152838201602001851015610fe057600080fd5b816020850160208301376000918101602001919091529392505050565b60008060006060848603121561101257600080fd5b833567ffffffffffffffff81111561102957600080fd5b61103586828701610f31565b935050602084013567ffffffffffffffff81111561105257600080fd5b61105e86828701610f31565b93969395505050506040919091013590565b6000806040838503121561108357600080fd5b61108c83610e37565b915061109a60208401610e37565b90509250929050565b600181811c908216806110b757607f821691505b6020821081036110f0577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b601f8211156107a957806000526020600020601f840160051c8101602085101561111d5750805b601f840160051c820191505b8181101561113d5760008155600101611129565b5050505050565b815167ffffffffffffffff81111561115e5761115e610f02565b6111728161116c84546110a3565b846110f6565b6020601f8211600181146111c4576000831561118e5750848201515b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600385901b1c1916600184901b17845561113d565b6000848152602081207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08516915b8281101561121257878501518255602094850194600190920191016111f2565b508482101561124e57868401517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600387901b60f8161c191681555b50505050600190811b01905550565b8082018082111561042e577f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fdfea2646970667358221220245d21417b19ad94772aedabdbc0bdac5218735a1a1b6c85bc2fba1088d0940d64736f6c634300081a0033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101505760003560e01c806379cc6790116100cd578063a8aa1b3111610081578063b119490e11610066578063b119490e146102ea578063dd62ed3e146102fd578063f2fde38b1461034357600080fd5b8063a8aa1b31146102b7578063a9059cbb146102d757600080fd5b80638da5cb5b116100b25780638da5cb5b1461024b57806395d89b411461028a578063984b328f1461029257600080fd5b806379cc6790146102255780638187f5161461023857600080fd5b806323b872dd1161012457806342966c681161010957806342966c68146101d457806370a08231146101e7578063715018a61461021d57600080fd5b806323b872dd146101b2578063313ce567146101c557600080fd5b806281a0b21461015557806306fdde031461015f578063095ea7b31461017d57806318160ddd146101a0575b600080fd5b61015d610356565b005b610167610388565b6040516101749190610dcb565b60405180910390f35b61019061018b366004610e60565b61041a565b6040519015158152602001610174565b6002545b604051908152602001610174565b6101906101c0366004610e8a565b610434565b60405160128152602001610174565b61015d6101e2366004610ec7565b610458565b6101a46101f5366004610ee0565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b61015d610465565b61015d610233366004610e60565b610479565b61015d610246366004610ee0565b610492565b60055473ffffffffffffffffffffffffffffffffffffffff165b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610174565b6101676104e1565b6009546101909074010000000000000000000000000000000000000000900460ff1681565b6009546102659073ffffffffffffffffffffffffffffffffffffffff1681565b6101906102e5366004610e60565b6104f0565b61015d6102f8366004610ffd565b6104fe565b6101a461030b366004611070565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b61015d610351366004610ee0565b6106e3565b61035e610749565b600980547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff169055565b606060078054610397906110a3565b80601f01602080910402602001604051908101604052809291908181526020018280546103c3906110a3565b80156104105780601f106103e557610100808354040283529160200191610410565b820191906000526020600020905b8154815290600101906020018083116103f357829003601f168201915b5050505050905090565b60003361042881858561079c565b60019150505b92915050565b6000336104428582856107ae565b61044d85858561087d565b506001949350505050565b6104623382610928565b50565b61046d610749565b6104776000610984565b565b6104848233836107ae565b61048e8282610928565b5050565b61049a610749565b600980547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b606060088054610397906110a3565b60003361042881858561087d565b7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00805468010000000000000000810460ff16159067ffffffffffffffff166000811580156105495750825b905060008267ffffffffffffffff1660011480156105665750303b155b905081158015610574575080155b156105ab576040517ff92ee8a900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b84547fffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000166001178555831561060c5784547fffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffff16680100000000000000001785555b60076106188982611144565b5060086106258882611144565b5061063033876109fb565b61063933610984565b600980547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff167401000000000000000000000000000000000000000017905583156106d95784547fffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffff168555604051600181527fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d29060200160405180910390a15b5050505050505050565b6106eb610749565b73ffffffffffffffffffffffffffffffffffffffff8116610740576040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600060048201526024015b60405180910390fd5b61046281610984565b60055473ffffffffffffffffffffffffffffffffffffffff163314610477576040517f118cdaa7000000000000000000000000000000000000000000000000000000008152336004820152602401610737565b6107a98383836001610a57565b505050565b73ffffffffffffffffffffffffffffffffffffffff8381166000908152600160209081526040808320938616835292905220547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146108775781811015610868576040517ffb8f41b200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff841660048201526024810182905260448101839052606401610737565b61087784848484036000610a57565b50505050565b73ffffffffffffffffffffffffffffffffffffffff83166108cd576040517f96c6fd1e00000000000000000000000000000000000000000000000000000000815260006004820152602401610737565b73ffffffffffffffffffffffffffffffffffffffff821661091d576040517fec442f0500000000000000000000000000000000000000000000000000000000815260006004820152602401610737565b6107a9838383610b9f565b73ffffffffffffffffffffffffffffffffffffffff8216610978576040517f96c6fd1e00000000000000000000000000000000000000000000000000000000815260006004820152602401610737565b61048e82600083610b9f565b6005805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b73ffffffffffffffffffffffffffffffffffffffff8216610a4b576040517fec442f0500000000000000000000000000000000000000000000000000000000815260006004820152602401610737565b61048e60008383610b9f565b73ffffffffffffffffffffffffffffffffffffffff8416610aa7576040517fe602df0500000000000000000000000000000000000000000000000000000000815260006004820152602401610737565b73ffffffffffffffffffffffffffffffffffffffff8316610af7576040517f94280d6200000000000000000000000000000000000000000000000000000000815260006004820152602401610737565b73ffffffffffffffffffffffffffffffffffffffff80851660009081526001602090815260408083209387168352929052208290558015610877578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610b9191815260200190565b60405180910390a350505050565b60095473ffffffffffffffffffffffffffffffffffffffff8381169116148015610be3575060095474010000000000000000000000000000000000000000900460ff165b15610c1a576040517f2f35253100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6107a983838373ffffffffffffffffffffffffffffffffffffffff8316610c58578060026000828254610c4d919061125d565b90915550610d0a9050565b73ffffffffffffffffffffffffffffffffffffffff831660009081526020819052604090205481811015610cde576040517fe450d38c00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff851660048201526024810182905260448101839052606401610737565b73ffffffffffffffffffffffffffffffffffffffff841660009081526020819052604090209082900390555b73ffffffffffffffffffffffffffffffffffffffff8216610d3357600280548290039055610d5f565b73ffffffffffffffffffffffffffffffffffffffff821660009081526020819052604090208054820190555b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610dbe91815260200190565b60405180910390a3505050565b602081526000825180602084015260005b81811015610df95760208186018101516040868401015201610ddc565b5060006040828501015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f83011684010191505092915050565b803573ffffffffffffffffffffffffffffffffffffffff81168114610e5b57600080fd5b919050565b60008060408385031215610e7357600080fd5b610e7c83610e37565b946020939093013593505050565b600080600060608486031215610e9f57600080fd5b610ea884610e37565b9250610eb660208501610e37565b929592945050506040919091013590565b600060208284031215610ed957600080fd5b5035919050565b600060208284031215610ef257600080fd5b610efb82610e37565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600082601f830112610f4257600080fd5b813567ffffffffffffffff811115610f5c57610f5c610f02565b6040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0603f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8501160116810181811067ffffffffffffffff82111715610fc857610fc8610f02565b604052818152838201602001851015610fe057600080fd5b816020850160208301376000918101602001919091529392505050565b60008060006060848603121561101257600080fd5b833567ffffffffffffffff81111561102957600080fd5b61103586828701610f31565b935050602084013567ffffffffffffffff81111561105257600080fd5b61105e86828701610f31565b93969395505050506040919091013590565b6000806040838503121561108357600080fd5b61108c83610e37565b915061109a60208401610e37565b90509250929050565b600181811c908216806110b757607f821691505b6020821081036110f0577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b601f8211156107a957806000526020600020601f840160051c8101602085101561111d5750805b601f840160051c820191505b8181101561113d5760008155600101611129565b5050505050565b815167ffffffffffffffff81111561115e5761115e610f02565b6111728161116c84546110a3565b846110f6565b6020601f8211600181146111c4576000831561118e5750848201515b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600385901b1c1916600184901b17845561113d565b6000848152602081207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08516915b8281101561121257878501518255602094850194600190920191016111f2565b508482101561124e57868401517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600387901b60f8161c191681555b50505050600190811b01905550565b8082018082111561042e577f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fdfea2646970667358221220245d21417b19ad94772aedabdbc0bdac5218735a1a1b6c85bc2fba1088d0940d64736f6c634300081a0033
Deployed Bytecode Sourcemap
570:1798:9:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1433:78;;;:::i;:::-;;2160:98;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4293:186:3;;;;;;:::i;:::-;;:::i;:::-;;;1276:14:10;;1269:22;1251:41;;1239:2;1224:18;4293:186:3;1111:187:10;3144:97:3;3222:12;;3144:97;;;1449:25:10;;;1437:2;1422:18;3144:97:3;1303:177:10;5039:244:3;;;;;;:::i;:::-;;:::i;3002:82::-;;;3075:2;2006:36:10;;1994:2;1979:18;3002:82:3;1864:184:10;618:87:5;;;;;;:::i;:::-;;:::i;3299:116:3:-;;;;;;:::i;:::-;3390:18;;3364:7;3390:18;;;;;;;;;;;;3299:116;2293:101:0;;;:::i;1021:158:5:-;;;;;;:::i;:::-;;:::i;1347:80:9:-;;;;;;:::i;:::-;;:::i;1638:85:0:-;1710:6;;;;1638:85;;;2651:42:10;2639:55;;;2621:74;;2609:2;2594:18;1638:85:0;2475:226:10;2264:102:9;;;:::i;736:23::-;;;;;;;;;;;;711:19;;;;;;;;;3610:178:3;;;;;;:::i;:::-;;:::i;862:274:9:-;;;;;;:::i;:::-;;:::i;3846:140:3:-;;;;;;:::i;:::-;3952:18;;;;3926:7;3952:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;3846:140;2543:215:0;;;;;;:::i;:::-;;:::i;1433:78:9:-;1531:13:0;:11;:13::i;:::-;1485:11:9::1;:19:::0;;;::::1;::::0;;1433:78::o;2160:98::-;2214:13;2246:5;2239:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2160:98;:::o;4293:186:3:-;4366:4;735:10:7;4420:31:3;735:10:7;4436:7:3;4445:5;4420:8;:31::i;:::-;4468:4;4461:11;;;4293:186;;;;;:::o;5039:244::-;5126:4;735:10:7;5182:37:3;5198:4;735:10:7;5213:5:3;5182:15;:37::i;:::-;5229:26;5239:4;5245:2;5249:5;5229:9;:26::i;:::-;-1:-1:-1;5272:4:3;;5039:244;-1:-1:-1;;;;5039:244:3:o;618:87:5:-;672:26;735:10:7;692:5:5;672;:26::i;:::-;618:87;:::o;2293:101:0:-;1531:13;:11;:13::i;:::-;2357:30:::1;2384:1;2357:18;:30::i;:::-;2293:101::o:0;1021:158:5:-;1096:45;1112:7;735:10:7;1135:5:5;1096:15;:45::i;:::-;1151:21;1157:7;1166:5;1151;:21::i;:::-;1021:158;;:::o;1347:80:9:-;1531:13:0;:11;:13::i;:::-;1408:4:9::1;:12:::0;;;::::1;;::::0;;;::::1;::::0;;;::::1;::::0;;1347:80::o;2264:102::-;2320:13;2352:7;2345:14;;;;;:::i;3610:178:3:-;3679:4;735:10:7;3733:27:3;735:10:7;3750:2:3;3754:5;3733:9;:27::i;862:274:9:-;8870:21:2;4302:15;;;;;;;4301:16;;4348:14;;4158:30;4726:16;;:34;;;;;4746:14;4726:34;4706:54;;4770:17;4790:11;:16;;4805:1;4790:16;:50;;;;-1:-1:-1;4818:4:2;4810:25;:30;4790:50;4770:70;;4856:12;4855:13;:30;;;;;4873:12;4872:13;4855:30;4851:91;;;4908:23;;;;;;;;;;;;;;4851:91;4951:18;;;;4968:1;4951:18;;;4979:67;;;;5013:22;;;;;;;;4979:67;979:5:9::1;:13;987:5:::0;979;:13:::1;:::i;:::-;-1:-1:-1::0;1002:7:9::1;:17;1012:7:::0;1002;:17:::1;:::i;:::-;;1030:31;1036:10;1048:12;1030:5;:31::i;:::-;1071:30;1090:10;1071:18;:30::i;:::-;1111:11;:18:::0;;;::::1;::::0;::::1;::::0;;5066:101:2;;;;5100:23;;;;;;5142:14;;-1:-1:-1;7564:50:10;;5142:14:2;;7552:2:10;7537:18;5142:14:2;;;;;;;5066:101;4092:1081;;;;;862:274:9;;;:::o;2543:215:0:-;1531:13;:11;:13::i;:::-;2627:22:::1;::::0;::::1;2623:91;;2672:31;::::0;::::1;::::0;;2700:1:::1;2672:31;::::0;::::1;2621:74:10::0;2594:18;;2672:31:0::1;;;;;;;;2623:91;2723:28;2742:8;2723:18;:28::i;1796:162::-:0;1710:6;;1855:23;1710:6;735:10:7;1855:23:0;1851:101;;1901:40;;;;;735:10:7;1901:40:0;;;2621:74:10;2594:18;;1901:40:0;2475:226:10;8989:128:3;9073:37;9082:5;9089:7;9098:5;9105:4;9073:8;:37::i;:::-;8989:128;;;:::o;10663:477::-;3952:18;;;;10762:24;3952:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;10848:17;10828:37;;10824:310;;10904:5;10885:16;:24;10881:130;;;10936:60;;;;;7857:42:10;7845:55;;10936:60:3;;;7827:74:10;7917:18;;;7910:34;;;7960:18;;;7953:34;;;7800:18;;10936:60:3;7625:368:10;10881:130:3;11052:57;11061:5;11068:7;11096:5;11077:16;:24;11103:5;11052:8;:57::i;:::-;10752:388;10663:477;;;:::o;5656:300::-;5739:18;;;5735:86;;5780:30;;;;;5807:1;5780:30;;;2621:74:10;2594:18;;5780:30:3;2475:226:10;5735:86:3;5834:16;;;5830:86;;5873:32;;;;;5902:1;5873:32;;;2621:74:10;2594:18;;5873:32:3;2475:226:10;5830:86:3;5925:24;5933:4;5939:2;5943:5;5925:7;:24::i;8247:206::-;8317:21;;;8313:89;;8361:30;;;;;8388:1;8361:30;;;2621:74:10;2594:18;;8361:30:3;2475:226:10;8313:89:3;8411:35;8419:7;8436:1;8440:5;8411:7;:35::i;2912:187:0:-;3004:6;;;;3020:17;;;;;;;;;;;3052:40;;3004:6;;;3020:17;3004:6;;3052:40;;2985:16;;3052:40;2975:124;2912:187;:::o;7721:208:3:-;7791:21;;;7787:91;;7835:32;;;;;7864:1;7835:32;;;2621:74:10;2594:18;;7835:32:3;2475:226:10;7787:91:3;7887:35;7903:1;7907:7;7916:5;7887:7;:35::i;9949:432::-;10061:19;;;10057:89;;10103:32;;;;;10132:1;10103:32;;;2621:74:10;2594:18;;10103:32:3;2475:226:10;10057:89:3;10159:21;;;10155:90;;10203:31;;;;;10231:1;10203:31;;;2621:74:10;2594:18;;10203:31:3;2475:226:10;10155:90:3;10254:18;;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;:35;;;10299:76;;;;10349:7;10333:31;;10342:5;10333:31;;;10358:5;10333:31;;;;1449:25:10;;1437:2;1422:18;;1303:177;10333:31:3;;;;;;;;9949:432;;;;:::o;1725:221:9:-;1829:4;;;1823:10;;;1829:4;;1823:10;:25;;;;-1:-1:-1;1837:11:9;;;;;;;1823:25;1819:80;;;1871:17;;;;;;;;;;;;;;1819:80;1909:30;1923:4;1929:2;1933:5;6360:18:3;;;6356:540;;6512:5;6496:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;6356:540:3;;-1:-1:-1;6356:540:3;;6570:15;;;6548:19;6570:15;;;;;;;;;;;6603:19;;;6599:115;;;6649:50;;;;;7857:42:10;7845:55;;6649:50:3;;;7827:74:10;7917:18;;;7910:34;;;7960:18;;;7953:34;;;7800:18;;6649:50:3;7625:368:10;6599:115:3;6834:15;;;:9;:15;;;;;;;;;;6852:19;;;;6834:37;;6356:540;6910:16;;;6906:425;;7073:12;:21;;;;;;;6906:425;;;7284:13;;;:9;:13;;;;;;;;;;:22;;;;;;6906:425;7361:2;7346:25;;7355:4;7346:25;;;7365:5;7346:25;;;;1449::10;;1437:2;1422:18;;1303:177;7346:25:3;;;;;;;;6271:1107;;;:::o;14:586:10:-;163:2;152:9;145:21;126:4;195:6;189:13;238:6;233:2;222:9;218:18;211:34;263:1;273:140;287:6;284:1;281:13;273:140;;;398:2;382:14;;;378:23;;372:30;367:2;348:17;;;344:26;337:66;302:10;273:140;;;277:3;462:1;457:2;448:6;437:9;433:22;429:31;422:42;591:2;521:66;516:2;508:6;504:15;500:88;489:9;485:104;481:113;473:121;;;14:586;;;;:::o;605:196::-;673:20;;733:42;722:54;;712:65;;702:93;;791:1;788;781:12;702:93;605:196;;;:::o;806:300::-;874:6;882;935:2;923:9;914:7;910:23;906:32;903:52;;;951:1;948;941:12;903:52;974:29;993:9;974:29;:::i;:::-;964:39;1072:2;1057:18;;;;1044:32;;-1:-1:-1;;;806:300:10:o;1485:374::-;1562:6;1570;1578;1631:2;1619:9;1610:7;1606:23;1602:32;1599:52;;;1647:1;1644;1637:12;1599:52;1670:29;1689:9;1670:29;:::i;:::-;1660:39;;1718:38;1752:2;1741:9;1737:18;1718:38;:::i;:::-;1485:374;;1708:48;;-1:-1:-1;;;1825:2:10;1810:18;;;;1797:32;;1485:374::o;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:10;;2053:226;-1:-1:-1;2053:226:10:o;2284:186::-;2343:6;2396:2;2384:9;2375:7;2371:23;2367:32;2364:52;;;2412:1;2409;2402:12;2364:52;2435:29;2454:9;2435:29;:::i;:::-;2425:39;2284:186;-1:-1:-1;;;2284:186:10:o;2706:184::-;2758:77;2755:1;2748:88;2855:4;2852:1;2845:15;2879:4;2876:1;2869:15;2895:844;2938:5;2991:3;2984:4;2976:6;2972:17;2968:27;2958:55;;3009:1;3006;2999:12;2958:55;3049:6;3036:20;3079:18;3071:6;3068:30;3065:56;;;3101:18;;:::i;:::-;3150:2;3144:9;3297:66;3292:2;3223:66;3216:4;3208:6;3204:17;3200:90;3196:99;3192:172;3184:6;3180:185;3431:6;3419:10;3416:22;3395:18;3383:10;3380:34;3377:62;3374:88;;;3442:18;;:::i;:::-;3478:2;3471:22;3502;;;3543:19;;;3564:4;3539:30;3536:39;-1:-1:-1;3533:59:10;;;3588:1;3585;3578:12;3533:59;3652:6;3645:4;3637:6;3633:17;3626:4;3618:6;3614:17;3601:58;3707:1;3679:19;;;3700:4;3675:30;3668:41;;;;3683:6;2895:844;-1:-1:-1;;;2895:844:10:o;3744:652::-;3841:6;3849;3857;3910:2;3898:9;3889:7;3885:23;3881:32;3878:52;;;3926:1;3923;3916:12;3878:52;3966:9;3953:23;3999:18;3991:6;3988:30;3985:50;;;4031:1;4028;4021:12;3985:50;4054;4096:7;4087:6;4076:9;4072:22;4054:50;:::i;:::-;4044:60;;;4157:2;4146:9;4142:18;4129:32;4186:18;4176:8;4173:32;4170:52;;;4218:1;4215;4208:12;4170:52;4241;4285:7;4274:8;4263:9;4259:24;4241:52;:::i;:::-;3744:652;;4231:62;;-1:-1:-1;;;;4362:2:10;4347:18;;;;4334:32;;3744:652::o;4401:260::-;4469:6;4477;4530:2;4518:9;4509:7;4505:23;4501:32;4498:52;;;4546:1;4543;4536:12;4498:52;4569:29;4588:9;4569:29;:::i;:::-;4559:39;;4617:38;4651:2;4640:9;4636:18;4617:38;:::i;:::-;4607:48;;4401:260;;;;;:::o;4666:437::-;4745:1;4741:12;;;;4788;;;4809:61;;4863:4;4855:6;4851:17;4841:27;;4809:61;4916:2;4908:6;4905:14;4885:18;4882:38;4879:218;;4953:77;4950:1;4943:88;5054:4;5051:1;5044:15;5082:4;5079:1;5072:15;4879:218;;4666:437;;;:::o;5234:518::-;5336:2;5331:3;5328:11;5325:421;;;5372:5;5369:1;5362:16;5416:4;5413:1;5403:18;5486:2;5474:10;5470:19;5467:1;5463:27;5457:4;5453:38;5522:4;5510:10;5507:20;5504:47;;;-1:-1:-1;5545:4:10;5504:47;5600:2;5595:3;5591:12;5588:1;5584:20;5578:4;5574:31;5564:41;;5655:81;5673:2;5666:5;5663:13;5655:81;;;5732:1;5718:16;;5699:1;5688:13;5655:81;;;5659:3;;5234:518;;;:::o;5988:1418::-;6114:3;6108:10;6141:18;6133:6;6130:30;6127:56;;;6163:18;;:::i;:::-;6192:97;6282:6;6242:38;6274:4;6268:11;6242:38;:::i;:::-;6236:4;6192:97;:::i;:::-;6338:4;6369:2;6358:14;;6386:1;6381:768;;;;7193:1;7210:6;7207:89;;;-1:-1:-1;7262:19:10;;;7256:26;7207:89;5894:66;5885:1;5881:11;;;5877:84;5873:89;5863:100;5969:1;5965:11;;;5860:117;7309:81;;6351:1049;;6381:768;5181:1;5174:14;;;5218:4;5205:18;;6429:66;6417:79;;;6594:222;6608:7;6605:1;6602:14;6594:222;;;6690:19;;;6684:26;6669:42;;6797:4;6782:20;;;;6750:1;6738:14;;;;6624:12;6594:222;;;6598:3;6844:6;6835:7;6832:19;6829:261;;;6905:19;;;6899:26;7006:66;6988:1;6984:14;;;7000:3;6980:24;6976:97;6972:102;6957:118;6942:134;;6829:261;-1:-1:-1;;;;7136:1:10;7120:14;;;7116:22;7103:36;;-1:-1:-1;5988:1418:10:o;7998:279::-;8063:9;;;8084:10;;;8081:190;;;8127:77;8124:1;8117:88;8228:4;8225:1;8218:15;8256:4;8253:1;8246:15
Swarm Source
ipfs://245d21417b19ad94772aedabdbc0bdac5218735a1a1b6c85bc2fba1088d0940d
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
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.