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:
FREN
Compiler Version
v0.8.26+commit.8a97fa7a
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-12-04 */ /* _____ ____ _____ _ _ | ___|| _ \ | ____|| \ | | | |_ | |_) || _| | \| | | _| | _ < | |___ | |\ | |_| |_| \_\|_____||_| \_| */ // SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.13 ^0.8.20; // lib/openzeppelin-contracts/contracts/interfaces/draft-IERC6093.sol // OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol) /** * @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); } // lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol) /** * @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); } // lib/openzeppelin-contracts-upgradeable/contracts/proxy/utils/Initializable.sol // OpenZeppelin Contracts (last updated v5.0.0) (proxy/utils/Initializable.sol) /** * @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 } } } // lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.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); } // lib/openzeppelin-contracts-upgradeable/contracts/utils/ContextUpgradeable.sol // OpenZeppelin Contracts (last updated v5.0.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 ContextUpgradeable is Initializable { function __Context_init() internal onlyInitializing { } function __Context_init_unchained() internal onlyInitializing { } 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; } } // lib/openzeppelin-contracts-upgradeable/contracts/token/ERC20/ERC20Upgradeable.sol // OpenZeppelin Contracts (last updated v5.0.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}. * * 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 ERC20Upgradeable is Initializable, ContextUpgradeable, IERC20, IERC20Metadata, IERC20Errors { /// @custom:storage-location erc7201:openzeppelin.storage.ERC20 struct ERC20Storage { mapping(address account => uint256) _balances; mapping(address account => mapping(address spender => uint256)) _allowances; uint256 _totalSupply; string _name; string _symbol; } // keccak256(abi.encode(uint256(keccak256("openzeppelin.storage.ERC20")) - 1)) & ~bytes32(uint256(0xff)) bytes32 private constant ERC20StorageLocation = 0x52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace00; function _getERC20Storage() private pure returns (ERC20Storage storage $) { assembly { $.slot := ERC20StorageLocation } } /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ function __ERC20_init(string memory name_, string memory symbol_) internal onlyInitializing { __ERC20_init_unchained(name_, symbol_); } function __ERC20_init_unchained(string memory name_, string memory symbol_) internal onlyInitializing { ERC20Storage storage $ = _getERC20Storage(); $._name = name_; $._symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual returns (string memory) { ERC20Storage storage $ = _getERC20Storage(); return $._name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual returns (string memory) { ERC20Storage storage $ = _getERC20Storage(); 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) { ERC20Storage storage $ = _getERC20Storage(); return $._totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual returns (uint256) { ERC20Storage storage $ = _getERC20Storage(); 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) { ERC20Storage storage $ = _getERC20Storage(); 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 { ERC20Storage storage $ = _getERC20Storage(); 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 { ERC20Storage storage $ = _getERC20Storage(); 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); } } } } // src/FREN.sol contract FREN is Initializable, ERC20Upgradeable{ function initialize(string memory name, string memory symbol) initializer public { __ERC20_init(name, symbol); _mint(msg.sender, 1_000_000_000 * 10 ** decimals()); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"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":"NotInitializing","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":"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":[],"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"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","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"}]
Contract Creation Code
6080604052348015600e575f80fd5b506117d88061001c5f395ff3fe608060405234801561000f575f80fd5b506004361061009c575f3560e01c80634cd88b76116100645780634cd88b761461015a57806370a082311461017657806395d89b41146101a6578063a9059cbb146101c4578063dd62ed3e146101f45761009c565b806306fdde03146100a0578063095ea7b3146100be57806318160ddd146100ee57806323b872dd1461010c578063313ce5671461013c575b5f80fd5b6100a8610224565b6040516100b59190610e17565b60405180910390f35b6100d860048036038101906100d39190610ed5565b6102c2565b6040516100e59190610f2d565b60405180910390f35b6100f66102e4565b6040516101039190610f55565b60405180910390f35b61012660048036038101906101219190610f6e565b6102fb565b6040516101339190610f2d565b60405180910390f35b610144610329565b6040516101519190610fd9565b60405180910390f35b610174600480360381019061016f919061111e565b610331565b005b610190600480360381019061018b9190611194565b6104e0565b60405161019d9190610f55565b60405180910390f35b6101ae610533565b6040516101bb9190610e17565b60405180910390f35b6101de60048036038101906101d99190610ed5565b6105d1565b6040516101eb9190610f2d565b60405180910390f35b61020e600480360381019061020991906111bf565b6105f3565b60405161021b9190610f55565b60405180910390f35b60605f61022f610683565b90508060030180546102409061122a565b80601f016020809104026020016040519081016040528092919081815260200182805461026c9061122a565b80156102b75780601f1061028e576101008083540402835291602001916102b7565b820191905f5260205f20905b81548152906001019060200180831161029a57829003601f168201915b505050505091505090565b5f806102cc6106aa565b90506102d98185856106b1565b600191505092915050565b5f806102ee610683565b9050806002015491505090565b5f806103056106aa565b90506103128582856106c3565b61031d858585610755565b60019150509392505050565b5f6012905090565b5f61033a610845565b90505f815f0160089054906101000a900460ff161590505f825f015f9054906101000a900467ffffffffffffffff1690505f808267ffffffffffffffff161480156103825750825b90505f60018367ffffffffffffffff161480156103b557505f3073ffffffffffffffffffffffffffffffffffffffff163b145b9050811580156103c3575080155b156103fa576040517ff92ee8a900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001855f015f6101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055508315610447576001855f0160086101000a81548160ff0219169083151502179055505b610451878761086c565b61047d3361045d610329565b600a61046991906113b6565b633b9aca006104789190611400565b610882565b83156104d7575f855f0160086101000a81548160ff0219169083151502179055507fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d260016040516104ce9190611496565b60405180910390a15b50505050505050565b5f806104ea610683565b9050805f015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054915050919050565b60605f61053e610683565b905080600401805461054f9061122a565b80601f016020809104026020016040519081016040528092919081815260200182805461057b9061122a565b80156105c65780601f1061059d576101008083540402835291602001916105c6565b820191905f5260205f20905b8154815290600101906020018083116105a957829003601f168201915b505050505091505090565b5f806105db6106aa565b90506105e8818585610755565b600191505092915050565b5f806105fd610683565b9050806001015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205491505092915050565b5f7f52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace00905090565b5f33905090565b6106be8383836001610901565b505050565b5f6106ce84846105f3565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461074f5781811015610740578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610737939291906114be565b60405180910390fd5b61074e84848484035f610901565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036107c5575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016107bc91906114f3565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610835575f6040517fec442f0500000000000000000000000000000000000000000000000000000000815260040161082c91906114f3565b60405180910390fd5b610840838383610ade565b505050565b5f7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00905090565b610874610d0d565b61087e8282610d4d565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036108f2575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016108e991906114f3565b60405180910390fd5b6108fd5f8383610ade565b5050565b5f61090a610683565b90505f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361097c575f6040517fe602df0500000000000000000000000000000000000000000000000000000000815260040161097391906114f3565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036109ec575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016109e391906114f3565b60405180910390fd5b82816001015f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508115610ad7578373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92585604051610ace9190610f55565b60405180910390a35b5050505050565b5f610ae7610683565b90505f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610b3b5781816002015f828254610b2f919061150c565b92505081905550610c0d565b5f815f015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015610bc6578481846040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610bbd939291906114be565b60405180910390fd5b828103825f015f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c565781816002015f8282540392505081905550610ca2565b81815f015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610cff9190610f55565b60405180910390a350505050565b610d15610d89565b610d4b576040517fd7e6bcf800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b565b610d55610d0d565b5f610d5e610683565b905082816003019081610d7191906116d3565b5081816004019081610d8391906116d3565b50505050565b5f610d92610845565b5f0160089054906101000a900460ff16905090565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f610de982610da7565b610df38185610db1565b9350610e03818560208601610dc1565b610e0c81610dcf565b840191505092915050565b5f6020820190508181035f830152610e2f8184610ddf565b905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610e7182610e48565b9050919050565b610e8181610e67565b8114610e8b575f80fd5b50565b5f81359050610e9c81610e78565b92915050565b5f819050919050565b610eb481610ea2565b8114610ebe575f80fd5b50565b5f81359050610ecf81610eab565b92915050565b5f8060408385031215610eeb57610eea610e40565b5b5f610ef885828601610e8e565b9250506020610f0985828601610ec1565b9150509250929050565b5f8115159050919050565b610f2781610f13565b82525050565b5f602082019050610f405f830184610f1e565b92915050565b610f4f81610ea2565b82525050565b5f602082019050610f685f830184610f46565b92915050565b5f805f60608486031215610f8557610f84610e40565b5b5f610f9286828701610e8e565b9350506020610fa386828701610e8e565b9250506040610fb486828701610ec1565b9150509250925092565b5f60ff82169050919050565b610fd381610fbe565b82525050565b5f602082019050610fec5f830184610fca565b92915050565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b61103082610dcf565b810181811067ffffffffffffffff8211171561104f5761104e610ffa565b5b80604052505050565b5f611061610e37565b905061106d8282611027565b919050565b5f67ffffffffffffffff82111561108c5761108b610ffa565b5b61109582610dcf565b9050602081019050919050565b828183375f83830152505050565b5f6110c26110bd84611072565b611058565b9050828152602081018484840111156110de576110dd610ff6565b5b6110e98482856110a2565b509392505050565b5f82601f83011261110557611104610ff2565b5b81356111158482602086016110b0565b91505092915050565b5f806040838503121561113457611133610e40565b5b5f83013567ffffffffffffffff81111561115157611150610e44565b5b61115d858286016110f1565b925050602083013567ffffffffffffffff81111561117e5761117d610e44565b5b61118a858286016110f1565b9150509250929050565b5f602082840312156111a9576111a8610e40565b5b5f6111b684828501610e8e565b91505092915050565b5f80604083850312156111d5576111d4610e40565b5b5f6111e285828601610e8e565b92505060206111f385828601610e8e565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061124157607f821691505b602082108103611254576112536111fd565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b60018511156112dc578086048111156112b8576112b761125a565b5b60018516156112c75780820291505b80810290506112d585611287565b945061129c565b94509492505050565b5f826112f457600190506113af565b81611301575f90506113af565b8160018114611317576002811461132157611350565b60019150506113af565b60ff8411156113335761133261125a565b5b8360020a91508482111561134a5761134961125a565b5b506113af565b5060208310610133831016604e8410600b84101617156113855782820a9050838111156113805761137f61125a565b5b6113af565b6113928484846001611293565b925090508184048111156113a9576113a861125a565b5b81810290505b9392505050565b5f6113c082610ea2565b91506113cb83610fbe565b92506113f87fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846112e5565b905092915050565b5f61140a82610ea2565b915061141583610ea2565b925082820261142381610ea2565b9150828204841483151761143a5761143961125a565b5b5092915050565b5f819050919050565b5f67ffffffffffffffff82169050919050565b5f819050919050565b5f61148061147b61147684611441565b61145d565b61144a565b9050919050565b61149081611466565b82525050565b5f6020820190506114a95f830184611487565b92915050565b6114b881610e67565b82525050565b5f6060820190506114d15f8301866114af565b6114de6020830185610f46565b6114eb6040830184610f46565b949350505050565b5f6020820190506115065f8301846114af565b92915050565b5f61151682610ea2565b915061152183610ea2565b92508282019050808211156115395761153861125a565b5b92915050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830261159b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82611560565b6115a58683611560565b95508019841693508086168417925050509392505050565b5f6115d76115d26115cd84610ea2565b61145d565b610ea2565b9050919050565b5f819050919050565b6115f0836115bd565b6116046115fc826115de565b84845461156c565b825550505050565b5f90565b61161861160c565b6116238184846115e7565b505050565b5b818110156116465761163b5f82611610565b600181019050611629565b5050565b601f82111561168b5761165c8161153f565b61166584611551565b81016020851015611674578190505b61168861168085611551565b830182611628565b50505b505050565b5f82821c905092915050565b5f6116ab5f1984600802611690565b1980831691505092915050565b5f6116c3838361169c565b9150826002028217905092915050565b6116dc82610da7565b67ffffffffffffffff8111156116f5576116f4610ffa565b5b6116ff825461122a565b61170a82828561164a565b5f60209050601f83116001811461173b575f8415611729578287015190505b61173385826116b8565b86555061179a565b601f1984166117498661153f565b5f5b828110156117705784890151825560018201915060208501945060208101905061174b565b8683101561178d5784890151611789601f89168261169c565b8355505b6001600288020188555050505b50505050505056fea26469706673582212205f4cc319d560465dbfbd21d610b57c56316325f3aae8399ff84e7c610c1e961164736f6c634300081a0033
Deployed Bytecode
0x608060405234801561000f575f80fd5b506004361061009c575f3560e01c80634cd88b76116100645780634cd88b761461015a57806370a082311461017657806395d89b41146101a6578063a9059cbb146101c4578063dd62ed3e146101f45761009c565b806306fdde03146100a0578063095ea7b3146100be57806318160ddd146100ee57806323b872dd1461010c578063313ce5671461013c575b5f80fd5b6100a8610224565b6040516100b59190610e17565b60405180910390f35b6100d860048036038101906100d39190610ed5565b6102c2565b6040516100e59190610f2d565b60405180910390f35b6100f66102e4565b6040516101039190610f55565b60405180910390f35b61012660048036038101906101219190610f6e565b6102fb565b6040516101339190610f2d565b60405180910390f35b610144610329565b6040516101519190610fd9565b60405180910390f35b610174600480360381019061016f919061111e565b610331565b005b610190600480360381019061018b9190611194565b6104e0565b60405161019d9190610f55565b60405180910390f35b6101ae610533565b6040516101bb9190610e17565b60405180910390f35b6101de60048036038101906101d99190610ed5565b6105d1565b6040516101eb9190610f2d565b60405180910390f35b61020e600480360381019061020991906111bf565b6105f3565b60405161021b9190610f55565b60405180910390f35b60605f61022f610683565b90508060030180546102409061122a565b80601f016020809104026020016040519081016040528092919081815260200182805461026c9061122a565b80156102b75780601f1061028e576101008083540402835291602001916102b7565b820191905f5260205f20905b81548152906001019060200180831161029a57829003601f168201915b505050505091505090565b5f806102cc6106aa565b90506102d98185856106b1565b600191505092915050565b5f806102ee610683565b9050806002015491505090565b5f806103056106aa565b90506103128582856106c3565b61031d858585610755565b60019150509392505050565b5f6012905090565b5f61033a610845565b90505f815f0160089054906101000a900460ff161590505f825f015f9054906101000a900467ffffffffffffffff1690505f808267ffffffffffffffff161480156103825750825b90505f60018367ffffffffffffffff161480156103b557505f3073ffffffffffffffffffffffffffffffffffffffff163b145b9050811580156103c3575080155b156103fa576040517ff92ee8a900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001855f015f6101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055508315610447576001855f0160086101000a81548160ff0219169083151502179055505b610451878761086c565b61047d3361045d610329565b600a61046991906113b6565b633b9aca006104789190611400565b610882565b83156104d7575f855f0160086101000a81548160ff0219169083151502179055507fc7f505b2f371ae2175ee4913f4499e1f2633a7b5936321eed1cdaeb6115181d260016040516104ce9190611496565b60405180910390a15b50505050505050565b5f806104ea610683565b9050805f015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054915050919050565b60605f61053e610683565b905080600401805461054f9061122a565b80601f016020809104026020016040519081016040528092919081815260200182805461057b9061122a565b80156105c65780601f1061059d576101008083540402835291602001916105c6565b820191905f5260205f20905b8154815290600101906020018083116105a957829003601f168201915b505050505091505090565b5f806105db6106aa565b90506105e8818585610755565b600191505092915050565b5f806105fd610683565b9050806001015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205491505092915050565b5f7f52c63247e1f47db19d5ce0460030c497f067ca4cebf71ba98eeadabe20bace00905090565b5f33905090565b6106be8383836001610901565b505050565b5f6106ce84846105f3565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461074f5781811015610740578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610737939291906114be565b60405180910390fd5b61074e84848484035f610901565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036107c5575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016107bc91906114f3565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610835575f6040517fec442f0500000000000000000000000000000000000000000000000000000000815260040161082c91906114f3565b60405180910390fd5b610840838383610ade565b505050565b5f7ff0c57e16840df040f15088dc2f81fe391c3923bec73e23a9662efc9c229c6a00905090565b610874610d0d565b61087e8282610d4d565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036108f2575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016108e991906114f3565b60405180910390fd5b6108fd5f8383610ade565b5050565b5f61090a610683565b90505f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361097c575f6040517fe602df0500000000000000000000000000000000000000000000000000000000815260040161097391906114f3565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036109ec575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016109e391906114f3565b60405180910390fd5b82816001015f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508115610ad7578373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92585604051610ace9190610f55565b60405180910390a35b5050505050565b5f610ae7610683565b90505f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610b3b5781816002015f828254610b2f919061150c565b92505081905550610c0d565b5f815f015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015610bc6578481846040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610bbd939291906114be565b60405180910390fd5b828103825f015f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c565781816002015f8282540392505081905550610ca2565b81815f015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610cff9190610f55565b60405180910390a350505050565b610d15610d89565b610d4b576040517fd7e6bcf800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b565b610d55610d0d565b5f610d5e610683565b905082816003019081610d7191906116d3565b5081816004019081610d8391906116d3565b50505050565b5f610d92610845565b5f0160089054906101000a900460ff16905090565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f610de982610da7565b610df38185610db1565b9350610e03818560208601610dc1565b610e0c81610dcf565b840191505092915050565b5f6020820190508181035f830152610e2f8184610ddf565b905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610e7182610e48565b9050919050565b610e8181610e67565b8114610e8b575f80fd5b50565b5f81359050610e9c81610e78565b92915050565b5f819050919050565b610eb481610ea2565b8114610ebe575f80fd5b50565b5f81359050610ecf81610eab565b92915050565b5f8060408385031215610eeb57610eea610e40565b5b5f610ef885828601610e8e565b9250506020610f0985828601610ec1565b9150509250929050565b5f8115159050919050565b610f2781610f13565b82525050565b5f602082019050610f405f830184610f1e565b92915050565b610f4f81610ea2565b82525050565b5f602082019050610f685f830184610f46565b92915050565b5f805f60608486031215610f8557610f84610e40565b5b5f610f9286828701610e8e565b9350506020610fa386828701610e8e565b9250506040610fb486828701610ec1565b9150509250925092565b5f60ff82169050919050565b610fd381610fbe565b82525050565b5f602082019050610fec5f830184610fca565b92915050565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b61103082610dcf565b810181811067ffffffffffffffff8211171561104f5761104e610ffa565b5b80604052505050565b5f611061610e37565b905061106d8282611027565b919050565b5f67ffffffffffffffff82111561108c5761108b610ffa565b5b61109582610dcf565b9050602081019050919050565b828183375f83830152505050565b5f6110c26110bd84611072565b611058565b9050828152602081018484840111156110de576110dd610ff6565b5b6110e98482856110a2565b509392505050565b5f82601f83011261110557611104610ff2565b5b81356111158482602086016110b0565b91505092915050565b5f806040838503121561113457611133610e40565b5b5f83013567ffffffffffffffff81111561115157611150610e44565b5b61115d858286016110f1565b925050602083013567ffffffffffffffff81111561117e5761117d610e44565b5b61118a858286016110f1565b9150509250929050565b5f602082840312156111a9576111a8610e40565b5b5f6111b684828501610e8e565b91505092915050565b5f80604083850312156111d5576111d4610e40565b5b5f6111e285828601610e8e565b92505060206111f385828601610e8e565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061124157607f821691505b602082108103611254576112536111fd565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b60018511156112dc578086048111156112b8576112b761125a565b5b60018516156112c75780820291505b80810290506112d585611287565b945061129c565b94509492505050565b5f826112f457600190506113af565b81611301575f90506113af565b8160018114611317576002811461132157611350565b60019150506113af565b60ff8411156113335761133261125a565b5b8360020a91508482111561134a5761134961125a565b5b506113af565b5060208310610133831016604e8410600b84101617156113855782820a9050838111156113805761137f61125a565b5b6113af565b6113928484846001611293565b925090508184048111156113a9576113a861125a565b5b81810290505b9392505050565b5f6113c082610ea2565b91506113cb83610fbe565b92506113f87fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846112e5565b905092915050565b5f61140a82610ea2565b915061141583610ea2565b925082820261142381610ea2565b9150828204841483151761143a5761143961125a565b5b5092915050565b5f819050919050565b5f67ffffffffffffffff82169050919050565b5f819050919050565b5f61148061147b61147684611441565b61145d565b61144a565b9050919050565b61149081611466565b82525050565b5f6020820190506114a95f830184611487565b92915050565b6114b881610e67565b82525050565b5f6060820190506114d15f8301866114af565b6114de6020830185610f46565b6114eb6040830184610f46565b949350505050565b5f6020820190506115065f8301846114af565b92915050565b5f61151682610ea2565b915061152183610ea2565b92508282019050808211156115395761153861125a565b5b92915050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830261159b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82611560565b6115a58683611560565b95508019841693508086168417925050509392505050565b5f6115d76115d26115cd84610ea2565b61145d565b610ea2565b9050919050565b5f819050919050565b6115f0836115bd565b6116046115fc826115de565b84845461156c565b825550505050565b5f90565b61161861160c565b6116238184846115e7565b505050565b5b818110156116465761163b5f82611610565b600181019050611629565b5050565b601f82111561168b5761165c8161153f565b61166584611551565b81016020851015611674578190505b61168861168085611551565b830182611628565b50505b505050565b5f82821c905092915050565b5f6116ab5f1984600802611690565b1980831691505092915050565b5f6116c3838361169c565b9150826002028217905092915050565b6116dc82610da7565b67ffffffffffffffff8111156116f5576116f4610ffa565b5b6116ff825461122a565b61170a82828561164a565b5f60209050601f83116001811461173b575f8415611729578287015190505b61173385826116b8565b86555061179a565b601f1984166117498661153f565b5f5b828110156117705784890151825560018201915060208501945060208101905061174b565b8683101561178d5784890151611789601f89168261169c565b8355505b6001600288020188555050505b50505050505056fea26469706673582212205f4cc319d560465dbfbd21d610b57c56316325f3aae8399ff84e7c610c1e961164736f6c634300081a0033
Deployed Bytecode Sourcemap
33325:246:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23576:147;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26149:190;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24790:155;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26917:249;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24641:84;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33380:188;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25008:174;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23842:151;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25387:182;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25632:198;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23576:147;23621:13;23647:22;23672:18;:16;:18::i;:::-;23647:43;;23708:1;:7;;23701:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23576:147;:::o;26149:190::-;26222:4;26239:13;26255:12;:10;:12::i;:::-;26239:28;;26278:31;26287:5;26294:7;26303:5;26278:8;:31::i;:::-;26327:4;26320:11;;;26149:190;;;;:::o;24790:155::-;24842:7;24862:22;24887:18;:16;:18::i;:::-;24862:43;;24923:1;:14;;;24916:21;;;24790:155;:::o;26917:249::-;27004:4;27021:15;27039:12;:10;:12::i;:::-;27021:30;;27062:37;27078:4;27084:7;27093:5;27062:15;:37::i;:::-;27110:26;27120:4;27126:2;27130:5;27110:9;:26::i;:::-;27154:4;27147:11;;;26917:249;;;;;:::o;24641:84::-;24690:5;24715:2;24708:9;;24641:84;:::o;33380:188::-;14102:30;14135:26;:24;:26::i;:::-;14102:59;;14226:19;14249:1;:15;;;;;;;;;;;;14248:16;14226:38;;14275:18;14296:1;:14;;;;;;;;;;;;14275:35;;14661:17;14696:1;14681:11;:16;;;:34;;;;;14701:14;14681:34;14661:54;;14726:17;14761:1;14746:11;:16;;;:50;;;;;14795:1;14774:4;14766:25;;;:30;14746:50;14726:70;;14814:12;14813:13;:30;;;;;14831:12;14830:13;14813:30;14809:93;;;14867:23;;;;;;;;;;;;;;14809:93;14929:1;14912;:14;;;:18;;;;;;;;;;;;;;;;;;14945:14;14941:69;;;14994:4;14976:1;:15;;;:22;;;;;;;;;;;;;;;;;;14941:69;33472:26:::1;33485:4;33491:6;33472:12;:26::i;:::-;33509:51;33515:10;33549;:8;:10::i;:::-;33543:2;:16;;;;:::i;:::-;33527:13;:32;;;;:::i;:::-;33509:5;:51::i;:::-;15036:14:::0;15032:104;;;15085:5;15067:1;:15;;;:23;;;;;;;;;;;;;;;;;;15110:14;15122:1;15110:14;;;;;;:::i;:::-;;;;;;;;15032:104;14034:1109;;;;;33380:188;;:::o;25008:174::-;25073:7;25093:22;25118:18;:16;:18::i;:::-;25093:43;;25154:1;:11;;:20;25166:7;25154:20;;;;;;;;;;;;;;;;25147:27;;;25008:174;;;:::o;23842:151::-;23889:13;23915:22;23940:18;:16;:18::i;:::-;23915:43;;23976:1;:9;;23969:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23842:151;:::o;25387:182::-;25456:4;25473:13;25489:12;:10;:12::i;:::-;25473:28;;25512:27;25522:5;25529:2;25533:5;25512:9;:27::i;:::-;25557:4;25550:11;;;25387:182;;;;:::o;25632:198::-;25712:7;25732:22;25757:18;:16;:18::i;:::-;25732:43;;25793:1;:13;;:20;25807:5;25793:20;;;;;;;;;;;;;;;:29;25814:7;25793:29;;;;;;;;;;;;;;;;25786:36;;;25632:198;;;;:::o;22782:157::-;22832:22;22901:20;22891:30;;22782:157;:::o;20540:98::-;20593:7;20620:10;20613:17;;20540:98;:::o;31040:130::-;31125:37;31134:5;31141:7;31150:5;31157:4;31125:8;:37::i;:::-;31040:130;;;:::o;32812:487::-;32912:24;32939:25;32949:5;32956:7;32939:9;:25::i;:::-;32912:52;;32999:17;32979:16;:37;32975:317;;33056:5;33037:16;:24;33033:132;;;33116:7;33125:16;33143:5;33089:60;;;;;;;;;;;;;:::i;:::-;;;;;;;;33033:132;33208:57;33217:5;33224:7;33252:5;33233:16;:24;33259:5;33208:8;:57::i;:::-;32975:317;32901:398;32812:487;;;:::o;27551:308::-;27651:1;27635:18;;:4;:18;;;27631:88;;27704:1;27677:30;;;;;;;;;;;:::i;:::-;;;;;;;;27631:88;27747:1;27733:16;;:2;:16;;;27729:88;;27802:1;27773:32;;;;;;;;;;;:::i;:::-;;;;;;;;27729:88;27827:24;27835:4;27841:2;27845:5;27827:7;:24::i;:::-;27551:308;;;:::o;18798:174::-;18856:30;18933:21;18923:31;;18798:174;:::o;23129:149::-;16940:20;:18;:20::i;:::-;23232:38:::1;23255:5;23262:7;23232:22;:38::i;:::-;23129:149:::0;;:::o;29735:213::-;29825:1;29806:21;;:7;:21;;;29802:93;;29880:1;29851:32;;;;;;;;;;;:::i;:::-;;;;;;;;29802:93;29905:35;29921:1;29925:7;29934:5;29905:7;:35::i;:::-;29735:213;;:::o;32021:499::-;32130:22;32155:18;:16;:18::i;:::-;32130:43;;32205:1;32188:19;;:5;:19;;;32184:91;;32260:1;32231:32;;;;;;;;;;;:::i;:::-;;;;;;;;32184:91;32308:1;32289:21;;:7;:21;;;32285:92;;32362:1;32334:31;;;;;;;;;;;:::i;:::-;;;;;;;;32285:92;32419:5;32387:1;:13;;:20;32401:5;32387:20;;;;;;;;;;;;;;;:29;32408:7;32387:29;;;;;;;;;;;;;;;:37;;;;32439:9;32435:78;;;32486:7;32470:31;;32479:5;32470:31;;;32495:5;32470:31;;;;;;:::i;:::-;;;;;;;;32435:78;32119:401;32021:499;;;;:::o;28183:1199::-;28269:22;28294:18;:16;:18::i;:::-;28269:43;;28343:1;28327:18;;:4;:18;;;28323:558;;28483:5;28465:1;:14;;;:23;;;;;;;:::i;:::-;;;;;;;;28323:558;;;28521:19;28543:1;:11;;:17;28555:4;28543:17;;;;;;;;;;;;;;;;28521:39;;28593:5;28579:11;:19;28575:117;;;28651:4;28657:11;28670:5;28626:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;28575:117;28849:5;28835:11;:19;28815:1;:11;;:17;28827:4;28815:17;;;;;;;;;;;;;;;:39;;;;28506:375;28323:558;28911:1;28897:16;;:2;:16;;;28893:439;;29081:5;29063:1;:14;;;:23;;;;;;;;;;;28893:439;;;29300:5;29281:1;:11;;:15;29293:2;29281:15;;;;;;;;;;;;;;;;:24;;;;;;;;;;;28893:439;29364:2;29349:25;;29358:4;29349:25;;;29368:5;29349:25;;;;;;:::i;:::-;;;;;;;;28258:1124;28183:1199;;;:::o;17100:145::-;17168:17;:15;:17::i;:::-;17163:75;;17209:17;;;;;;;;;;;;;;17163:75;17100:145::o;23286:220::-;16940:20;:18;:20::i;:::-;23399:22:::1;23424:18;:16;:18::i;:::-;23399:43;;23463:5;23453:1;:7;;:15;;;;;;:::i;:::-;;23491:7;23479:1;:9;;:19;;;;;;:::i;:::-;;23388:118;23286:220:::0;;:::o;18540:122::-;18590:4;18614:26;:24;:26::i;:::-;:40;;;;;;;;;;;;18607:47;;18540:122;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:139::-;376:6;371:3;366;360:23;417:1;408:6;403:3;399:16;392:27;287:139;;;:::o;432:102::-;473:6;524:2;520:7;515:2;508:5;504:14;500:28;490:38;;432:102;;;:::o;540:377::-;628:3;656:39;689:5;656:39;:::i;:::-;711:71;775:6;770:3;711:71;:::i;:::-;704:78;;791:65;849:6;844:3;837:4;830:5;826:16;791:65;:::i;:::-;881:29;903:6;881:29;:::i;:::-;876:3;872:39;865:46;;632:285;540:377;;;;:::o;923:313::-;1036:4;1074:2;1063:9;1059:18;1051:26;;1123:9;1117:4;1113:20;1109:1;1098:9;1094:17;1087:47;1151:78;1224:4;1215:6;1151:78;:::i;:::-;1143:86;;923:313;;;;:::o;1242:75::-;1275:6;1308:2;1302:9;1292:19;;1242:75;:::o;1323:117::-;1432:1;1429;1422:12;1446:117;1555:1;1552;1545:12;1569:126;1606:7;1646:42;1639:5;1635:54;1624:65;;1569:126;;;:::o;1701:96::-;1738:7;1767:24;1785:5;1767:24;:::i;:::-;1756:35;;1701:96;;;:::o;1803:122::-;1876:24;1894:5;1876:24;:::i;:::-;1869:5;1866:35;1856:63;;1915:1;1912;1905:12;1856:63;1803:122;:::o;1931:139::-;1977:5;2015:6;2002:20;1993:29;;2031:33;2058:5;2031:33;:::i;:::-;1931:139;;;;:::o;2076:77::-;2113:7;2142:5;2131:16;;2076:77;;;:::o;2159:122::-;2232:24;2250:5;2232:24;:::i;:::-;2225:5;2222:35;2212:63;;2271:1;2268;2261:12;2212:63;2159:122;:::o;2287:139::-;2333:5;2371:6;2358:20;2349:29;;2387:33;2414:5;2387:33;:::i;:::-;2287:139;;;;:::o;2432:474::-;2500:6;2508;2557:2;2545:9;2536:7;2532:23;2528:32;2525:119;;;2563:79;;:::i;:::-;2525:119;2683:1;2708:53;2753:7;2744:6;2733:9;2729:22;2708:53;:::i;:::-;2698:63;;2654:117;2810:2;2836:53;2881:7;2872:6;2861:9;2857:22;2836:53;:::i;:::-;2826:63;;2781:118;2432:474;;;;;:::o;2912:90::-;2946:7;2989:5;2982:13;2975:21;2964:32;;2912:90;;;:::o;3008:109::-;3089:21;3104:5;3089:21;:::i;:::-;3084:3;3077:34;3008:109;;:::o;3123:210::-;3210:4;3248:2;3237:9;3233:18;3225:26;;3261:65;3323:1;3312:9;3308:17;3299:6;3261:65;:::i;:::-;3123:210;;;;:::o;3339:118::-;3426:24;3444:5;3426:24;:::i;:::-;3421:3;3414:37;3339:118;;:::o;3463:222::-;3556:4;3594:2;3583:9;3579:18;3571:26;;3607:71;3675:1;3664:9;3660:17;3651:6;3607:71;:::i;:::-;3463:222;;;;:::o;3691:619::-;3768:6;3776;3784;3833:2;3821:9;3812:7;3808:23;3804:32;3801:119;;;3839:79;;:::i;:::-;3801:119;3959:1;3984:53;4029:7;4020:6;4009:9;4005:22;3984:53;:::i;:::-;3974:63;;3930:117;4086:2;4112:53;4157:7;4148:6;4137:9;4133:22;4112:53;:::i;:::-;4102:63;;4057:118;4214:2;4240:53;4285:7;4276:6;4265:9;4261:22;4240:53;:::i;:::-;4230:63;;4185:118;3691:619;;;;;:::o;4316:86::-;4351:7;4391:4;4384:5;4380:16;4369:27;;4316:86;;;:::o;4408:112::-;4491:22;4507:5;4491:22;:::i;:::-;4486:3;4479:35;4408:112;;:::o;4526:214::-;4615:4;4653:2;4642:9;4638:18;4630:26;;4666:67;4730:1;4719:9;4715:17;4706:6;4666:67;:::i;:::-;4526:214;;;;:::o;4746:117::-;4855:1;4852;4845:12;4869:117;4978:1;4975;4968:12;4992:180;5040:77;5037:1;5030:88;5137:4;5134:1;5127:15;5161:4;5158:1;5151:15;5178:281;5261:27;5283:4;5261:27;:::i;:::-;5253:6;5249:40;5391:6;5379:10;5376:22;5355:18;5343:10;5340:34;5337:62;5334:88;;;5402:18;;:::i;:::-;5334:88;5442:10;5438:2;5431:22;5221:238;5178:281;;:::o;5465:129::-;5499:6;5526:20;;:::i;:::-;5516:30;;5555:33;5583:4;5575:6;5555:33;:::i;:::-;5465:129;;;:::o;5600:308::-;5662:4;5752:18;5744:6;5741:30;5738:56;;;5774:18;;:::i;:::-;5738:56;5812:29;5834:6;5812:29;:::i;:::-;5804:37;;5896:4;5890;5886:15;5878:23;;5600:308;;;:::o;5914:148::-;6012:6;6007:3;6002;5989:30;6053:1;6044:6;6039:3;6035:16;6028:27;5914:148;;;:::o;6068:425::-;6146:5;6171:66;6187:49;6229:6;6187:49;:::i;:::-;6171:66;:::i;:::-;6162:75;;6260:6;6253:5;6246:21;6298:4;6291:5;6287:16;6336:3;6327:6;6322:3;6318:16;6315:25;6312:112;;;6343:79;;:::i;:::-;6312:112;6433:54;6480:6;6475:3;6470;6433:54;:::i;:::-;6152:341;6068:425;;;;;:::o;6513:340::-;6569:5;6618:3;6611:4;6603:6;6599:17;6595:27;6585:122;;6626:79;;:::i;:::-;6585:122;6743:6;6730:20;6768:79;6843:3;6835:6;6828:4;6820:6;6816:17;6768:79;:::i;:::-;6759:88;;6575:278;6513:340;;;;:::o;6859:834::-;6947:6;6955;7004:2;6992:9;6983:7;6979:23;6975:32;6972:119;;;7010:79;;:::i;:::-;6972:119;7158:1;7147:9;7143:17;7130:31;7188:18;7180:6;7177:30;7174:117;;;7210:79;;:::i;:::-;7174:117;7315:63;7370:7;7361:6;7350:9;7346:22;7315:63;:::i;:::-;7305:73;;7101:287;7455:2;7444:9;7440:18;7427:32;7486:18;7478:6;7475:30;7472:117;;;7508:79;;:::i;:::-;7472:117;7613:63;7668:7;7659:6;7648:9;7644:22;7613:63;:::i;:::-;7603:73;;7398:288;6859:834;;;;;:::o;7699:329::-;7758:6;7807:2;7795:9;7786:7;7782:23;7778:32;7775:119;;;7813:79;;:::i;:::-;7775:119;7933:1;7958:53;8003:7;7994:6;7983:9;7979:22;7958:53;:::i;:::-;7948:63;;7904:117;7699:329;;;;:::o;8034:474::-;8102:6;8110;8159:2;8147:9;8138:7;8134:23;8130:32;8127:119;;;8165:79;;:::i;:::-;8127:119;8285:1;8310:53;8355:7;8346:6;8335:9;8331:22;8310:53;:::i;:::-;8300:63;;8256:117;8412:2;8438:53;8483:7;8474:6;8463:9;8459:22;8438:53;:::i;:::-;8428:63;;8383:118;8034:474;;;;;:::o;8514:180::-;8562:77;8559:1;8552:88;8659:4;8656:1;8649:15;8683:4;8680:1;8673:15;8700:320;8744:6;8781:1;8775:4;8771:12;8761:22;;8828:1;8822:4;8818:12;8849:18;8839:81;;8905:4;8897:6;8893:17;8883:27;;8839:81;8967:2;8959:6;8956:14;8936:18;8933:38;8930:84;;8986:18;;:::i;:::-;8930:84;8751:269;8700:320;;;:::o;9026:180::-;9074:77;9071:1;9064:88;9171:4;9168:1;9161:15;9195:4;9192:1;9185:15;9212:102;9254:8;9301:5;9298:1;9294:13;9273:34;;9212:102;;;:::o;9320:848::-;9381:5;9388:4;9412:6;9403:15;;9436:5;9427:14;;9450:712;9471:1;9461:8;9458:15;9450:712;;;9566:4;9561:3;9557:14;9551:4;9548:24;9545:50;;;9575:18;;:::i;:::-;9545:50;9625:1;9615:8;9611:16;9608:451;;;10040:4;10033:5;10029:16;10020:25;;9608:451;10090:4;10084;10080:15;10072:23;;10120:32;10143:8;10120:32;:::i;:::-;10108:44;;9450:712;;;9320:848;;;;;;;:::o;10174:1073::-;10228:5;10419:8;10409:40;;10440:1;10431:10;;10442:5;;10409:40;10468:4;10458:36;;10485:1;10476:10;;10487:5;;10458:36;10554:4;10602:1;10597:27;;;;10638:1;10633:191;;;;10547:277;;10597:27;10615:1;10606:10;;10617:5;;;10633:191;10678:3;10668:8;10665:17;10662:43;;;10685:18;;:::i;:::-;10662:43;10734:8;10731:1;10727:16;10718:25;;10769:3;10762:5;10759:14;10756:40;;;10776:18;;:::i;:::-;10756:40;10809:5;;;10547:277;;10933:2;10923:8;10920:16;10914:3;10908:4;10905:13;10901:36;10883:2;10873:8;10870:16;10865:2;10859:4;10856:12;10852:35;10836:111;10833:246;;;10989:8;10983:4;10979:19;10970:28;;11024:3;11017:5;11014:14;11011:40;;;11031:18;;:::i;:::-;11011:40;11064:5;;10833:246;11104:42;11142:3;11132:8;11126:4;11123:1;11104:42;:::i;:::-;11089:57;;;;11178:4;11173:3;11169:14;11162:5;11159:25;11156:51;;;11187:18;;:::i;:::-;11156:51;11236:4;11229:5;11225:16;11216:25;;10174:1073;;;;;;:::o;11253:281::-;11311:5;11335:23;11353:4;11335:23;:::i;:::-;11327:31;;11379:25;11395:8;11379:25;:::i;:::-;11367:37;;11423:104;11460:66;11450:8;11444:4;11423:104;:::i;:::-;11414:113;;11253:281;;;;:::o;11540:410::-;11580:7;11603:20;11621:1;11603:20;:::i;:::-;11598:25;;11637:20;11655:1;11637:20;:::i;:::-;11632:25;;11692:1;11689;11685:9;11714:30;11732:11;11714:30;:::i;:::-;11703:41;;11893:1;11884:7;11880:15;11877:1;11874:22;11854:1;11847:9;11827:83;11804:139;;11923:18;;:::i;:::-;11804:139;11588:362;11540:410;;;;:::o;11956:85::-;12001:7;12030:5;12019:16;;11956:85;;;:::o;12047:101::-;12083:7;12123:18;12116:5;12112:30;12101:41;;12047:101;;;:::o;12154:60::-;12182:3;12203:5;12196:12;;12154:60;;;:::o;12220:156::-;12277:9;12310:60;12327:42;12336:32;12362:5;12336:32;:::i;:::-;12327:42;:::i;:::-;12310:60;:::i;:::-;12297:73;;12220:156;;;:::o;12382:145::-;12476:44;12514:5;12476:44;:::i;:::-;12471:3;12464:57;12382:145;;:::o;12533:236::-;12633:4;12671:2;12660:9;12656:18;12648:26;;12684:78;12759:1;12748:9;12744:17;12735:6;12684:78;:::i;:::-;12533:236;;;;:::o;12775:118::-;12862:24;12880:5;12862:24;:::i;:::-;12857:3;12850:37;12775:118;;:::o;12899:442::-;13048:4;13086:2;13075:9;13071:18;13063:26;;13099:71;13167:1;13156:9;13152:17;13143:6;13099:71;:::i;:::-;13180:72;13248:2;13237:9;13233:18;13224:6;13180:72;:::i;:::-;13262;13330:2;13319:9;13315:18;13306:6;13262:72;:::i;:::-;12899:442;;;;;;:::o;13347:222::-;13440:4;13478:2;13467:9;13463:18;13455:26;;13491:71;13559:1;13548:9;13544:17;13535:6;13491:71;:::i;:::-;13347:222;;;;:::o;13575:191::-;13615:3;13634:20;13652:1;13634:20;:::i;:::-;13629:25;;13668:20;13686:1;13668:20;:::i;:::-;13663:25;;13711:1;13708;13704:9;13697:16;;13732:3;13729:1;13726:10;13723:36;;;13739:18;;:::i;:::-;13723:36;13575:191;;;;:::o;13772:141::-;13821:4;13844:3;13836:11;;13867:3;13864:1;13857:14;13901:4;13898:1;13888:18;13880:26;;13772:141;;;:::o;13919:93::-;13956:6;14003:2;13998;13991:5;13987:14;13983:23;13973:33;;13919:93;;;:::o;14018:107::-;14062:8;14112:5;14106:4;14102:16;14081:37;;14018:107;;;;:::o;14131:393::-;14200:6;14250:1;14238:10;14234:18;14273:97;14303:66;14292:9;14273:97;:::i;:::-;14391:39;14421:8;14410:9;14391:39;:::i;:::-;14379:51;;14463:4;14459:9;14452:5;14448:21;14439:30;;14512:4;14502:8;14498:19;14491:5;14488:30;14478:40;;14207:317;;14131:393;;;;;:::o;14530:142::-;14580:9;14613:53;14631:34;14640:24;14658:5;14640:24;:::i;:::-;14631:34;:::i;:::-;14613:53;:::i;:::-;14600:66;;14530:142;;;:::o;14678:75::-;14721:3;14742:5;14735:12;;14678:75;;;:::o;14759:269::-;14869:39;14900:7;14869:39;:::i;:::-;14930:91;14979:41;15003:16;14979:41;:::i;:::-;14971:6;14964:4;14958:11;14930:91;:::i;:::-;14924:4;14917:105;14835:193;14759:269;;;:::o;15034:73::-;15079:3;15034:73;:::o;15113:189::-;15190:32;;:::i;:::-;15231:65;15289:6;15281;15275:4;15231:65;:::i;:::-;15166:136;15113:189;;:::o;15308:186::-;15368:120;15385:3;15378:5;15375:14;15368:120;;;15439:39;15476:1;15469:5;15439:39;:::i;:::-;15412:1;15405:5;15401:13;15392:22;;15368:120;;;15308:186;;:::o;15500:543::-;15601:2;15596:3;15593:11;15590:446;;;15635:38;15667:5;15635:38;:::i;:::-;15719:29;15737:10;15719:29;:::i;:::-;15709:8;15705:44;15902:2;15890:10;15887:18;15884:49;;;15923:8;15908:23;;15884:49;15946:80;16002:22;16020:3;16002:22;:::i;:::-;15992:8;15988:37;15975:11;15946:80;:::i;:::-;15605:431;;15590:446;15500:543;;;:::o;16049:117::-;16103:8;16153:5;16147:4;16143:16;16122:37;;16049:117;;;;:::o;16172:169::-;16216:6;16249:51;16297:1;16293:6;16285:5;16282:1;16278:13;16249:51;:::i;:::-;16245:56;16330:4;16324;16320:15;16310:25;;16223:118;16172:169;;;;:::o;16346:295::-;16422:4;16568:29;16593:3;16587:4;16568:29;:::i;:::-;16560:37;;16630:3;16627:1;16623:11;16617:4;16614:21;16606:29;;16346:295;;;;:::o;16646:1395::-;16763:37;16796:3;16763:37;:::i;:::-;16865:18;16857:6;16854:30;16851:56;;;16887:18;;:::i;:::-;16851:56;16931:38;16963:4;16957:11;16931:38;:::i;:::-;17016:67;17076:6;17068;17062:4;17016:67;:::i;:::-;17110:1;17134:4;17121:17;;17166:2;17158:6;17155:14;17183:1;17178:618;;;;17840:1;17857:6;17854:77;;;17906:9;17901:3;17897:19;17891:26;17882:35;;17854:77;17957:67;18017:6;18010:5;17957:67;:::i;:::-;17951:4;17944:81;17813:222;17148:887;;17178:618;17230:4;17226:9;17218:6;17214:22;17264:37;17296:4;17264:37;:::i;:::-;17323:1;17337:208;17351:7;17348:1;17345:14;17337:208;;;17430:9;17425:3;17421:19;17415:26;17407:6;17400:42;17481:1;17473:6;17469:14;17459:24;;17528:2;17517:9;17513:18;17500:31;;17374:4;17371:1;17367:12;17362:17;;17337:208;;;17573:6;17564:7;17561:19;17558:179;;;17631:9;17626:3;17622:19;17616:26;17674:48;17716:4;17708:6;17704:17;17693:9;17674:48;:::i;:::-;17666:6;17659:64;17581:156;17558:179;17783:1;17779;17771:6;17767:14;17763:22;17757:4;17750:36;17185:611;;;17148:887;;16738:1303;;;16646:1395;;:::o
Swarm Source
ipfs://5f4cc319d560465dbfbd21d610b57c56316325f3aae8399ff84e7c610c1e9611
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.