Overview
S Balance
S Value
$0.00More Info
Private Name Tags
ContractCreator
Loading...
Loading
Contract Name:
NomisScore
Compiler Version
v0.8.19+commit.7dd6d404
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity 0.8.19; import "@openzeppelin/contracts-upgradeable/utils/cryptography/EIP712Upgradeable.sol"; import "@openzeppelin/contracts-upgradeable/utils/cryptography/ECDSAUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/utils/CountersUpgradeable.sol"; import "./NomisReferralManager.sol"; import "./NomisPriceManager.sol"; /////////////////////////////////////////////////////////////// // ___ __ ______ ___ __ __ ________ ______ // // /__/\ /__/\ /_____/\ /__//_//_/\ /_______/\/_____/\ // // \::\_\\ \ \\:::_ \ \\::\| \| \ \ \__.::._\/\::::_\/_ // // \:. `-\ \ \\:\ \ \ \\:. \ \ \::\ \ \:\/___/\ // // \:. _ \ \\:\ \ \ \\:.\-/\ \ \ _\::\ \__\_::._\:\ // // \. \`-\ \ \\:\_\ \ \\. \ \ \ \/__\::\__/\ /____\:\ // // \__\/ \__\/ \_____\/ \__\/ \__\/\________\/ \_____\/ // // // /////////////////////////////////////////////////////////////// /** * @title NomisScore * @dev The NomisScore contract is an ERC721 token contract with additional functionality for managing scores. * @custom:security-contact [email protected] */ contract NomisScore is NomisReferralManager, NomisPriceManager, EIP712Upgradeable { using CountersUpgradeable for CountersUpgradeable.Counter; CountersUpgradeable.Counter private _tokenIds; /*######################### ## Variables ## ##########################*/ string private _baseUri; /*######################### ## Events ## ##########################*/ /** * @dev Emitted when a score is minted or changed. * @param tokenId The changed token id. * @param owner The address to which the score is being changed. * @param score The score being changed. * @param calculationModel The scoring calculation model. * @param chainId The blockchain id in which the score was calculated. */ event ChangedScore( uint256 indexed tokenId, address indexed owner, uint16 score, uint16 calculationModel, uint256 chainId, string metadataUrl, string referralCode, string referrerCode ); /** * @dev Emitted when the owner of the contract withdraws the funds from the contract balance. * @param owner The address of the owner who withdrew the funds. * @param balance The amount of funds withdrawn by the owner. */ event Withdrawal(address indexed owner, uint256 indexed balance); /** * @dev Emitted when the base URI is changed. * @param baseUri The new base URI. */ event ChangedBaseURI(string indexed baseUri); /*######################### ## Constructor ## ##########################*/ /** * @dev Constructor for the NomisScore ERC721Upgradeable contract. * @param initialFee The initial minting fee for the contract. * @param initialCalcModelsCount The initial scoring calculation models count. * Initializes the token ID counter to zero and sets the initial minting fee. */ function initialize( uint256 initialFee, uint16 initialCalcModelsCount ) public initializer { __ERC721_init("NomisScore", "NMSS"); __EIP712_init("NMSS", "0.9"); __Ownable_init(); __Pausable_init(); _tokenIds.increment(); _mintFee = initialFee; _updateFee = initialFee; require( initialCalcModelsCount > 0, "constructor: initialCalcModelsCount should be greater than 0" ); _calcModelsCount = initialCalcModelsCount; } /*######################### ## Write Functions ## ##########################*/ /** * @dev Sets the score for the calling address. * @param signature The signature used to verify the message. * @param score The score being set. * @param calculationModel The scoring calculation model. * @param deadline The deadline for submitting the transaction. * @param metadataUrl The URI for the token metadata. * @param chainId The blockchain id in which the score was calculated. * @param referralCode The minter referral code. * @param referrerCode The referrer code. * @param discountedMintFee The discounted mint fee. */ function setScore( bytes calldata signature, uint16 score, uint16 calculationModel, uint256 deadline, string calldata metadataUrl, uint256 chainId, string calldata referralCode, string calldata referrerCode, uint256 discountedMintFee ) external payable whenNotPaused equalsFee(calculationModel, chainId, discountedMintFee) { require(score <= 10000, "setScore: Score must be less than 10000"); require( block.timestamp <= deadline, "setScore: Signed transaction expired" ); require( calculationModel < _calcModelsCount, "setScore: calculationModel should be less than calculation model count" ); bytes32 referralCodeBytes = keccak256(bytes(referralCode)); bytes32 referrerCodeBytes = keccak256(bytes(referrerCode)); // Verify the signer of the message bytes32 messageHash = _hashTypedDataV4( keccak256( abi.encode( keccak256( "SetScoreMessage(uint16 score,uint16 calculationModel,address to,uint256 nonce,uint256 deadline,bytes32 metadataUrl,uint256 chainId,bytes32 referralCode,bytes32 referrerCode,uint256 discountedMintFee)" ), score, calculationModel, msg.sender, _nonce[msg.sender]++, deadline, keccak256(bytes(metadataUrl)), chainId, referralCodeBytes, referrerCodeBytes, discountedMintFee ) ) ); address signer = ECDSAUpgradeable.recover(messageHash, signature); require( signer == owner() && signer != address(0), "setScore: Invalid signature" ); bool isNewScore = false; Score storage scoreStruct = _score[msg.sender][chainId][ calculationModel ]; if (scoreStruct.updated == 0) { isNewScore = true; scoreStruct.tokenId = _tokenIds.current(); } uint256 tokenId = scoreStruct.tokenId; scoreStruct.updated = block.timestamp; if (scoreStruct.value != score) { scoreStruct.value = score; } if (isNewScore) { _walletToReferralCode[msg.sender] = referralCode; _referralCodeToWallet[referralCodeBytes] = msg.sender; _referrerCodeToTokenIds[referrerCodeBytes].push(tokenId); _safeMint(msg.sender, tokenId); _tokenIds.increment(); ++calculationModelToMintCountUsed[calculationModel]; tokenIdToCalcModel[tokenId] = calculationModel; tokenIdToChainId[tokenId] = chainId; _walletToTokenIds[msg.sender].push(tokenId); if (referrerCodeBytes != 0) { address referrerWallet = _referralCodeToWallet[ referrerCodeBytes ]; if (referrerWallet != address(0)) { uint256 rewardValue = 0; if (_individualReward[referrerWallet] > 0) { rewardValue = _individualReward[referrerWallet]; } else { rewardValue = _referralReward; } (bool success, ) = payable(referrerWallet).call{ value: rewardValue }(""); require(success, "setScore: claim referral reward failed"); emit RewardedWallet(msg.sender, block.timestamp); emit ClaimedReferralReward( referrerWallet, rewardValue, 1, block.timestamp ); } else { _claimableReferralWallets[referrerCodeBytes].push(msg.sender); } } } _setTokenURI(tokenId, metadataUrl); emit ChangedScore( tokenId, msg.sender, score, calculationModel, chainId, metadataUrl, referralCode, referrerCode ); } /** * @dev Allows the contract owner to withdraw a specific amount of native balance held by the contract. * Can only be called by the owner. * Emits a {Withdrawal} event upon successful withdrawal. * Throws a require error if there are no funds available for withdrawal. * Throws a require error if the specified withdrawal amount is greater than the contract balance. * @param amount The amount of balance to be withdrawn. */ function withdraw(uint256 amount) external onlyOwner { uint256 balance = address(this).balance; require(balance > 0, "Withdrawal: No funds available"); require(amount <= balance, "Withdrawal: Insufficient funds"); (bool success, ) = msg.sender.call{value: amount}(""); require(success, "Withdrawal: transfer failed"); emit Withdrawal(msg.sender, amount); } /** * @dev Pauses the contract. * See {Pausable-_pause}. * Can only be called by the owner. */ function pause() external onlyOwner { _pause(); } /** * @dev Unpauses the contract. * See {Pausable-_unpause}. * Can only be called by the owner. */ function unpause() external onlyOwner { _unpause(); } /** * @dev Changes the base URI for token metadata. * @param baseUri The new base URI. */ function setBaseUri(string memory baseUri) external onlyOwner { _baseUri = baseUri; emit ChangedBaseURI(baseUri); } /*######################### ## Read Functions ## ##########################*/ /** * @dev Returns the score and associated metadata for a given address. * @param addr The address to get the score for. * @param blockchainId The blockchain id in which the score was calculated. * @param calcModel The scoring calculation model. * @return score The score for the specified address. * @return updated The timestamp when the score was last updated for the specified address. * @return tokenId The token id with score for the specified address. * @return calculationModel The scoring calculation model. * @return chainId The blockchain id in which the score was calculated. * @return owner The score owner. */ function getScore( address addr, uint256 blockchainId, uint16 calcModel ) external view returns ( uint16 score, uint256 updated, uint256 tokenId, uint16 calculationModel, uint256 chainId, address owner ) { Score storage scoreStruct = _score[addr][blockchainId][calcModel]; score = scoreStruct.value; updated = scoreStruct.updated; tokenId = scoreStruct.tokenId; calculationModel = calcModel; chainId = blockchainId; owner = addr; } /** * @dev Returns the score and associated metadata for a given token id. * @param id The token id to get the score for. * @return score The score for the specified address. * @return updated The timestamp when the score was last updated for the specified address. * @return tokenId The token id with score for the specified address. * @return calculationModel The scoring calculation model. * @return chainId The blockchain id in which the score was calculated. * @return owner The score owner. */ function getScoreByTokenId( uint256 id ) external view returns ( uint16 score, uint256 updated, uint256 tokenId, uint16 calculationModel, uint256 chainId, address owner ) { address scoreOwner = ownerOf(id); calculationModel = tokenIdToCalcModel[id]; chainId = tokenIdToChainId[id]; Score storage scoreStruct = _score[scoreOwner][chainId][ calculationModel ]; score = scoreStruct.value; updated = scoreStruct.updated; tokenId = scoreStruct.tokenId; owner = scoreOwner; } /** * @dev Get the current token id. * @return The current token id. */ function getCurrentTokenId() external view returns (uint256) { return _tokenIds.current(); } /** * @dev Returns the token IDs associated with a given address. * @param addr The address for which to retrieve the token IDs. * @return An array of token IDs owned by the specified address. */ function getTokenIds( address addr ) external view returns (uint256[] memory) { require(_tokenIds.current() > 0, "getTokenIds: No tokens minted"); return _walletToTokenIds[addr]; } /** * @dev Returns the base URI of the token. This method is called internally by the {tokenURI} method. * @return A string containing the base URI of the token. */ function _baseURI() internal view override returns (string memory) { return _baseUri; } /** * @dev Returns an URI for a given token ID. * This method is called by the {tokenURI} method from ERC721Upgradeable contract, which in turn can be called by clients to get metadata. * @param tokenId The token ID to query for the URI. * @return A string containing the URI for the given token ID. */ function tokenURI( uint256 tokenId ) public view override(ERC721URIStorageUpgradeable) returns (string memory) { return super.tokenURI(tokenId); } /** * @dev Hook that is called before any token transfer. * @param from The address to transfer from. * @param to The address to transfer to. * @param tokenId The ID of the token being transferred. * @param batchSize The batch size. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId, uint256 batchSize ) internal override(ERC721Upgradeable) { require( from == address(0), "NonTransferrableERC721Token: Nomis score can't be transferred." ); super._beforeTokenTransfer(from, to, tokenId, batchSize); } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[50] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/ContextUpgradeable.sol"; import {Initializable} from "../proxy/utils/Initializable.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract OwnableUpgradeable is Initializable, ContextUpgradeable { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ function __Ownable_init() internal onlyInitializing { __Ownable_init_unchained(); } function __Ownable_init_unchained() internal onlyInitializing { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. 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 { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[49] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (interfaces/IERC165.sol) pragma solidity ^0.8.0; import "../utils/introspection/IERC165Upgradeable.sol";
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (interfaces/IERC4906.sol) pragma solidity ^0.8.0; import "./IERC165Upgradeable.sol"; import "./IERC721Upgradeable.sol"; /// @title EIP-721 Metadata Update Extension interface IERC4906Upgradeable is IERC165Upgradeable, IERC721Upgradeable { /// @dev This event emits when the metadata of a token is changed. /// So that the third-party platforms such as NFT market could /// timely update the images and related attributes of the NFT. event MetadataUpdate(uint256 _tokenId); /// @dev This event emits when the metadata of a range of tokens is changed. /// So that the third-party platforms such as NFT market could /// timely update the images and related attributes of the NFTs. event BatchMetadataUpdate(uint256 _fromTokenId, uint256 _toTokenId); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (interfaces/IERC5267.sol) pragma solidity ^0.8.0; interface IERC5267Upgradeable { /** * @dev MAY be emitted to signal that the domain could have changed. */ event EIP712DomainChanged(); /** * @dev returns the fields and values that describe the domain separator used by this contract for EIP-712 * signature. */ function eip712Domain() external view returns ( bytes1 fields, string memory name, string memory version, uint256 chainId, address verifyingContract, bytes32 salt, uint256[] memory extensions ); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (interfaces/IERC721.sol) pragma solidity ^0.8.0; import "../token/ERC721/IERC721Upgradeable.sol";
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (proxy/utils/Initializable.sol) pragma solidity ^0.8.2; import "../../utils/AddressUpgradeable.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 Indicates that the contract has been initialized. * @custom:oz-retyped-from bool */ uint8 private _initialized; /** * @dev Indicates that the contract is in the process of being initialized. */ bool private _initializing; /** * @dev Triggered when the contract has been initialized or reinitialized. */ event Initialized(uint8 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 functions marked with `initializer` can be nested in the context of a * constructor. * * Emits an {Initialized} event. */ modifier initializer() { bool isTopLevelCall = !_initializing; require( (isTopLevelCall && _initialized < 1) || (!AddressUpgradeable.isContract(address(this)) && _initialized == 1), "Initializable: contract is already initialized" ); _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 255 will prevent any future reinitialization. * * Emits an {Initialized} event. */ modifier reinitializer(uint8 version) { require(!_initializing && _initialized < version, "Initializable: contract is already initialized"); _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() { require(_initializing, "Initializable: contract is not initializing"); _; } /** * @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 { require(!_initializing, "Initializable: contract is initializing"); if (_initialized != type(uint8).max) { _initialized = type(uint8).max; emit Initialized(type(uint8).max); } } /** * @dev Returns the highest version that has been initialized. See {reinitializer}. */ function _getInitializedVersion() internal view returns (uint8) { return _initialized; } /** * @dev Returns `true` if the contract is currently initializing. See {onlyInitializing}. */ function _isInitializing() internal view returns (bool) { return _initializing; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol) pragma solidity ^0.8.0; import "../utils/ContextUpgradeable.sol"; import {Initializable} from "../proxy/utils/Initializable.sol"; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract PausableUpgradeable is Initializable, ContextUpgradeable { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ function __Pausable_init() internal onlyInitializing { __Pausable_init_unchained(); } function __Pausable_init_unchained() internal onlyInitializing { _paused = false; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { _requireNotPaused(); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { _requirePaused(); _; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Throws if the contract is paused. */ function _requireNotPaused() internal view virtual { require(!paused(), "Pausable: paused"); } /** * @dev Throws if the contract is not paused. */ function _requirePaused() internal view virtual { require(paused(), "Pausable: not paused"); } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[49] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; import "./IERC721Upgradeable.sol"; import "./IERC721ReceiverUpgradeable.sol"; import "./extensions/IERC721MetadataUpgradeable.sol"; import "../../utils/AddressUpgradeable.sol"; import "../../utils/ContextUpgradeable.sol"; import "../../utils/StringsUpgradeable.sol"; import "../../utils/introspection/ERC165Upgradeable.sol"; import {Initializable} from "../../proxy/utils/Initializable.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721Upgradeable is Initializable, ContextUpgradeable, ERC165Upgradeable, IERC721Upgradeable, IERC721MetadataUpgradeable { using AddressUpgradeable for address; using StringsUpgradeable for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ function __ERC721_init(string memory name_, string memory symbol_) internal onlyInitializing { __ERC721_init_unchained(name_, symbol_); } function __ERC721_init_unchained(string memory name_, string memory symbol_) internal onlyInitializing { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165Upgradeable, IERC165Upgradeable) returns (bool) { return interfaceId == type(IERC721Upgradeable).interfaceId || interfaceId == type(IERC721MetadataUpgradeable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: address zero is not a valid owner"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _ownerOf(tokenId); require(owner != address(0), "ERC721: invalid token ID"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { _requireMinted(tokenId); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721Upgradeable.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not token owner or approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { _requireMinted(tokenId); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom(address from, address to, uint256 tokenId) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom(address from, address to, uint256 tokenId) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved"); _safeTransfer(from, to, tokenId, data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer(address from, address to, uint256 tokenId, bytes memory data) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns the owner of the `tokenId`. Does NOT revert if token doesn't exist */ function _ownerOf(uint256 tokenId) internal view virtual returns (address) { return _owners[tokenId]; } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _ownerOf(tokenId) != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { address owner = ERC721Upgradeable.ownerOf(tokenId); return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint(address to, uint256 tokenId, bytes memory data) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId, 1); // Check that tokenId was not minted by `_beforeTokenTransfer` hook require(!_exists(tokenId), "ERC721: token already minted"); unchecked { // Will not overflow unless all 2**256 token ids are minted to the same owner. // Given that tokens are minted one by one, it is impossible in practice that // this ever happens. Might change if we allow batch minting. // The ERC fails to describe this case. _balances[to] += 1; } _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId, 1); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * This is an internal function that does not check if the sender is authorized to operate on the token. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721Upgradeable.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId, 1); // Update ownership in case tokenId was transferred by `_beforeTokenTransfer` hook owner = ERC721Upgradeable.ownerOf(tokenId); // Clear approvals delete _tokenApprovals[tokenId]; unchecked { // Cannot overflow, as that would require more tokens to be burned/transferred // out than the owner initially received through minting and transferring in. _balances[owner] -= 1; } delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId, 1); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer(address from, address to, uint256 tokenId) internal virtual { require(ERC721Upgradeable.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId, 1); // Check that tokenId was not transferred by `_beforeTokenTransfer` hook require(ERC721Upgradeable.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); // Clear approvals from the previous owner delete _tokenApprovals[tokenId]; unchecked { // `_balances[from]` cannot overflow for the same reason as described in `_burn`: // `from`'s balance is the number of token held, which is at least one before the current // transfer. // `_balances[to]` could overflow in the conditions described in `_mint`. That would require // all 2**256 token ids to be minted, which in practice is impossible. _balances[from] -= 1; _balances[to] += 1; } _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits an {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721Upgradeable.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits an {ApprovalForAll} event. */ function _setApprovalForAll(address owner, address operator, bool approved) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Reverts if the `tokenId` has not been minted yet. */ function _requireMinted(uint256 tokenId) internal view virtual { require(_exists(tokenId), "ERC721: invalid token ID"); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory data ) private returns (bool) { if (to.isContract()) { try IERC721ReceiverUpgradeable(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) { return retval == IERC721ReceiverUpgradeable.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { /// @solidity memory-safe-assembly assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting and burning. If {ERC721Consecutive} is * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s tokens will be transferred to `to`. * - When `from` is zero, the tokens will be minted for `to`. * - When `to` is zero, ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * - `batchSize` is non-zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 firstTokenId, uint256 batchSize) internal virtual {} /** * @dev Hook that is called after any token transfer. This includes minting and burning. If {ERC721Consecutive} is * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s tokens were transferred to `to`. * - When `from` is zero, the tokens were minted for `to`. * - When `to` is zero, ``from``'s tokens were burned. * - `from` and `to` are never both zero. * - `batchSize` is non-zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer(address from, address to, uint256 firstTokenId, uint256 batchSize) internal virtual {} /** * @dev Unsafe write access to the balances, used by extensions that "mint" tokens using an {ownerOf} override. * * WARNING: Anyone calling this MUST ensure that the balances remain consistent with the ownership. The invariant * being that for any address `a` the value returned by `balanceOf(a)` must be equal to the number of tokens such * that `ownerOf(tokenId)` is `a`. */ // solhint-disable-next-line func-name-mixedcase function __unsafe_increaseBalance(address account, uint256 amount) internal { _balances[account] += amount; } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[44] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC721/extensions/ERC721URIStorage.sol) pragma solidity ^0.8.0; import "../ERC721Upgradeable.sol"; import "../../../interfaces/IERC4906Upgradeable.sol"; import {Initializable} from "../../../proxy/utils/Initializable.sol"; /** * @dev ERC721 token with storage based token URI management. */ abstract contract ERC721URIStorageUpgradeable is Initializable, IERC4906Upgradeable, ERC721Upgradeable { using StringsUpgradeable for uint256; // Optional mapping for token URIs mapping(uint256 => string) private _tokenURIs; function __ERC721URIStorage_init() internal onlyInitializing { } function __ERC721URIStorage_init_unchained() internal onlyInitializing { } /** * @dev See {IERC165-supportsInterface} */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721Upgradeable, IERC165Upgradeable) returns (bool) { return interfaceId == bytes4(0x49064906) || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { _requireMinted(tokenId); string memory _tokenURI = _tokenURIs[tokenId]; string memory base = _baseURI(); // If there is no base URI, return the token URI. if (bytes(base).length == 0) { return _tokenURI; } // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked). if (bytes(_tokenURI).length > 0) { return string(abi.encodePacked(base, _tokenURI)); } return super.tokenURI(tokenId); } /** * @dev Sets `_tokenURI` as the tokenURI of `tokenId`. * * Emits {MetadataUpdate}. * * Requirements: * * - `tokenId` must exist. */ function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual { require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token"); _tokenURIs[tokenId] = _tokenURI; emit MetadataUpdate(tokenId); } /** * @dev See {ERC721-_burn}. This override additionally checks to see if a * token-specific URI was set for the token, and if so, it deletes the token URI from * the storage mapping. */ function _burn(uint256 tokenId) internal virtual override { super._burn(tokenId); if (bytes(_tokenURIs[tokenId]).length != 0) { delete _tokenURIs[tokenId]; } } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[49] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721Upgradeable.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721MetadataUpgradeable is IERC721Upgradeable { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721ReceiverUpgradeable { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165Upgradeable.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721Upgradeable is IERC165Upgradeable { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721 * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must * understand this adds an external call which potentially creates a reentrancy vulnerability. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 tokenId) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library AddressUpgradeable { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * * Furthermore, `isContract` will also return true if the target contract within * the same transaction is already scheduled for destruction by `SELFDESTRUCT`, * which only has an effect at the end of a transaction. * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.4) (utils/Context.sol) pragma solidity ^0.8.0; import {Initializable} from "../proxy/utils/Initializable.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; } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[50] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library CountersUpgradeable { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (utils/cryptography/ECDSA.sol) pragma solidity ^0.8.0; import "../StringsUpgradeable.sol"; /** * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations. * * These functions can be used to verify that a message was signed by the holder * of the private keys of a given address. */ library ECDSAUpgradeable { enum RecoverError { NoError, InvalidSignature, InvalidSignatureLength, InvalidSignatureS, InvalidSignatureV // Deprecated in v4.8 } function _throwError(RecoverError error) private pure { if (error == RecoverError.NoError) { return; // no error: do nothing } else if (error == RecoverError.InvalidSignature) { revert("ECDSA: invalid signature"); } else if (error == RecoverError.InvalidSignatureLength) { revert("ECDSA: invalid signature length"); } else if (error == RecoverError.InvalidSignatureS) { revert("ECDSA: invalid signature 's' value"); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature` or error string. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. * * Documentation for signature generation: * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js] * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) { if (signature.length == 65) { bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. /// @solidity memory-safe-assembly assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return tryRecover(hash, v, r, s); } else { return (address(0), RecoverError.InvalidSignatureLength); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, signature); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately. * * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address, RecoverError) { bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff); uint8 v = uint8((uint256(vs) >> 255) + 27); return tryRecover(hash, v, r, s); } /** * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately. * * _Available since v4.2._ */ function recover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, r, vs); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `v`, * `r` and `s` signature fields separately. * * _Available since v4.3._ */ function tryRecover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address, RecoverError) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) { return (address(0), RecoverError.InvalidSignatureS); } // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); if (signer == address(0)) { return (address(0), RecoverError.InvalidSignature); } return (signer, RecoverError.NoError); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, * `r` and `s` signature fields separately. */ function recover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, v, r, s); _throwError(error); return recovered; } /** * @dev Returns an Ethereum Signed Message, created from a `hash`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32 message) { // 32 is the length in bytes of hash, // enforced by the type signature above /// @solidity memory-safe-assembly assembly { mstore(0x00, "\x19Ethereum Signed Message:\n32") mstore(0x1c, hash) message := keccak256(0x00, 0x3c) } } /** * @dev Returns an Ethereum Signed Message, created from `s`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", StringsUpgradeable.toString(s.length), s)); } /** * @dev Returns an Ethereum Signed Typed Data, created from a * `domainSeparator` and a `structHash`. This produces hash corresponding * to the one signed with the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] * JSON-RPC method as part of EIP-712. * * See {recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32 data) { /// @solidity memory-safe-assembly assembly { let ptr := mload(0x40) mstore(ptr, "\x19\x01") mstore(add(ptr, 0x02), domainSeparator) mstore(add(ptr, 0x22), structHash) data := keccak256(ptr, 0x42) } } /** * @dev Returns an Ethereum Signed Data with intended validator, created from a * `validator` and `data` according to the version 0 of EIP-191. * * See {recover}. */ function toDataWithIntendedValidatorHash(address validator, bytes memory data) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19\x00", validator, data)); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (utils/cryptography/EIP712.sol) pragma solidity ^0.8.8; import "./ECDSAUpgradeable.sol"; import "../../interfaces/IERC5267Upgradeable.sol"; import {Initializable} from "../../proxy/utils/Initializable.sol"; /** * @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data. * * The encoding specified in the EIP is very generic, and such a generic implementation in Solidity is not feasible, * thus this contract does not implement the encoding itself. Protocols need to implement the type-specific encoding * they need in their contracts using a combination of `abi.encode` and `keccak256`. * * This contract implements the EIP 712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding * scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA * ({_hashTypedDataV4}). * * The implementation of the domain separator was designed to be as efficient as possible while still properly updating * the chain id to protect against replay attacks on an eventual fork of the chain. * * NOTE: This contract implements the version of the encoding known as "v4", as implemented by the JSON RPC method * https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask]. * * NOTE: In the upgradeable version of this contract, the cached values will correspond to the address, and the domain * separator of the implementation contract. This will cause the `_domainSeparatorV4` function to always rebuild the * separator from the immutable values, which is cheaper than accessing a cached version in cold storage. * * _Available since v3.4._ * * @custom:storage-size 52 */ abstract contract EIP712Upgradeable is Initializable, IERC5267Upgradeable { bytes32 private constant _TYPE_HASH = keccak256("EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"); /// @custom:oz-renamed-from _HASHED_NAME bytes32 private _hashedName; /// @custom:oz-renamed-from _HASHED_VERSION bytes32 private _hashedVersion; string private _name; string private _version; /** * @dev Initializes the domain separator and parameter caches. * * The meaning of `name` and `version` is specified in * https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]: * * - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol. * - `version`: the current major version of the signing domain. * * NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart * contract upgrade]. */ function __EIP712_init(string memory name, string memory version) internal onlyInitializing { __EIP712_init_unchained(name, version); } function __EIP712_init_unchained(string memory name, string memory version) internal onlyInitializing { _name = name; _version = version; // Reset prior values in storage if upgrading _hashedName = 0; _hashedVersion = 0; } /** * @dev Returns the domain separator for the current chain. */ function _domainSeparatorV4() internal view returns (bytes32) { return _buildDomainSeparator(); } function _buildDomainSeparator() private view returns (bytes32) { return keccak256(abi.encode(_TYPE_HASH, _EIP712NameHash(), _EIP712VersionHash(), block.chainid, address(this))); } /** * @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this * function returns the hash of the fully encoded EIP712 message for this domain. * * This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example: * * ```solidity * bytes32 digest = _hashTypedDataV4(keccak256(abi.encode( * keccak256("Mail(address to,string contents)"), * mailTo, * keccak256(bytes(mailContents)) * ))); * address signer = ECDSA.recover(digest, signature); * ``` */ function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) { return ECDSAUpgradeable.toTypedDataHash(_domainSeparatorV4(), structHash); } /** * @dev See {EIP-5267}. * * _Available since v4.9._ */ function eip712Domain() public view virtual override returns ( bytes1 fields, string memory name, string memory version, uint256 chainId, address verifyingContract, bytes32 salt, uint256[] memory extensions ) { // If the hashed name and version in storage are non-zero, the contract hasn't been properly initialized // and the EIP712 domain is not reliable, as it will be missing name and version. require(_hashedName == 0 && _hashedVersion == 0, "EIP712: Uninitialized"); return ( hex"0f", // 01111 _EIP712Name(), _EIP712Version(), block.chainid, address(this), bytes32(0), new uint256[](0) ); } /** * @dev The name parameter for the EIP712 domain. * * NOTE: This function reads from storage by default, but can be redefined to return a constant value if gas costs * are a concern. */ function _EIP712Name() internal virtual view returns (string memory) { return _name; } /** * @dev The version parameter for the EIP712 domain. * * NOTE: This function reads from storage by default, but can be redefined to return a constant value if gas costs * are a concern. */ function _EIP712Version() internal virtual view returns (string memory) { return _version; } /** * @dev The hash of the name parameter for the EIP712 domain. * * NOTE: In previous versions this function was virtual. In this version you should override `_EIP712Name` instead. */ function _EIP712NameHash() internal view returns (bytes32) { string memory name = _EIP712Name(); if (bytes(name).length > 0) { return keccak256(bytes(name)); } else { // If the name is empty, the contract may have been upgraded without initializing the new storage. // We return the name hash in storage if non-zero, otherwise we assume the name is empty by design. bytes32 hashedName = _hashedName; if (hashedName != 0) { return hashedName; } else { return keccak256(""); } } } /** * @dev The hash of the version parameter for the EIP712 domain. * * NOTE: In previous versions this function was virtual. In this version you should override `_EIP712Version` instead. */ function _EIP712VersionHash() internal view returns (bytes32) { string memory version = _EIP712Version(); if (bytes(version).length > 0) { return keccak256(bytes(version)); } else { // If the version is empty, the contract may have been upgraded without initializing the new storage. // We return the version hash in storage if non-zero, otherwise we assume the version is empty by design. bytes32 hashedVersion = _hashedVersion; if (hashedVersion != 0) { return hashedVersion; } else { return keccak256(""); } } } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[48] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165Upgradeable.sol"; import {Initializable} from "../../proxy/utils/Initializable.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165Upgradeable is Initializable, IERC165Upgradeable { function __ERC165_init() internal onlyInitializing { } function __ERC165_init_unchained() internal onlyInitializing { } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165Upgradeable).interfaceId; } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[50] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165Upgradeable { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library MathUpgradeable { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { // Solidity will revert if denominator == 0, unlike the div opcode on its own. // The surrounding unchecked block does not change this fact. // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic. return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1, "Math: mulDiv overflow"); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10 ** 64) { value /= 10 ** 64; result += 64; } if (value >= 10 ** 32) { value /= 10 ** 32; result += 32; } if (value >= 10 ** 16) { value /= 10 ** 16; result += 16; } if (value >= 10 ** 8) { value /= 10 ** 8; result += 8; } if (value >= 10 ** 4) { value /= 10 ** 4; result += 4; } if (value >= 10 ** 2) { value /= 10 ** 2; result += 2; } if (value >= 10 ** 1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (rounding == Rounding.Up && 10 ** result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 256, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (rounding == Rounding.Up && 1 << (result << 3) < value ? 1 : 0); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SignedMath.sol) pragma solidity ^0.8.0; /** * @dev Standard signed math utilities missing in the Solidity language. */ library SignedMathUpgradeable { /** * @dev Returns the largest of two signed numbers. */ function max(int256 a, int256 b) internal pure returns (int256) { return a > b ? a : b; } /** * @dev Returns the smallest of two signed numbers. */ function min(int256 a, int256 b) internal pure returns (int256) { return a < b ? a : b; } /** * @dev Returns the average of two signed numbers without overflow. * The result is rounded towards zero. */ function average(int256 a, int256 b) internal pure returns (int256) { // Formula from the book "Hacker's Delight" int256 x = (a & b) + ((a ^ b) >> 1); return x + (int256(uint256(x) >> 255) & (a ^ b)); } /** * @dev Returns the absolute unsigned value of a signed value. */ function abs(int256 n) internal pure returns (uint256) { unchecked { // must be unchecked in order to support `n = type(int256).min` return uint256(n >= 0 ? n : -n); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (utils/Strings.sol) pragma solidity ^0.8.0; import "./math/MathUpgradeable.sol"; import "./math/SignedMathUpgradeable.sol"; /** * @dev String operations. */ library StringsUpgradeable { bytes16 private constant _SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = MathUpgradeable.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `int256` to its ASCII `string` decimal representation. */ function toString(int256 value) internal pure returns (string memory) { return string(abi.encodePacked(value < 0 ? "-" : "", toString(SignedMathUpgradeable.abs(value)))); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, MathUpgradeable.log256(value) + 1); } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } /** * @dev Returns true if the two strings are equal. */ function equal(string memory a, string memory b) internal pure returns (bool) { return keccak256(bytes(a)) == keccak256(bytes(b)); } }
// SPDX-License-Identifier: MIT pragma solidity 0.8.19; import "./NomisStorageManager.sol"; import "./NomisWhitelistManager.sol"; /////////////////////////////////////////////////////////////// // ___ __ ______ ___ __ __ ________ ______ // // /__/\ /__/\ /_____/\ /__//_//_/\ /_______/\/_____/\ // // \::\_\\ \ \\:::_ \ \\::\| \| \ \ \__.::._\/\::::_\/_ // // \:. `-\ \ \\:\ \ \ \\:. \ \ \::\ \ \:\/___/\ // // \:. _ \ \\:\ \ \ \\:.\-/\ \ \ _\::\ \__\_::._\:\ // // \. \`-\ \ \\:\_\ \ \\. \ \ \ \/__\::\__/\ /____\:\ // // \__\/ \__\/ \_____\/ \__\/ \__\/\________\/ \_____\/ // // // /////////////////////////////////////////////////////////////// /** * @title NomisPriceManager * @dev The Nomis price manager contract. * @custom:security-contact [email protected] */ contract NomisPriceManager is NomisStorageManager, NomisWhitelistManager { /*######################### ## Variables ## ##########################*/ uint256 internal _mintFee; uint256 internal _updateFee; /*######################### ## Mappings ## ##########################*/ /** * @dev A mapping of calculation model to free mint count. */ mapping(uint16 => uint16) public calculationModelToFreeMintCount; /** * @dev The individual mint fee value for each address. */ mapping(address => mapping(uint16 => uint256)) internal _individualMintFee; /** * @dev The individual update fee value for each address. */ mapping(address => mapping(uint16 => uint256)) internal _individualUpdateFee; /*######################### ## Modifiers ## ##########################*/ /** * @dev Modifier that checks if the passed fee is equal to the current mint fee set. * @param calcModel The scoring calculation model. * @param chainId The blockchain id in which the score was calculated. * @param discountedMintFee The discounted mint fee. * Requirements: * The fee passed must be equal to the current mint or update fee set. */ modifier equalsFee(uint16 calcModel, uint256 chainId, uint256 discountedMintFee) { address _wallet = msg.sender; uint256 _fee = msg.value; // check update fee uint256 walletUpdateFee = _individualUpdateFee[_wallet][calcModel]; uint256 walletMintFee; if (discountedMintFee > 0) { walletMintFee = discountedMintFee; } Score storage scoreStruct = _score[_wallet][chainId][calcModel]; if (_individualMintFee[_wallet][calcModel] > 0) { walletMintFee = _individualMintFee[_wallet][calcModel]; } if (scoreStruct.updated > 0) { require( (_fee == walletUpdateFee && _fee > 0) || whitelist[_wallet][calcModel] || _fee == _updateFee, "Update fee: wrong update fee value" ); _; return; } // check mint fee require( (_fee == walletMintFee && _fee > 0) || whitelist[_wallet][calcModel] || _fee == _mintFee || calculationModelToMintCountUsed[calcModel] < calculationModelToFreeMintCount[calcModel], "Mint fee: wrong mint fee value" ); _; } /*######################### ## Events ## ##########################*/ /** * @dev Emitted when the mint fee is changed. * @param mintFee The new mint fee. */ event ChangedMintFee(uint256 indexed mintFee); /** * @dev Emitted when the update fee is changed. * @param updateFee The new update fee. */ event ChangedUpdateFee(uint256 indexed updateFee); /** * @dev Emitted when the individual mint fee is changed. * @param wallet The address of the wallet. * @param calculationModel The scoring calculation model. * @param mintFee The new individual mint fee. */ event ChangedIndividualMintFee( address indexed wallet, uint16 indexed calculationModel, uint256 indexed mintFee ); /** * @dev Emitted when the individual update fee is changed. * @param wallet The address of the wallet. * @param calculationModel The scoring calculation model. * @param updateFee The new individual update fee. */ event ChangedIndividualUpdateFee( address indexed wallet, uint16 indexed calculationModel, uint256 indexed updateFee ); /** * @dev Emitted when the free mint count is changed for calculation model. */ event ChangedFreeMintCount( uint16 indexed calculationModel, uint16 indexed freeMintCount ); /*######################### ## Write Functions ## ##########################*/ /** * @dev Sets the new mint fee. * @param mintFee The new mint fee. * @notice Only the contract owner can call this function. */ function setMintFee(uint256 mintFee) external onlyOwner { _mintFee = mintFee; emit ChangedMintFee(mintFee); } /** * @dev Sets the new update fee. * @param updateFee The new update fee. * @notice Only the contract owner can call this function. */ function setUpdateFee(uint256 updateFee) external onlyOwner { _updateFee = updateFee; emit ChangedUpdateFee(updateFee); } /** * @dev Sets the individual mint fee for the given address. * @param wallet The address to set the individual mint fee for. * @param calcModel The scoring calculation model. * @param fee The individual mint fee. * @notice Only the contract owner can call this function. */ function setIndividualMintFee( address wallet, uint16 calcModel, uint256 fee ) external onlyOwner { _individualMintFee[wallet][calcModel] = fee; emit ChangedIndividualMintFee(wallet, calcModel, fee); } /** * @dev Sets the individual update fee for the given address. * @param wallet The address to set the individual update fee for. * @param calcModel The scoring calculation model. * @param fee The individual update fee. * @notice Only the contract owner can call this function. */ function setIndividualUpdateFee( address wallet, uint16 calcModel, uint256 fee ) external onlyOwner { _individualUpdateFee[wallet][calcModel] = fee; emit ChangedIndividualUpdateFee(wallet, calcModel, fee); } /** * @dev Sets the new free mint count for given scoring calculation model. * @param freeMintCount The new free mint count. * @param calcModel The scoring calculation model. * @notice Only the contract owner can call this function. */ function setFreeMints( uint16 freeMintCount, uint16 calcModel ) external onlyOwner { calculationModelToFreeMintCount[calcModel] = freeMintCount; emit ChangedFreeMintCount(calcModel, freeMintCount); } /*######################### ## Read Functions ## ##########################*/ /** * @dev Returns the current mint fee. * @return The current mint fee. */ function getMintFee() external view returns (uint256) { return _mintFee; } /** * @dev Returns the current update fee. * @return The current update fee. */ function getUpdateFee() external view returns (uint256) { return _updateFee; } /** * @dev Sets the individual mint fee for the given address. * @param wallet The address to set the individual mint fee for. * @param calcModel The scoring calculation model. * @return The individual mint fee. * @notice Only the contract owner can call this function. */ function getIndividualMintFee( address wallet, uint16 calcModel ) external view returns (uint256) { return _individualMintFee[wallet][calcModel]; } /** * @dev Sets the individual update fee for the given address. * @param wallet The address to set the individual update fee for. * @param calcModel The scoring calculation model. * @return The individual update fee. * @notice Only the contract owner can call this function. */ function getIndividualUpdateFee( address wallet, uint16 calcModel ) external view returns (uint256) { return _individualUpdateFee[wallet][calcModel]; } /** * @dev Returns the current free mint count for given scoring calculation model. * @param calcModel The scoring calculation model. * @return The current free mint count. */ function getFreeMints(uint16 calcModel) external view returns (uint16) { return calculationModelToFreeMintCount[calcModel]; } }
// SPDX-License-Identifier: MIT pragma solidity 0.8.19; import "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/token/ERC721/extensions/ERC721URIStorageUpgradeable.sol"; /////////////////////////////////////////////////////////////// // ___ __ ______ ___ __ __ ________ ______ // // /__/\ /__/\ /_____/\ /__//_//_/\ /_______/\/_____/\ // // \::\_\\ \ \\:::_ \ \\::\| \| \ \ \__.::._\/\::::_\/_ // // \:. `-\ \ \\:\ \ \ \\:. \ \ \::\ \ \:\/___/\ // // \:. _ \ \\:\ \ \ \\:.\-/\ \ \ _\::\ \__\_::._\:\ // // \. \`-\ \ \\:\_\ \ \\. \ \ \ \/__\::\__/\ /____\:\ // // \__\/ \__\/ \_____\/ \__\/ \__\/\________\/ \_____\/ // // // /////////////////////////////////////////////////////////////// /** * @title NomisReferralManager * @dev The NomisReferralManager contract. * @custom:security-contact [email protected] */ contract NomisReferralManager is OwnableUpgradeable, PausableUpgradeable, ERC721URIStorageUpgradeable { /*######################### ## Variables ## ##########################*/ uint256 internal _referralReward; /*######################### ## Mappings ## ##########################*/ /** * @dev A mapping of addresses to referral codes (string). */ mapping(address => string) internal _walletToReferralCode; /** * @dev A mapping of referrer codes (bytes32) to wallets. */ mapping(bytes32 => address) internal _referralCodeToWallet; /** * @dev The individual rewards per referral value for each address. */ mapping(address => uint256) internal _individualReward; /** * @dev A mapping of not claimed referrals to referer code */ mapping(bytes32 => address[]) internal _claimableReferralWallets; /** * @dev A mapping of token ids of owners who referred by referrer code. */ mapping(bytes32 => uint256[]) internal _referrerCodeToTokenIds; /*######################### ## Events ## ##########################*/ /** * @dev Emitted when the referrer withdraws the own referral rewards from the contract balance. * @param owner The address of the referrer who withdrew the referral rewards. * @param balance The amount of referral rewards withdrawn by the referrer. * @param timestamp The timestamp when the referral rewards were withdrawn. * @param referralCount The number of claimable referrals for the referrer. */ event ClaimedReferralReward( address indexed owner, uint256 indexed balance, uint referralCount, uint256 timestamp ); /** * @dev Emitted when the referred wallet added the own referral rewards from the contract balance. * @param wallet The address of the wallet. * @param timestamp The timestamp when the referral rewards were claimed. */ event RewardedWallet(address indexed wallet, uint256 timestamp); /** * @dev Emitted when the referred wallets added the own referral rewards from the contract balance. * @param wallets The addresses of the wallets. * @param timestamp The timestamp when the referral rewards were claimed. */ event RewardedWallets(address[] wallets, uint256 timestamp); /** * @dev Emitted when the referral reward is changed. * @param referralReward The new referral reward. */ event ChangedReferralReward(uint256 indexed referralReward); /*######################### ## Write Functions ## ##########################*/ /** * @dev Claim referral rewards. */ function claimReferralRewards() external whenNotPaused { // get reward value per referral uint256 rewardValue = 0; if (_individualReward[msg.sender] > 0) { rewardValue = _individualReward[msg.sender]; } else { rewardValue = _referralReward; } // get an array of not claimed referrals bytes32 referralCodeBytes = keccak256( bytes(_walletToReferralCode[msg.sender]) ); address[] memory claimableReferralWallets = _claimableReferralWallets[ referralCodeBytes ]; uint256 referralsCount = claimableReferralWallets.length; emit RewardedWallets(claimableReferralWallets, block.timestamp); uint256 claimableReward = referralsCount * rewardValue; require( claimableReward > 0, "claimReferralRewards: No rewards available" ); require( claimableReward <= address(this).balance, "claimReferralRewards: Insufficient funds" ); delete _claimableReferralWallets[referralCodeBytes]; (bool success, ) = msg.sender.call{value: claimableReward}(""); require(success, "claimReferralRewards: transfer failed"); emit ClaimedReferralReward( msg.sender, claimableReward, referralsCount, block.timestamp ); } /** * @dev Sets the individual wallet reward. * @param wallet The address to set the individual reward for. * @param rewardValue The new reward value. * @notice Only the contract owner can call this function. */ function setIndividualReward( address wallet, uint256 rewardValue ) external onlyOwner { _individualReward[wallet] = rewardValue; } /** * @dev Sets the referral reward. * @param referralReward The referral reward. * @notice Only the contract owner can call this function. * @notice The referral reward is the amount of native currency that will be paid to the referrer when a new score is minted. */ function setReferralReward(uint256 referralReward) external onlyOwner { _referralReward = referralReward; emit ChangedReferralReward(referralReward); } /*######################### ## Read Functions ## ##########################*/ /** * @dev Returns the referral code for the given address. * @param addr The address to get the referral code for. * @return The referral code for the given address. */ function getReferralCode( address addr ) external view returns (string memory) { return _walletToReferralCode[addr]; } /** * @dev Returns the address for the given referral code. * @param referralCode The referral code to get the wallet for. * @return The address for the given referral code. */ function getWalletByReferralCode( string memory referralCode ) external view returns (address) { return getWalletByReferralCode(keccak256(bytes(referralCode))); } /** * @dev Returns the address for the given referral code. * @param referralCode The referral code to get the wallet for. * @return The address for the given referral code. */ function getWalletByReferralCode( bytes32 referralCode ) private view returns (address) { require( referralCode != 0, "getWalletByReferralCode: Invalid referral code" ); return _referralCodeToWallet[referralCode]; } /** * @dev Returns the wallets for the given referrer code. * @param referrerCode The referrer code to get the wallets for. * @return The wallets for the given referrer code. */ function getWalletsByReferrerCode( string memory referrerCode ) public view returns (address[] memory) { uint256[] memory referredTokenIds = _referrerCodeToTokenIds[ keccak256(bytes(referrerCode)) ]; // Create a new dynamic array with the correct size to store valid token IDs address[] memory wallets = new address[](referredTokenIds.length); // Copy the valid token IDs to the new array for (uint256 i = 0; i < referredTokenIds.length; ++i) { wallets[i] = ownerOf(referredTokenIds[i]); } return wallets; } /** * @dev Returns the claimable reward for the given wallet. * @param wallet The wallet to get the claimable reward for. * @return The claimable reward for the given wallet. */ function getClaimableReward( address wallet ) external view returns (uint256) { // get reward value per referral uint256 rewardValue = 0; if (_individualReward[wallet] > 0) { rewardValue = _individualReward[wallet]; } else { rewardValue = _referralReward; } // get an array of all not claimed referrals bytes32 referralCodeBytes = keccak256( bytes(_walletToReferralCode[msg.sender]) ); address[] memory claimableReferralWallets = _claimableReferralWallets[ referralCodeBytes ]; return claimableReferralWallets.length * rewardValue; } /** * @dev Returns the current referral reward. * @return The current referral reward. * @notice Only the contract owner can call this function. */ function getReferralReward() external view returns (uint256) { return _referralReward; } }
// SPDX-License-Identifier: MIT pragma solidity 0.8.19; import "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol"; /////////////////////////////////////////////////////////////// // ___ __ ______ ___ __ __ ________ ______ // // /__/\ /__/\ /_____/\ /__//_//_/\ /_______/\/_____/\ // // \::\_\\ \ \\:::_ \ \\::\| \| \ \ \__.::._\/\::::_\/_ // // \:. `-\ \ \\:\ \ \ \\:. \ \ \::\ \ \:\/___/\ // // \:. _ \ \\:\ \ \ \\:.\-/\ \ \ _\::\ \__\_::._\:\ // // \. \`-\ \ \\:\_\ \ \\. \ \ \ \/__\::\__/\ /____\:\ // // \__\/ \__\/ \_____\/ \__\/ \__\/\________\/ \_____\/ // // // /////////////////////////////////////////////////////////////// /** * @title NomisStorageManager * @dev The Nomis storage manager contract. * @custom:security-contact [email protected] */ contract NomisStorageManager is OwnableUpgradeable { /*######################### ## Structs ## ##########################*/ /** * @dev The Score struct represents a user's score. * @param tokenId The token id with score for the specified address. * @param updated The timestamp when the score was last updated for the specified address. * @param value The score for the specified address. */ struct Score { uint256 tokenId; uint256 updated; uint16 value; } /*######################### ## Variables ## ##########################*/ uint16 internal _calcModelsCount; /*######################### ## Mappings ## ##########################*/ /** * @dev A mapping of token id to calculation model. */ mapping(uint256 => uint16) public tokenIdToCalcModel; /** * @dev A mapping of token id to chain id. */ mapping(uint256 => uint256) public tokenIdToChainId; /** * @dev A mapping of calculation model to mint count used. */ mapping(uint16 => uint256) public calculationModelToMintCountUsed; /** * @dev A mapping of addresses, chains and calculation methods to scores. */ mapping(address => mapping(uint256 => mapping(uint16 => Score))) internal _score; /** * @dev A mapping of addresses to nonces for replay protection. */ mapping(address => uint256) internal _nonce; /** * @dev A mapping of wallet to its token ids. */ mapping(address => uint256[]) internal _walletToTokenIds; /*######################### ## Events ## ##########################*/ /** * Emitted when the calculation models count is changed. */ event ChangedCalculationModelsCount(uint256 indexed calcModelsCount); /*######################### ## Write Functions ## ##########################*/ /** * @dev Sets the number of scoring calculation models. * @param calcModelsCount The number of scoring calculation models to set. */ function setCalcModelsCount(uint16 calcModelsCount) external onlyOwner { require( calcModelsCount > 0, "setCalcModelsCount: calcModelsCount should be greater than 0" ); _calcModelsCount = calcModelsCount; emit ChangedCalculationModelsCount(calcModelsCount); } /*######################### ## Read Functions ## ##########################*/ /** * @dev Returns the number of scoring calculation models. * @return The number of scoring calculation models. */ function getCalcModelsCount() external view returns (uint16) { return _calcModelsCount; } /** * @dev Returns the nonce value for the calling address. * @param addr The address to get the nonce for. * @return The nonce value for the calling address. */ function getNonce(address addr) external view returns (uint256) { return _nonce[addr]; } }
// SPDX-License-Identifier: MIT pragma solidity 0.8.19; import "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol"; /////////////////////////////////////////////////////////////// // ___ __ ______ ___ __ __ ________ ______ // // /__/\ /__/\ /_____/\ /__//_//_/\ /_______/\/_____/\ // // \::\_\\ \ \\:::_ \ \\::\| \| \ \ \__.::._\/\::::_\/_ // // \:. `-\ \ \\:\ \ \ \\:. \ \ \::\ \ \:\/___/\ // // \:. _ \ \\:\ \ \ \\:.\-/\ \ \ _\::\ \__\_::._\:\ // // \. \`-\ \ \\:\_\ \ \\. \ \ \ \/__\::\__/\ /____\:\ // // \__\/ \__\/ \_____\/ \__\/ \__\/\________\/ \_____\/ // // // /////////////////////////////////////////////////////////////// /** * @title NomisWhitelistManager * @dev The Nomis whitelist manager contract. * @custom:security-contact [email protected] */ contract NomisWhitelistManager is OwnableUpgradeable { /*######################### ## Mappings ## ##########################*/ /** * @dev A mapping of addresses with scoring calculation model to whitelist. */ mapping(address => mapping(uint16 => bool)) public whitelist; /*######################### ## Events ## ##########################*/ /** * @dev Emitted when the wallet is added to whitelist or removed from it for calculation model. * @param wallet The address of the wallet. * @param calculationModel The scoring calculation model. * @param status The status of the wallet in whitelist. */ event ChangedWhitelistStatus( address indexed wallet, uint16 indexed calculationModel, bool indexed status ); /*######################### ## Write Functions ## ##########################*/ /** * @dev Adds the given addresses to the whitelist. * @param actors The addresses to be added to the whitelist. * @param calcModel The scoring calculation model. */ function whitelistAddresses( address[] calldata actors, uint16 calcModel ) external onlyOwner { for (uint256 i = 0; i < actors.length; ++i) { whitelist[actors[i]][calcModel] = true; emit ChangedWhitelistStatus(actors[i], calcModel, true); } } /** * @dev Removes the given addresses from the whitelist. * @param actors The addresses to be removed from the whitelist. * @param calcModel The scoring calculation model. */ function unWhitelistAddresses( address[] calldata actors, uint16 calcModel ) external onlyOwner { for (uint256 i = 0; i < actors.length; ++i) { whitelist[actors[i]][calcModel] = false; emit ChangedWhitelistStatus(actors[i], calcModel, false); } } }
{ "optimizer": { "enabled": true, "runs": 200 }, "viaIR": true, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_toTokenId","type":"uint256"}],"name":"BatchMetadataUpdate","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"string","name":"baseUri","type":"string"}],"name":"ChangedBaseURI","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"calcModelsCount","type":"uint256"}],"name":"ChangedCalculationModelsCount","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint16","name":"calculationModel","type":"uint16"},{"indexed":true,"internalType":"uint16","name":"freeMintCount","type":"uint16"}],"name":"ChangedFreeMintCount","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"wallet","type":"address"},{"indexed":true,"internalType":"uint16","name":"calculationModel","type":"uint16"},{"indexed":true,"internalType":"uint256","name":"mintFee","type":"uint256"}],"name":"ChangedIndividualMintFee","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"wallet","type":"address"},{"indexed":true,"internalType":"uint16","name":"calculationModel","type":"uint16"},{"indexed":true,"internalType":"uint256","name":"updateFee","type":"uint256"}],"name":"ChangedIndividualUpdateFee","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"mintFee","type":"uint256"}],"name":"ChangedMintFee","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"referralReward","type":"uint256"}],"name":"ChangedReferralReward","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint16","name":"score","type":"uint16"},{"indexed":false,"internalType":"uint16","name":"calculationModel","type":"uint16"},{"indexed":false,"internalType":"uint256","name":"chainId","type":"uint256"},{"indexed":false,"internalType":"string","name":"metadataUrl","type":"string"},{"indexed":false,"internalType":"string","name":"referralCode","type":"string"},{"indexed":false,"internalType":"string","name":"referrerCode","type":"string"}],"name":"ChangedScore","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"updateFee","type":"uint256"}],"name":"ChangedUpdateFee","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"wallet","type":"address"},{"indexed":true,"internalType":"uint16","name":"calculationModel","type":"uint16"},{"indexed":true,"internalType":"bool","name":"status","type":"bool"}],"name":"ChangedWhitelistStatus","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"uint256","name":"balance","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"referralCount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"ClaimedReferralReward","type":"event"},{"anonymous":false,"inputs":[],"name":"EIP712DomainChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"version","type":"uint8"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"MetadataUpdate","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"wallet","type":"address"},{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"RewardedWallet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address[]","name":"wallets","type":"address[]"},{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"RewardedWallets","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"uint256","name":"balance","type":"uint256"}],"name":"Withdrawal","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"}],"name":"calculationModelToFreeMintCount","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"}],"name":"calculationModelToMintCountUsed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimReferralRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"eip712Domain","outputs":[{"internalType":"bytes1","name":"fields","type":"bytes1"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"version","type":"string"},{"internalType":"uint256","name":"chainId","type":"uint256"},{"internalType":"address","name":"verifyingContract","type":"address"},{"internalType":"bytes32","name":"salt","type":"bytes32"},{"internalType":"uint256[]","name":"extensions","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCalcModelsCount","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"getClaimableReward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCurrentTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"calcModel","type":"uint16"}],"name":"getFreeMints","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"},{"internalType":"uint16","name":"calcModel","type":"uint16"}],"name":"getIndividualMintFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"},{"internalType":"uint16","name":"calcModel","type":"uint16"}],"name":"getIndividualUpdateFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMintFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"getNonce","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"getReferralCode","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getReferralReward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint256","name":"blockchainId","type":"uint256"},{"internalType":"uint16","name":"calcModel","type":"uint16"}],"name":"getScore","outputs":[{"internalType":"uint16","name":"score","type":"uint16"},{"internalType":"uint256","name":"updated","type":"uint256"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint16","name":"calculationModel","type":"uint16"},{"internalType":"uint256","name":"chainId","type":"uint256"},{"internalType":"address","name":"owner","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"getScoreByTokenId","outputs":[{"internalType":"uint16","name":"score","type":"uint16"},{"internalType":"uint256","name":"updated","type":"uint256"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint16","name":"calculationModel","type":"uint16"},{"internalType":"uint256","name":"chainId","type":"uint256"},{"internalType":"address","name":"owner","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"getTokenIds","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getUpdateFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"referralCode","type":"string"}],"name":"getWalletByReferralCode","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"referrerCode","type":"string"}],"name":"getWalletsByReferrerCode","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"initialFee","type":"uint256"},{"internalType":"uint16","name":"initialCalcModelsCount","type":"uint16"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseUri","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"calcModelsCount","type":"uint16"}],"name":"setCalcModelsCount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"freeMintCount","type":"uint16"},{"internalType":"uint16","name":"calcModel","type":"uint16"}],"name":"setFreeMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"},{"internalType":"uint16","name":"calcModel","type":"uint16"},{"internalType":"uint256","name":"fee","type":"uint256"}],"name":"setIndividualMintFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"},{"internalType":"uint256","name":"rewardValue","type":"uint256"}],"name":"setIndividualReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"},{"internalType":"uint16","name":"calcModel","type":"uint16"},{"internalType":"uint256","name":"fee","type":"uint256"}],"name":"setIndividualUpdateFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"mintFee","type":"uint256"}],"name":"setMintFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"referralReward","type":"uint256"}],"name":"setReferralReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes","name":"signature","type":"bytes"},{"internalType":"uint16","name":"score","type":"uint16"},{"internalType":"uint16","name":"calculationModel","type":"uint16"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"string","name":"metadataUrl","type":"string"},{"internalType":"uint256","name":"chainId","type":"uint256"},{"internalType":"string","name":"referralCode","type":"string"},{"internalType":"string","name":"referrerCode","type":"string"},{"internalType":"uint256","name":"discountedMintFee","type":"uint256"}],"name":"setScore","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"updateFee","type":"uint256"}],"name":"setUpdateFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenIdToCalcModel","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenIdToChainId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"actors","type":"address[]"},{"internalType":"uint16","name":"calcModel","type":"uint16"}],"name":"unWhitelistAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint16","name":"","type":"uint16"}],"name":"whitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"actors","type":"address[]"},{"internalType":"uint16","name":"calcModel","type":"uint16"}],"name":"whitelistAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608080604052346100165761461b908161001c8239f35b600080fdfe608080604052600436101561001357600080fd5b600090813560e01c90816301ffc9a7146125735750806305eaab4b146122e657806306fdde0314612240578063081812fc14612221578063095ea7b3146120ac5780630f25b13714611ff35780631048fbf814611fd457806323b872dd14611faf5780632b08672f14611ee35780632d0335ab14611ea95780632e1a7d4d14611d725780633938da5914611cce5780633be159ed14611c295780633f4ba83a14611b9457806342842e0e14611b61578063523033aa14610de15780635618923614611b42578063590adabe14611b175780635c975abb14611af45780635ff329af14611a2a578063631c10521461193d5780636352211e1461190c5780636a2e770f146118c357806370a082311461182d578063710b4300146117dd578063715018a6146117805780637a5caab3146117615780637ca40d1c146110285780638456cb5914610fcd57806384b0196e14610e415780638da5cb5b14610e185780638e52c21714610de15780638ee67edb14610d915780638fb6c6f614610d48578063902a859a14610cd557806392c4034414610c8757806395d89b4114610bb657806397f5eda614610b195780639995626614610ae5578063a09bddaa14610ab6578063a0bcfc7f1461090f578063a22cb4651461083b578063a93986b1146107d5578063b7b0ccde146107b6578063b88d4fde1461072c578063bdbbd85b146106c6578063c87b56dd14610692578063cbec2cdb1461066f578063d004b0361461058f578063d241c3291461053a578063db0b2b101461048c578063e985e9c51461043c578063eddd0d9c146103f3578063eef1d20f146103b4578063f2fde38b146103235763fc1ac1d31461028957600080fd5b346103205761029736612822565b602081519101209081156102c457602091815261012f8252604060018060a01b0391205416604051908152f35b60405162461bcd60e51b815260206004820152602e60248201527f67657457616c6c65744279526566657272616c436f64653a20496e76616c696460448201526d20726566657272616c20636f646560901b6064820152608490fd5b80fd5b50346103205760203660031901126103205761033d612642565b610345612906565b6001600160a01b038116156103605761035d9061295e565b80f35b60405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608490fd5b5034610320576040366003190112610320576103ce612642565b6103d6612906565b6001600160a01b0316815261013060205260408120602435905580f35b503461032057602036600319011261032057600435610410612906565b8061013b557f0dfc6eec96b100579d23188487733288387140dea6c20dcf97a742a857b132738280a280f35b50346103205760403660031901126103205760ff604060209261045d612642565b61046561265d565b6001600160a01b03918216835260ce86528383209116825284522054604051911615158152f35b50346103205761049b36612708565b6104a6929192612906565b835b8381106104b3578480f35b610535906001600160a01b03806104d36104ce8489896145a1565b6145b1565b168752602061013a81526040882061ffff861691828a525260408820916001928360ff1982541617905561050b6104ce858a8a6145a1565b167f89260241ebd53b9ff7a3778cb628f41b86fcce20041a1f23c751005663420c7a8980a46131c7565b6104a8565b50346103205760403660031901126103205760ff604060209261055b612642565b6105636126a0565b6001600160a01b03909116825261013a855282822061ffff909116825284522054604051911615158152f35b50346103205760208060031936011261066b576105aa612642565b6101745415610626576001600160a01b03168252610139815260408083209051815480825291845282842090939091849182850191905b85828210610610575050506105f8925003836127af565b61060c60405192828493845283019061289d565b0390f35b85548452600195860195889550930192016105e1565b60405162461bcd60e51b815260048101839052601d60248201527f676574546f6b656e4964733a204e6f20746f6b656e73206d696e7465640000006044820152606490fd5b5080fd5b5034610320578060031936011261032057602061ffff6101335416604051908152f35b50346103205760203660031901126103205761060c6106b2600435614304565b60405191829160208352602083019061261d565b5034610320576106d5366128d1565b916106de612906565b60018060a01b031680845261013f60205261ffff604085209216918285526020528260408520557ff3d990281b2074ce0d470fa6b9bb65b5376fbd7e946d091e47490a06743f496d8480a480f35b503461032057608036600319011261032057610746612642565b61074e61265d565b90606435906044356001600160401b0383116107b257366023840112156107b25761035d9361078a6107ad9436906024816004013591016127eb565b9261079d6107988433612d44565b612c6b565b6107a8838383612e0c565b6130b1565b612d20565b8480fd5b5034610320578060031936011261032057602061013c54604051908152f35b5034610320576107e4366128d1565b916107ed612906565b60018060a01b031680845261013e60205261ffff604085209216918285526020528260408520557fdb0ab24533f4d50ca30cd5978eddbb5a07340c32ff1809f24f6ce598e8eafc398480a480f35b503461032057604036600319011261032057610855612642565b6024359081151580920361090b576001600160a01b0316903382146108c65733835260ce602052604083208284526020526040832060ff1981541660ff83161790556040519081527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3160203392a380f35b60405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606490fd5b8280fd5b50346103205761091e36612822565b90610927612906565b8151916001600160401b038311610aa2576101756109458154612a16565b601f8111610a4a575b5060209081601f86116001146109c9579480859661099296916109be575b508160011b916000199060031b1c19161790555b604051928284809451938492016125fa565b81010390207f9bda31c5daf938016d59248ce284119fc191a83aabdfb40b4405397af0a9c97b8280a280f35b90508401513861096c565b8185527f94b016e6b5eafb28c9d47c3523378ec087cc0ead8b7eff2840605504c1f1ac6f90601f198716865b818110610a335750918791610992979860019410610a1a575b5050811b019055610980565b86015160001960f88460031b161c191690553880610a0e565b91928560018192868a0151815501940192016109f5565b610a92908285527f94b016e6b5eafb28c9d47c3523378ec087cc0ead8b7eff2840605504c1f1ac6f601f870160051c81019160208810610a98575b601f0160051c019061316c565b3861094e565b9091508190610a85565b634e487b7160e01b82526041600452602482fd5b50346103205760203660031901126103205761ffff604060209260043581526101348452205416604051908152f35b503461032057602036600319011261032057604060209161ffff610b076126c2565b16815261013683522054604051908152f35b503461032057606036600319011261032057610b33612642565b61060c60243591610b426126b1565b6001600160a01b039190911680855261013760209081526040808720868852825280872061ffff948516808952908352968190206002810154600182015491548351919096168152928301528101929092526060820194909452608081019290925260a082019290925290819060c0820190565b5034610320578060031936011261032057604051908060ca54610bd881612a16565b80855291600191808316908115610c5d5750600114610c02575b61060c856106b2818703826127af565b925060ca83527f42d72674974f694b5f5159593243114d38a5c39c89d6b62fee061ff523240ee15b828410610c455750505081016020016106b28261060c610bf2565b80546020858701810191909152909301928101610c2a565b86955061060c969350602092506106b294915060ff191682840152151560051b8201019293610bf2565b50346103205760203660031901126103205761060c90610cce906106b2906040906001600160a01b03610cb8612642565b16815261012e6020522060405192838092612b98565b03826127af565b503461032057604036600319011261032057610cef6126c2565b610cf76126a0565b610cff612906565b61ffff8091169081845261013d602052604084209216918261ffff198254161790557fc3ae431c8f115f13156aad0dc084ce6c552f8ae33c5dda5c7d7dc7e450f4255e8380a380f35b503461032057602036600319011261032057600435610d65612906565b8061012d557f14ea2ed84c55d689785f43bcf8e2a56a3bd24dd6fc33946dfd7f7b5bdb5f03218280a280f35b5034610320576040366003190112610320576040602091610db0612642565b610db86126a0565b6001600160a01b03909116825261013e845282822061ffff909116825283522054604051908152f35b503461032057602036600319011261032057602090604061ffff9182610e056126c2565b16815261013d8452205416604051908152f35b50346103205780600319360112610320576033546040516001600160a01b039091168152602090f35b5034610320578060031936011261032057610140541580610fc2575b15610f8557604051610e7281610cce81612a50565b604051826101438054610e8481612a16565b80855291600191808316908115610f595750600114610f11575b610ee48661060c8988610eb3818a03826127af565b610ef260405191610ec383612763565b838352604051968796600f60f81b885260e0602089015260e088019061261d565b90868203604088015261261d565b9146606086015230608086015260a085015283820360c085015261289d565b86528592506000805160206145c68339815191525b828410610f4157505050810160200181610eb361060c610e9e565b80546020858701810191909152909301928101610f26565b60ff191660208088019190915293151560051b86019093019350849250610eb3915061060c9050610e9e565b60405162461bcd60e51b81526020600482015260156024820152741152540dcc4c8e88155b9a5b9a5d1a585b1a5e9959605a1b6044820152606490fd5b506101415415610e5d565b5034610320578060031936011261032057610fe6612906565b610fee613183565b600160ff1960655416176065557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586020604051338152a180f35b5034610320576040366003190112610320576110426126a0565b815460ff91828260081c161591828093611755575b801561173f575b156116e35760ff1981166001178555826116d2575b5060405161108081612794565b600a8152694e6f6d697353636f726560b01b602082015261109f613200565b906110b885875460081c166110b381613220565b613220565b8051906001600160401b0382116115065781906110d660c954612a16565b601f8111611684575b50602090601f83116001146116015788926115f6575b50508160011b916000199060031b1c19161760c9555b8051906001600160401b03821161141457819061112960ca54612a16565b601f81116115a8575b50602090601f831160011461152557879261151a575b50508160011b916000199060031b1c19161760ca555b611166613200565b6040519061117382612794565b6003825262302e3960e81b602083015261119685875460081c166110b381613220565b80516001600160401b0381116115065780610142926111b58454612a16565b601f81116114b9575b50602090601f8311600114611433578992611428575b50508160011b916000199060031b1c19161790555b80516001600160401b03811161141457610143916112078354612a16565b601f81116113d9575b50602090601f83116001146113655761ffff9493929188918361135a575b50508160011b916000199060031b1c19161790555b8461014055846101415561126084865460081c166110b381613220565b6112693361295e565b61127d8554948560081c166110b381613220565b60ff1960655416606555610174600181540190556004358061013b5561013c551680156112ef576101339061ffff198254161790556112ba575080f35b61ff00191681557f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb3847402498602060405160018152a180f35b60405162461bcd60e51b815260206004820152603c60248201527f636f6e7374727563746f723a20696e697469616c43616c634d6f64656c73436f60448201527f756e742073686f756c642062652067726561746572207468616e2030000000006064820152608490fd5b01519050388061122e565b8388526000805160206145c68339815191529190601f198416895b8181106113c1575091600193918561ffff98979694106113a8575b505050811b019055611243565b015160001960f88460031b161c1916905538808061139b565b92936020600181928786015181550195019301611380565b61140e908489526000805160206145c6833981519152601f850160051c81019160208610610a9857601f0160051c019061316c565b38611210565b634e487b7160e01b86526041600452602486fd5b0151905038806111d4565b92508389527f7917ad5f1bd6fa6d4f9128143f89bcba30c5b503e76ecd2dd7562ddf9706ae199089935b601f198416851061149e576001945083601f19811610611485575b505050811b0190556111e9565b015160001960f88460031b161c19169055388080611478565b8181015183556020948501946001909301929091019061145d565b61150090858b527f7917ad5f1bd6fa6d4f9128143f89bcba30c5b503e76ecd2dd7562ddf9706ae19601f850160051c81019160208610610a9857601f0160051c019061316c565b386111be565b634e487b7160e01b87526041600452602487fd5b015190503880611148565b60ca88527f42d72674974f694b5f5159593243114d38a5c39c89d6b62fee061ff523240ee19250601f198416885b8181106115905750908460019594939210611577575b505050811b0160ca5561115e565b015160001960f88460031b161c19169055388080611569565b92936020600181928786015181550195019301611553565b6115f09060ca89527f42d72674974f694b5f5159593243114d38a5c39c89d6b62fee061ff523240ee1601f850160051c81019160208610610a9857601f0160051c019061316c565b38611132565b0151905038806110f5565b60c989527f66be4f155c5ef2ebd3772b228f2f00681e4ed5826cdb3b1943cc11ad15ad1d289250601f198416895b81811061166c5750908460019594939210611653575b505050811b0160c95561110b565b015160001960f88460031b161c19169055388080611645565b9293602060018192878601518155019501930161162f565b6116cc9060c98a527f66be4f155c5ef2ebd3772b228f2f00681e4ed5826cdb3b1943cc11ad15ad1d28601f850160051c81019160208610610a9857601f0160051c019061316c565b386110df565b61ffff191661010117845538611073565b60405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608490fd5b50303b15801561105e575060018482161461105e565b50600184821610611057565b5034610320578060031936011261032057602061013b54604051908152f35b5034610320578060031936011261032057611799612906565b603380546001600160a01b0319811690915581906001600160a01b03167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08280a380f35b50346103205760403660031901126103205760406020916117fc612642565b6118046126a0565b6001600160a01b03909116825261013f845282822061ffff909116825283522054604051908152f35b5034610320576020366003190112610320576001600160a01b0361184f612642565b16801561186c57816040916020935260cc83522054604051908152f35b60405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608490fd5b5034610320576020366003190112610320576004356118e0612906565b8061013c557f1a1fdd6048edb5d9cc6acd350eadec9121194106777efa0f11794b3f9e62955b8280a280f35b503461032057602036600319011261032057602061192b6004356129f3565b6040516001600160a01b039091168152f35b50346103205761194c36612822565b80516020809201208252610132815260408220604051808284829454938481520190865284862092865b86828210611a145750505061198d925003826127af565b8051926119998461312c565b936119a760405195866127af565b8085526119b6601f199161312c565b0136848601375b81518110156119fe57806119dd6119d76119f993856131d6565b516129f3565b6119e782876131d6565b6001600160a01b0390911690526131c7565b6119bd565b505061060c604051928284938452830190612860565b8554845260019586019587955093019201611976565b50346103205760208060031936011261066b57611a45612642565b6001600160a01b039081168352610130825260408320549092908015611ae957905b33815261012e8352610cce611a856040832060405192838092612b98565b83815191012081526101318352604081209360405191828587549182815201968252858220915b818110611ad35786611acb8787611ac5818d03826127af565b51613143565b604051908152f35b8254841688529686019660019283019201611aac565b5061012d5490611a67565b5034610320578060031936011261032057602060ff606554166040519015158152f35b5034610320576020366003190112610320576040602091600435815261013583522054604051908152f35b5034610320578060031936011261032057602061017454604051908152f35b50346103205761035d6107ad611b76366126d3565b9060405192611b8484612763565b86845261079d6107988433612d44565b5034610320578060031936011261032057611bad612906565b60655460ff811615611bed5760ff19166065557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6020604051338152a180f35b60405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606490fd5b503461032057602090816003193601126103205761060c600435611c4c816129f3565b90835261013484526040808420546101358652818520546001600160a01b039093168086526101378752828620848752875282862061ffff92831680885297529482902060028101546001820154915484519190931681526020810191909152918201526060810194909452608084015260a0830191909152819060c0820190565b503461032057611cdd36612708565b9091611ce7612906565b835b838110611cf4578480f35b611d6d90856001600160a01b0380611d106104ce858a896145a1565b16825260209061013a82526040832061ffff881692838552526040832060ff198154169055611d436104ce858a896145a1565b167f89260241ebd53b9ff7a3778cb628f41b86fcce20041a1f23c751005663420c7a8380a46131c7565b611ce9565b503461032057602036600319011261032057600435611d8f612906565b478015611e64578111611e1f578180808084335af1611dac612f8d565b5015611dda57337f7fcf532c15f0a6db0bd6d0e038bea71d30d808c7d98cb3bf7268a95bf5081b658380a380f35b60405162461bcd60e51b815260206004820152601b60248201527f5769746864726177616c3a207472616e73666572206661696c656400000000006044820152606490fd5b60405162461bcd60e51b815260206004820152601e60248201527f5769746864726177616c3a20496e73756666696369656e742066756e647300006044820152606490fd5b60405162461bcd60e51b815260206004820152601e60248201527f5769746864726177616c3a204e6f2066756e647320617661696c61626c6500006044820152606490fd5b5034610320576020366003190112610320576020906040906001600160a01b03611ed1612642565b16815261013883522054604051908152f35b50346103205760203660031901126103205761ffff611f006126c2565b611f08612906565b168015611f4457610133805461ffff1916821790557f279cbae98d21cc94b9c9de893c44ac632afa05edb3f83372abad1c412673959e8280a280f35b60405162461bcd60e51b815260206004820152603c60248201527f73657443616c634d6f64656c73436f756e743a2063616c634d6f64656c73436f60448201527f756e742073686f756c642062652067726561746572207468616e2030000000006064820152608490fd5b50346103205761035d611fc1366126d3565b91611fcf6107988433612d44565b612e0c565b5034610320578060031936011261032057602061012d54604051908152f35b50610120366003190112610320576001600160401b0360043581811161090b57612021903690600401612673565b9061202a6126a0565b916120336126b1565b906084358581116120a85761204c903690600401612673565b9160c4358781116120a457612065903690600401612673565b93909260e4359889116120a05761208361035d993690600401612673565b97909661208e613183565b610104359960a43595606435936132bc565b8980fd5b8880fd5b8680fd5b5034610320576040366003190112610320576120c6612642565b602435906001600160a01b0380806120dd856129f3565b169216918083146121d2578033149081156121b1575b50156121465782845260cd6020526040842080546001600160a01b0319168317905561211e836129f3565b167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258480a480f35b60405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c0000006064820152608490fd5b9050845260ce6020526040842033855260205260ff604085205416386120f3565b60405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608490fd5b503461032057602036600319011261032057602061192b600435612c2d565b5034610320578060031936011261032057604051908060c95461226281612a16565b80855291600191808316908115610c5d575060011461228b5761060c856106b2818703826127af565b925060c983527f66be4f155c5ef2ebd3772b228f2f00681e4ed5826cdb3b1943cc11ad15ad1d285b8284106122ce5750505081016020016106b28261060c610bf2565b805460208587018101919091529093019281016122b3565b50346103205780600319360112610320576122ff613183565b338152610130602090815260408220548015612569575b61012e8252610cce6123316040852060405192838092612b98565b82815191012091828452610131808252604085209260405180948591858254918281520191895285892090895b8782821061254957505050506123c3929161237a9103866127af565b7f10e5dd73c78f20ac02a01872a45cab5e858e67f5b51725e641fe2af492967abd6123b5865196604051918291604083526040830190612860565b42888301520390a184613143565b9384156124f15747851161249b578552815260408420805485825580612482575b50508380808086335af16123f6612f8d565b50156124305760405191825242908201527f16e0c135ad5198482dd8326eb47c9c1a3adef8cb405f743c99a0c1fd414e116060403392a380f35b6084906040519062461bcd60e51b82526004820152602560248201527f636c61696d526566657272616c526577617264733a207472616e736665722066604482015264185a5b195960da1b6064820152fd5b6124949186528286209081019061316c565b38806123e4565b60405162461bcd60e51b815260048101849052602860248201527f636c61696d526566657272616c526577617264733a20496e73756666696369656044820152676e742066756e647360c01b6064820152608490fd5b60405162461bcd60e51b815260048101849052602a60248201527f636c61696d526566657272616c526577617264733a204e6f207265776172647360448201526920617661696c61626c6560b01b6064820152608490fd5b83546001600160a01b03168552899550909301926001928301920161235e565b5061012d54612316565b90503461066b57602036600319011261066b5760043563ffffffff60e01b811680910361090b5760209250632483248360e11b81149081156125b7575b5015158152f35b6380ac58cd60e01b8114915081156125e9575b81156125d8575b50386125b0565b6301ffc9a760e01b149050386125d1565b635b5e139f60e01b811491506125ca565b60005b83811061260d5750506000910152565b81810151838201526020016125fd565b90602091612636815180928185528580860191016125fa565b601f01601f1916010190565b600435906001600160a01b038216820361265857565b600080fd5b602435906001600160a01b038216820361265857565b9181601f84011215612658578235916001600160401b038311612658576020838186019501011161265857565b6024359061ffff8216820361265857565b6044359061ffff8216820361265857565b6004359061ffff8216820361265857565b6060906003190112612658576001600160a01b0390600435828116810361265857916024359081168103612658579060443590565b906040600319830112612658576004356001600160401b039283821161265857806023830112156126585781600401359384116126585760248460051b8301011161265857602401919060243561ffff811681036126585790565b602081019081106001600160401b0382111761277e57604052565b634e487b7160e01b600052604160045260246000fd5b604081019081106001600160401b0382111761277e57604052565b90601f801991011681019081106001600160401b0382111761277e57604052565b6001600160401b03811161277e57601f01601f191660200190565b9291926127f7826127d0565b9161280560405193846127af565b829481845281830111612658578281602093846000960137010152565b602060031982011261265857600435906001600160401b03821161265857806023830112156126585781602461285d936004013591016127eb565b90565b90815180825260208080930193019160005b828110612880575050505090565b83516001600160a01b031685529381019392810192600101612872565b90815180825260208080930193019160005b8281106128bd575050505090565b8351855293810193928101926001016128af565b6060906003190112612658576004356001600160a01b0381168103612658579060243561ffff81168103612658579060443590565b6033546001600160a01b0316330361291a57565b606460405162461bcd60e51b815260206004820152602060248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152fd5b603380546001600160a01b039283166001600160a01b0319821681179092559091167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0600080a3565b156129ae57565b60405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e20494400000000000000006044820152606490fd5b600090815260cb60205260409020546001600160a01b031661285d8115156129a7565b90600182811c92168015612a46575b6020831014612a3057565b634e487b7160e01b600052602260045260246000fd5b91607f1691612a25565b90600091610142908154612a6381612a16565b80835292600191808316908115612ae25750600114612a83575b50505050565b90929394506000527f7917ad5f1bd6fa6d4f9128143f89bcba30c5b503e76ecd2dd7562ddf9706ae19916000925b848410612aca5750506020925001019038808080612a7d565b80546020858501810191909152909301928101612ab1565b92505050602093945060ff929192191683830152151560051b01019038808080612a7d565b90600091610175908154612b1a81612a16565b80835292600191808316908115612ae25750600114612b395750505050565b90929394506000527f94b016e6b5eafb28c9d47c3523378ec087cc0ead8b7eff2840605504c1f1ac6f916000925b848410612b805750506020925001019038808080612a7d565b80546020858501810191909152909301928101612b67565b9060009291805491612ba983612a16565b918282526001938481169081600014612c0a5750600114612bca5750505050565b90919394506000526020928360002092846000945b838610612bf6575050505001019038808080612a7d565b805485870183015294019385908201612bdf565b9294505050602093945060ff191683830152151560051b01019038808080612a7d565b600081815260cb6020526040902054612c50906001600160a01b031615156129a7565b600090815260cd60205260409020546001600160a01b031690565b15612c7257565b60405162461bcd60e51b815260206004820152602d60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201526c1c881bdc88185c1c1c9bdd9959609a1b6064820152608490fd5b60809060208152603260208201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60608201520190565b15612d2757565b60405162461bcd60e51b815280612d4060048201612ccd565b0390fd5b906001600160a01b038080612d58846129f3565b16931691838314938415612d8b575b508315612d75575b50505090565b612d8191929350612c2d565b1614388080612d6f565b90935060005260ce60205260406000208260005260205260ff604060002054169238612d67565b15612db957565b60405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608490fd5b90612e3491612e1a846129f3565b6001600160a01b0393918416928492909183168414612db2565b16918215612f3c5781612ed15781612e5691612e4f866129f3565b1614612db2565b7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600084815260cd602052604081206001600160601b0360a01b9081815416905583825260cc602052604082206000198154019055848252604082206001815401905585825260cb60205284604083209182541617905580a4565b60405162461bcd60e51b815260206004820152603e60248201527f4e6f6e5472616e736665727261626c65455243373231546f6b656e3a204e6f6d60448201527f69732073636f72652063616e2774206265207472616e736665727265642e00006064820152608490fd5b60405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608490fd5b3d15612fb8573d90612f9e826127d0565b91612fac60405193846127af565b82523d6000602084013e565b606090565b9091600091803b156130a8576130086020918493604051948580948193630a85bd0160e11b9a8b8452336004850152846024850152604484015260806064840152608483019061261d565b03926001600160a01b03165af190829082613060575b50506130525761302c612f8d565b8051908161304d5760405162461bcd60e51b815280612d4060048201612ccd565b602001fd5b6001600160e01b0319161490565b909192506020813d82116130a0575b8161307c602093836127af565b8101031261066b5751906001600160e01b031982168203610320575090388061301e565b3d915061306f565b50505050600190565b91926000929190813b15613122576020916131079185604051958680958194630a85bd0160e11b9b8c845233600485015260018060a01b038095166024850152604484015260806064840152608483019061261d565b0393165af1908290826130605750506130525761302c612f8d565b5050505050600190565b6001600160401b03811161277e5760051b60200190565b8181029291811591840414171561315657565b634e487b7160e01b600052601160045260246000fd5b818110613177575050565b6000815560010161316c565b60ff6065541661318f57565b60405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606490fd5b60001981146131565760010190565b80518210156131ea5760209160051b010190565b634e487b7160e01b600052603260045260246000fd5b6040519061320d82612794565b60048252634e4d535360e01b6020830152565b1561322757565b60405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201526a6e697469616c697a696e6760a81b6064820152608490fd5b9190601f811161328f57505050565b6132ba926000526020600020906020601f840160051c83019310610a9857601f0160051c019061316c565b565b9b9a999897969594939291903360005261013f602052604060002061ffff84166000526020526040600020546000908d613502575b33600052610137602052604060002089600052602052604060002061ffff861660005260205260406000203360005261013e80602052604060002061ffff88166000526020526040600020546134d9575b5060010154613425575034148061341c575b80156133f3575b80156133e7575b80156133bc575b15613377576132ba9c613578565b60405162461bcd60e51b815260206004820152601e60248201527f4d696e74206665653a2077726f6e67206d696e74206665652076616c756500006044820152606490fd5b5061ffff831660005261013660205260406000205461013d60205261ffff6040600020541611613369565b5061013b543414613362565b503360005261013a602052604060002061ffff841660005260205260ff6040600020541661335b565b50341515613354565b90503414806134d0575b80156134a7575b801561349b575b1561344b576132ba9c613578565b60405162461bcd60e51b815260206004820152602260248201527f557064617465206665653a2077726f6e6720757064617465206665652076616c604482015261756560f01b6064820152608490fd5b5061013c54341461343d565b503360005261013a602052604060002061ffff841660005260205260ff60406000205416613436565b5034151561342f565b90925033600052602052604060002061ffff861660005260205260016040600020549290613342565b8d91506132f1565b80548210156131ea5760005260206000200190600090565b8054600160401b81101561277e5761353f9160018201815561350a565b819291549060031b91821b91600019901b1916179055565b908060209392818452848401376000828201840152601f01601f1916010190565b909b9a98969391999b95949561271061ffff8c1611613f6057824211613f0f5761ffff610133541661ffff85161015613e95578a8d93366135ba908b8d6127eb565b805190602001209d8e958d36906135d0926127eb565b8051906020012095336000526101386020526040600020928354936135f4856131c7565b9055613601368c8e6127eb565b80519060200120906040519460208601967fc11af91045266b8c5df4fb4c0d475785635da25fd18ae4bb0d9b02415d5f93bd885261ffff16604087015261ffff8b16606087015233608087015260a086015260c085015260e08401528861010084015261012083015285610140830152610160908183015281528061018081011061018082016001600160401b03101761277e576101808101604052519020906136a96141e2565b6136b1614236565b936040519460208601927f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f8452604087015260608601524660808601523060a086015260a0855260c08501948086106001600160401b0387111761277e57856137469560e26042936137409661374e9a6040528151902061190160f01b855260c28201520152209236916127eb565b9061411b565b919091614001565b6033546001600160a01b03918216911681149081613e8b575b5015613e465760009933600052610137602052604060002084600052602052604060002061ffff841660005260205260406000209a60018c015415613e38575b60028c549c42600182015501805461ffff8d1661ffff821603613e24575b5050613a3c575b50506137d93684866127eb565b60008a815260cb60205260409020546001600160a01b0316156139e0578960005260fb602052604060002081516001600160401b03811161277e578b9261382a826138248554612a16565b85613280565b602090601f83116001146139125761390299957ff8e1a15aba9398e019f0b49df1a4fde98ee17ae345cb5f6b5e2c27f5033e8ce760207f3f19ae12b2e27269f8cfcf53b4960a5ac6ba1d714d2c729941e7b20adf54ee679f9d99949761ffff9f9c9761ffff9597806138e49b6138f29f9a600092613907575b50508160011b916000199060031b1c19161790555b604051908152a16040519c8d9c168c521660208b015260408a015260c060608a015260c0890191613557565b918683036080880152613557565b9083820360a08501523397613557565b0390a3565b0151905038806138a3565b908360005260206000209160005b601f19851681106139c55750957ff8e1a15aba9398e019f0b49df1a4fde98ee17ae345cb5f6b5e2c27f5033e8ce760207f3f19ae12b2e27269f8cfcf53b4960a5ac6ba1d714d2c729941e7b20adf54ee679f9d99949761ffff9f9c9761ffff956139029f9b986138e49b6138f29f9a9260019383601f198116106139ac575b505050811b0190556138b8565b015160001960f88460031b161c1916905538808061399f565b8183015184558f965060019093019260209283019201613920565b60405162461bcd60e51b815260206004820152602e60248201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60448201526d32bc34b9ba32b73a103a37b5b2b760911b6064820152608490fd5b3360005261012e60205260406000206001600160401b03881161277e57613a6d88613a678354612a16565b83613280565b876000601f8211600114613dbd57600091613db2575b508860011b906000198a60031b1c19161790555b60005261012f6020526040600020336001600160601b0360a01b82541617905580600052610132602052613acf8a6040600020613522565b604051613adb81612763565b600081523315613d6e576107ad613b9c91613b38613b158e613b1b613b158260005260cb60205260018060a01b0360406000205416151590565b15613fb5565b600090815260cb60205260409020546001600160a01b0316151590565b3360005260cc6020526040600020600181540190558c60005260cb6020526040600020336001600160601b0360a01b8254161790558c3360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a48c33612fbd565b6101746001815401905561ffff82166000526101366020526040600020613bc381546131c7565b905589600052610134602052604060002061ffff831661ffff198254161790556101356020528260406000205533600052610139602052613c088a6040600020613522565b80613c14575b806137cc565b600090815261012f60205260409020546001600160a01b03168015613d2457600081815261013060205260409020548015613d1957905b600080808085855af1613c5c612f8d565b5015613cc5576040514281527f554d9717d841320a49468eba4a7c75a535cf5b26f6063330058afcd6ed492ff460203392a27f16e0c135ad5198482dd8326eb47c9c1a3adef8cb405f743c99a0c1fd414e11606040805160018152426020820152a35b38613c0e565b60405162461bcd60e51b815260206004820152602660248201527f73657453636f72653a20636c61696d20726566657272616c207265776172642060448201526519985a5b195960d21b6064820152608490fd5b5061012d5490613c4b565b5061013160205260406000208054600160401b81101561277e57613d4d9160018201815561350a565b81546001600160a01b0360039290921b91821b19163390911b179055613cbf565b606460405162461bcd60e51b815260206004820152602060248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152fd5b905089013538613a83565b60008381526020812092505b8b601f198c168210613e0c57505089601f19811610613df2575b5050600188811b019055613a97565b8a013560001960038b901b60f8161c191690553880613de3565b60018394602093948493013581550193019101613dc9565b61ffff191661ffff8d1617905538806137c5565b506001610174548c556137a7565b60405162461bcd60e51b815260206004820152601b60248201527f73657453636f72653a20496e76616c6964207369676e617475726500000000006044820152606490fd5b9050151538613767565b60405162461bcd60e51b815260206004820152604660248201527f73657453636f72653a2063616c63756c6174696f6e4d6f64656c2073686f756c60448201527f64206265206c657373207468616e2063616c63756c6174696f6e206d6f64656c6064820152650818dbdd5b9d60d21b608482015260a490fd5b60405162461bcd60e51b8152602060048201526024808201527f73657453636f72653a205369676e6564207472616e73616374696f6e206578706044820152631a5c995960e21b6064820152608490fd5b60405162461bcd60e51b815260206004820152602760248201527f73657453636f72653a2053636f7265206d757374206265206c6573732074686160448201526606e2031303030360cc1b6064820152608490fd5b15613fbc57565b60405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606490fd5b600581101561410557806140125750565b6001810361405f5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606490fd5b600281036140ac5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606490fd5b6003146140b557565b60405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608490fd5b634e487b7160e01b600052602160045260246000fd5b90604181511460001461414957614145916020820151906060604084015193015160001a90614153565b9091565b5050600090600290565b9291907f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083116141d65791608094939160ff602094604051948552168484015260408301526060820152600093849182805260015afa156141c95781516001600160a01b038116156141c3579190565b50600190565b50604051903d90823e3d90fd5b50505050600090600390565b6040516141f281610cce81612a50565b8051908115614202576020012090565b50506101405480156142115790565b507fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47090565b604051600090610143918183549161424d83612a16565b8083526020938484019660019182811690816000146142e45750600114614299575b50505061427e925003826127af565b5190811561428a572090565b50506101415480156142115790565b60009081526000805160206145c683398151915295935091905b8183106142cc57505061427e935082010138808061426f565b855487840185015294850194869450918301916142b3565b9250505061427e94925060ff19168652151560051b82010138808061426f565b600081815260cb6020526040902054614327906001600160a01b031615156129a7565b600081815260209060fb8252604090610cce61434a838320845192838092612b98565b825161435981610cce81612b07565b805191821561459757805161456657505050600084815260cb602052604090205461438e906001600160a01b031615156129a7565b8151916143a58361439e81612b07565b03846127af565b8251156145515784859083967a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000009081811015614542575b50506d04ee2d6d415b85acef810000000080831015614534575b50662386f26fc1000080831015614525575b506305f5e10080831015614516575b5061271080831015614507575b5060648210156144f7575b600a809210156144ed575b600190816021818a019961446061444b8c6127d0565b9b61445889519d8e6127af565b808d526127d0565b8b8b019890601f1901368a37508a0101905b6144b7575b50505050906144ab9461285d94939251958361449c88955180928880890191016125fa565b840191518093868401906125fa565b010380845201826127af565b600019019083906f181899199a1a9b1b9c1cb0b131b232b360811b8282061a8353049182156144e857919082614472565b614477565b9560010195614435565b959060646002910491019561442a565b6004919792049101953861441f565b60089197920491019538614412565b60109197920491019538614403565b8691979204910195386143f1565b919750915004819538806143d7565b9250925050519061456182612763565b815290565b91955091508461458361285d9594519687948680870191016125fa565b82016144ab825180938680850191016125fa565b9550505050505090565b91908110156131ea5760051b0190565b356001600160a01b0381168103612658579056fe90f1fbe211cc96d1ddedecd2113dc32c31d712d12ce1f36d6a07e605dcf7d532a26469706673582212201ceaf600e79f8a63f72bb2df43a229a65c7c796435587157f4e0dd82d0753d9e64736f6c63430008130033
Deployed Bytecode
0x608080604052600436101561001357600080fd5b600090813560e01c90816301ffc9a7146125735750806305eaab4b146122e657806306fdde0314612240578063081812fc14612221578063095ea7b3146120ac5780630f25b13714611ff35780631048fbf814611fd457806323b872dd14611faf5780632b08672f14611ee35780632d0335ab14611ea95780632e1a7d4d14611d725780633938da5914611cce5780633be159ed14611c295780633f4ba83a14611b9457806342842e0e14611b61578063523033aa14610de15780635618923614611b42578063590adabe14611b175780635c975abb14611af45780635ff329af14611a2a578063631c10521461193d5780636352211e1461190c5780636a2e770f146118c357806370a082311461182d578063710b4300146117dd578063715018a6146117805780637a5caab3146117615780637ca40d1c146110285780638456cb5914610fcd57806384b0196e14610e415780638da5cb5b14610e185780638e52c21714610de15780638ee67edb14610d915780638fb6c6f614610d48578063902a859a14610cd557806392c4034414610c8757806395d89b4114610bb657806397f5eda614610b195780639995626614610ae5578063a09bddaa14610ab6578063a0bcfc7f1461090f578063a22cb4651461083b578063a93986b1146107d5578063b7b0ccde146107b6578063b88d4fde1461072c578063bdbbd85b146106c6578063c87b56dd14610692578063cbec2cdb1461066f578063d004b0361461058f578063d241c3291461053a578063db0b2b101461048c578063e985e9c51461043c578063eddd0d9c146103f3578063eef1d20f146103b4578063f2fde38b146103235763fc1ac1d31461028957600080fd5b346103205761029736612822565b602081519101209081156102c457602091815261012f8252604060018060a01b0391205416604051908152f35b60405162461bcd60e51b815260206004820152602e60248201527f67657457616c6c65744279526566657272616c436f64653a20496e76616c696460448201526d20726566657272616c20636f646560901b6064820152608490fd5b80fd5b50346103205760203660031901126103205761033d612642565b610345612906565b6001600160a01b038116156103605761035d9061295e565b80f35b60405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608490fd5b5034610320576040366003190112610320576103ce612642565b6103d6612906565b6001600160a01b0316815261013060205260408120602435905580f35b503461032057602036600319011261032057600435610410612906565b8061013b557f0dfc6eec96b100579d23188487733288387140dea6c20dcf97a742a857b132738280a280f35b50346103205760403660031901126103205760ff604060209261045d612642565b61046561265d565b6001600160a01b03918216835260ce86528383209116825284522054604051911615158152f35b50346103205761049b36612708565b6104a6929192612906565b835b8381106104b3578480f35b610535906001600160a01b03806104d36104ce8489896145a1565b6145b1565b168752602061013a81526040882061ffff861691828a525260408820916001928360ff1982541617905561050b6104ce858a8a6145a1565b167f89260241ebd53b9ff7a3778cb628f41b86fcce20041a1f23c751005663420c7a8980a46131c7565b6104a8565b50346103205760403660031901126103205760ff604060209261055b612642565b6105636126a0565b6001600160a01b03909116825261013a855282822061ffff909116825284522054604051911615158152f35b50346103205760208060031936011261066b576105aa612642565b6101745415610626576001600160a01b03168252610139815260408083209051815480825291845282842090939091849182850191905b85828210610610575050506105f8925003836127af565b61060c60405192828493845283019061289d565b0390f35b85548452600195860195889550930192016105e1565b60405162461bcd60e51b815260048101839052601d60248201527f676574546f6b656e4964733a204e6f20746f6b656e73206d696e7465640000006044820152606490fd5b5080fd5b5034610320578060031936011261032057602061ffff6101335416604051908152f35b50346103205760203660031901126103205761060c6106b2600435614304565b60405191829160208352602083019061261d565b5034610320576106d5366128d1565b916106de612906565b60018060a01b031680845261013f60205261ffff604085209216918285526020528260408520557ff3d990281b2074ce0d470fa6b9bb65b5376fbd7e946d091e47490a06743f496d8480a480f35b503461032057608036600319011261032057610746612642565b61074e61265d565b90606435906044356001600160401b0383116107b257366023840112156107b25761035d9361078a6107ad9436906024816004013591016127eb565b9261079d6107988433612d44565b612c6b565b6107a8838383612e0c565b6130b1565b612d20565b8480fd5b5034610320578060031936011261032057602061013c54604051908152f35b5034610320576107e4366128d1565b916107ed612906565b60018060a01b031680845261013e60205261ffff604085209216918285526020528260408520557fdb0ab24533f4d50ca30cd5978eddbb5a07340c32ff1809f24f6ce598e8eafc398480a480f35b503461032057604036600319011261032057610855612642565b6024359081151580920361090b576001600160a01b0316903382146108c65733835260ce602052604083208284526020526040832060ff1981541660ff83161790556040519081527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3160203392a380f35b60405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606490fd5b8280fd5b50346103205761091e36612822565b90610927612906565b8151916001600160401b038311610aa2576101756109458154612a16565b601f8111610a4a575b5060209081601f86116001146109c9579480859661099296916109be575b508160011b916000199060031b1c19161790555b604051928284809451938492016125fa565b81010390207f9bda31c5daf938016d59248ce284119fc191a83aabdfb40b4405397af0a9c97b8280a280f35b90508401513861096c565b8185527f94b016e6b5eafb28c9d47c3523378ec087cc0ead8b7eff2840605504c1f1ac6f90601f198716865b818110610a335750918791610992979860019410610a1a575b5050811b019055610980565b86015160001960f88460031b161c191690553880610a0e565b91928560018192868a0151815501940192016109f5565b610a92908285527f94b016e6b5eafb28c9d47c3523378ec087cc0ead8b7eff2840605504c1f1ac6f601f870160051c81019160208810610a98575b601f0160051c019061316c565b3861094e565b9091508190610a85565b634e487b7160e01b82526041600452602482fd5b50346103205760203660031901126103205761ffff604060209260043581526101348452205416604051908152f35b503461032057602036600319011261032057604060209161ffff610b076126c2565b16815261013683522054604051908152f35b503461032057606036600319011261032057610b33612642565b61060c60243591610b426126b1565b6001600160a01b039190911680855261013760209081526040808720868852825280872061ffff948516808952908352968190206002810154600182015491548351919096168152928301528101929092526060820194909452608081019290925260a082019290925290819060c0820190565b5034610320578060031936011261032057604051908060ca54610bd881612a16565b80855291600191808316908115610c5d5750600114610c02575b61060c856106b2818703826127af565b925060ca83527f42d72674974f694b5f5159593243114d38a5c39c89d6b62fee061ff523240ee15b828410610c455750505081016020016106b28261060c610bf2565b80546020858701810191909152909301928101610c2a565b86955061060c969350602092506106b294915060ff191682840152151560051b8201019293610bf2565b50346103205760203660031901126103205761060c90610cce906106b2906040906001600160a01b03610cb8612642565b16815261012e6020522060405192838092612b98565b03826127af565b503461032057604036600319011261032057610cef6126c2565b610cf76126a0565b610cff612906565b61ffff8091169081845261013d602052604084209216918261ffff198254161790557fc3ae431c8f115f13156aad0dc084ce6c552f8ae33c5dda5c7d7dc7e450f4255e8380a380f35b503461032057602036600319011261032057600435610d65612906565b8061012d557f14ea2ed84c55d689785f43bcf8e2a56a3bd24dd6fc33946dfd7f7b5bdb5f03218280a280f35b5034610320576040366003190112610320576040602091610db0612642565b610db86126a0565b6001600160a01b03909116825261013e845282822061ffff909116825283522054604051908152f35b503461032057602036600319011261032057602090604061ffff9182610e056126c2565b16815261013d8452205416604051908152f35b50346103205780600319360112610320576033546040516001600160a01b039091168152602090f35b5034610320578060031936011261032057610140541580610fc2575b15610f8557604051610e7281610cce81612a50565b604051826101438054610e8481612a16565b80855291600191808316908115610f595750600114610f11575b610ee48661060c8988610eb3818a03826127af565b610ef260405191610ec383612763565b838352604051968796600f60f81b885260e0602089015260e088019061261d565b90868203604088015261261d565b9146606086015230608086015260a085015283820360c085015261289d565b86528592506000805160206145c68339815191525b828410610f4157505050810160200181610eb361060c610e9e565b80546020858701810191909152909301928101610f26565b60ff191660208088019190915293151560051b86019093019350849250610eb3915061060c9050610e9e565b60405162461bcd60e51b81526020600482015260156024820152741152540dcc4c8e88155b9a5b9a5d1a585b1a5e9959605a1b6044820152606490fd5b506101415415610e5d565b5034610320578060031936011261032057610fe6612906565b610fee613183565b600160ff1960655416176065557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586020604051338152a180f35b5034610320576040366003190112610320576110426126a0565b815460ff91828260081c161591828093611755575b801561173f575b156116e35760ff1981166001178555826116d2575b5060405161108081612794565b600a8152694e6f6d697353636f726560b01b602082015261109f613200565b906110b885875460081c166110b381613220565b613220565b8051906001600160401b0382116115065781906110d660c954612a16565b601f8111611684575b50602090601f83116001146116015788926115f6575b50508160011b916000199060031b1c19161760c9555b8051906001600160401b03821161141457819061112960ca54612a16565b601f81116115a8575b50602090601f831160011461152557879261151a575b50508160011b916000199060031b1c19161760ca555b611166613200565b6040519061117382612794565b6003825262302e3960e81b602083015261119685875460081c166110b381613220565b80516001600160401b0381116115065780610142926111b58454612a16565b601f81116114b9575b50602090601f8311600114611433578992611428575b50508160011b916000199060031b1c19161790555b80516001600160401b03811161141457610143916112078354612a16565b601f81116113d9575b50602090601f83116001146113655761ffff9493929188918361135a575b50508160011b916000199060031b1c19161790555b8461014055846101415561126084865460081c166110b381613220565b6112693361295e565b61127d8554948560081c166110b381613220565b60ff1960655416606555610174600181540190556004358061013b5561013c551680156112ef576101339061ffff198254161790556112ba575080f35b61ff00191681557f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb3847402498602060405160018152a180f35b60405162461bcd60e51b815260206004820152603c60248201527f636f6e7374727563746f723a20696e697469616c43616c634d6f64656c73436f60448201527f756e742073686f756c642062652067726561746572207468616e2030000000006064820152608490fd5b01519050388061122e565b8388526000805160206145c68339815191529190601f198416895b8181106113c1575091600193918561ffff98979694106113a8575b505050811b019055611243565b015160001960f88460031b161c1916905538808061139b565b92936020600181928786015181550195019301611380565b61140e908489526000805160206145c6833981519152601f850160051c81019160208610610a9857601f0160051c019061316c565b38611210565b634e487b7160e01b86526041600452602486fd5b0151905038806111d4565b92508389527f7917ad5f1bd6fa6d4f9128143f89bcba30c5b503e76ecd2dd7562ddf9706ae199089935b601f198416851061149e576001945083601f19811610611485575b505050811b0190556111e9565b015160001960f88460031b161c19169055388080611478565b8181015183556020948501946001909301929091019061145d565b61150090858b527f7917ad5f1bd6fa6d4f9128143f89bcba30c5b503e76ecd2dd7562ddf9706ae19601f850160051c81019160208610610a9857601f0160051c019061316c565b386111be565b634e487b7160e01b87526041600452602487fd5b015190503880611148565b60ca88527f42d72674974f694b5f5159593243114d38a5c39c89d6b62fee061ff523240ee19250601f198416885b8181106115905750908460019594939210611577575b505050811b0160ca5561115e565b015160001960f88460031b161c19169055388080611569565b92936020600181928786015181550195019301611553565b6115f09060ca89527f42d72674974f694b5f5159593243114d38a5c39c89d6b62fee061ff523240ee1601f850160051c81019160208610610a9857601f0160051c019061316c565b38611132565b0151905038806110f5565b60c989527f66be4f155c5ef2ebd3772b228f2f00681e4ed5826cdb3b1943cc11ad15ad1d289250601f198416895b81811061166c5750908460019594939210611653575b505050811b0160c95561110b565b015160001960f88460031b161c19169055388080611645565b9293602060018192878601518155019501930161162f565b6116cc9060c98a527f66be4f155c5ef2ebd3772b228f2f00681e4ed5826cdb3b1943cc11ad15ad1d28601f850160051c81019160208610610a9857601f0160051c019061316c565b386110df565b61ffff191661010117845538611073565b60405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608490fd5b50303b15801561105e575060018482161461105e565b50600184821610611057565b5034610320578060031936011261032057602061013b54604051908152f35b5034610320578060031936011261032057611799612906565b603380546001600160a01b0319811690915581906001600160a01b03167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08280a380f35b50346103205760403660031901126103205760406020916117fc612642565b6118046126a0565b6001600160a01b03909116825261013f845282822061ffff909116825283522054604051908152f35b5034610320576020366003190112610320576001600160a01b0361184f612642565b16801561186c57816040916020935260cc83522054604051908152f35b60405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608490fd5b5034610320576020366003190112610320576004356118e0612906565b8061013c557f1a1fdd6048edb5d9cc6acd350eadec9121194106777efa0f11794b3f9e62955b8280a280f35b503461032057602036600319011261032057602061192b6004356129f3565b6040516001600160a01b039091168152f35b50346103205761194c36612822565b80516020809201208252610132815260408220604051808284829454938481520190865284862092865b86828210611a145750505061198d925003826127af565b8051926119998461312c565b936119a760405195866127af565b8085526119b6601f199161312c565b0136848601375b81518110156119fe57806119dd6119d76119f993856131d6565b516129f3565b6119e782876131d6565b6001600160a01b0390911690526131c7565b6119bd565b505061060c604051928284938452830190612860565b8554845260019586019587955093019201611976565b50346103205760208060031936011261066b57611a45612642565b6001600160a01b039081168352610130825260408320549092908015611ae957905b33815261012e8352610cce611a856040832060405192838092612b98565b83815191012081526101318352604081209360405191828587549182815201968252858220915b818110611ad35786611acb8787611ac5818d03826127af565b51613143565b604051908152f35b8254841688529686019660019283019201611aac565b5061012d5490611a67565b5034610320578060031936011261032057602060ff606554166040519015158152f35b5034610320576020366003190112610320576040602091600435815261013583522054604051908152f35b5034610320578060031936011261032057602061017454604051908152f35b50346103205761035d6107ad611b76366126d3565b9060405192611b8484612763565b86845261079d6107988433612d44565b5034610320578060031936011261032057611bad612906565b60655460ff811615611bed5760ff19166065557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6020604051338152a180f35b60405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606490fd5b503461032057602090816003193601126103205761060c600435611c4c816129f3565b90835261013484526040808420546101358652818520546001600160a01b039093168086526101378752828620848752875282862061ffff92831680885297529482902060028101546001820154915484519190931681526020810191909152918201526060810194909452608084015260a0830191909152819060c0820190565b503461032057611cdd36612708565b9091611ce7612906565b835b838110611cf4578480f35b611d6d90856001600160a01b0380611d106104ce858a896145a1565b16825260209061013a82526040832061ffff881692838552526040832060ff198154169055611d436104ce858a896145a1565b167f89260241ebd53b9ff7a3778cb628f41b86fcce20041a1f23c751005663420c7a8380a46131c7565b611ce9565b503461032057602036600319011261032057600435611d8f612906565b478015611e64578111611e1f578180808084335af1611dac612f8d565b5015611dda57337f7fcf532c15f0a6db0bd6d0e038bea71d30d808c7d98cb3bf7268a95bf5081b658380a380f35b60405162461bcd60e51b815260206004820152601b60248201527f5769746864726177616c3a207472616e73666572206661696c656400000000006044820152606490fd5b60405162461bcd60e51b815260206004820152601e60248201527f5769746864726177616c3a20496e73756666696369656e742066756e647300006044820152606490fd5b60405162461bcd60e51b815260206004820152601e60248201527f5769746864726177616c3a204e6f2066756e647320617661696c61626c6500006044820152606490fd5b5034610320576020366003190112610320576020906040906001600160a01b03611ed1612642565b16815261013883522054604051908152f35b50346103205760203660031901126103205761ffff611f006126c2565b611f08612906565b168015611f4457610133805461ffff1916821790557f279cbae98d21cc94b9c9de893c44ac632afa05edb3f83372abad1c412673959e8280a280f35b60405162461bcd60e51b815260206004820152603c60248201527f73657443616c634d6f64656c73436f756e743a2063616c634d6f64656c73436f60448201527f756e742073686f756c642062652067726561746572207468616e2030000000006064820152608490fd5b50346103205761035d611fc1366126d3565b91611fcf6107988433612d44565b612e0c565b5034610320578060031936011261032057602061012d54604051908152f35b50610120366003190112610320576001600160401b0360043581811161090b57612021903690600401612673565b9061202a6126a0565b916120336126b1565b906084358581116120a85761204c903690600401612673565b9160c4358781116120a457612065903690600401612673565b93909260e4359889116120a05761208361035d993690600401612673565b97909661208e613183565b610104359960a43595606435936132bc565b8980fd5b8880fd5b8680fd5b5034610320576040366003190112610320576120c6612642565b602435906001600160a01b0380806120dd856129f3565b169216918083146121d2578033149081156121b1575b50156121465782845260cd6020526040842080546001600160a01b0319168317905561211e836129f3565b167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258480a480f35b60405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c0000006064820152608490fd5b9050845260ce6020526040842033855260205260ff604085205416386120f3565b60405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608490fd5b503461032057602036600319011261032057602061192b600435612c2d565b5034610320578060031936011261032057604051908060c95461226281612a16565b80855291600191808316908115610c5d575060011461228b5761060c856106b2818703826127af565b925060c983527f66be4f155c5ef2ebd3772b228f2f00681e4ed5826cdb3b1943cc11ad15ad1d285b8284106122ce5750505081016020016106b28261060c610bf2565b805460208587018101919091529093019281016122b3565b50346103205780600319360112610320576122ff613183565b338152610130602090815260408220548015612569575b61012e8252610cce6123316040852060405192838092612b98565b82815191012091828452610131808252604085209260405180948591858254918281520191895285892090895b8782821061254957505050506123c3929161237a9103866127af565b7f10e5dd73c78f20ac02a01872a45cab5e858e67f5b51725e641fe2af492967abd6123b5865196604051918291604083526040830190612860565b42888301520390a184613143565b9384156124f15747851161249b578552815260408420805485825580612482575b50508380808086335af16123f6612f8d565b50156124305760405191825242908201527f16e0c135ad5198482dd8326eb47c9c1a3adef8cb405f743c99a0c1fd414e116060403392a380f35b6084906040519062461bcd60e51b82526004820152602560248201527f636c61696d526566657272616c526577617264733a207472616e736665722066604482015264185a5b195960da1b6064820152fd5b6124949186528286209081019061316c565b38806123e4565b60405162461bcd60e51b815260048101849052602860248201527f636c61696d526566657272616c526577617264733a20496e73756666696369656044820152676e742066756e647360c01b6064820152608490fd5b60405162461bcd60e51b815260048101849052602a60248201527f636c61696d526566657272616c526577617264733a204e6f207265776172647360448201526920617661696c61626c6560b01b6064820152608490fd5b83546001600160a01b03168552899550909301926001928301920161235e565b5061012d54612316565b90503461066b57602036600319011261066b5760043563ffffffff60e01b811680910361090b5760209250632483248360e11b81149081156125b7575b5015158152f35b6380ac58cd60e01b8114915081156125e9575b81156125d8575b50386125b0565b6301ffc9a760e01b149050386125d1565b635b5e139f60e01b811491506125ca565b60005b83811061260d5750506000910152565b81810151838201526020016125fd565b90602091612636815180928185528580860191016125fa565b601f01601f1916010190565b600435906001600160a01b038216820361265857565b600080fd5b602435906001600160a01b038216820361265857565b9181601f84011215612658578235916001600160401b038311612658576020838186019501011161265857565b6024359061ffff8216820361265857565b6044359061ffff8216820361265857565b6004359061ffff8216820361265857565b6060906003190112612658576001600160a01b0390600435828116810361265857916024359081168103612658579060443590565b906040600319830112612658576004356001600160401b039283821161265857806023830112156126585781600401359384116126585760248460051b8301011161265857602401919060243561ffff811681036126585790565b602081019081106001600160401b0382111761277e57604052565b634e487b7160e01b600052604160045260246000fd5b604081019081106001600160401b0382111761277e57604052565b90601f801991011681019081106001600160401b0382111761277e57604052565b6001600160401b03811161277e57601f01601f191660200190565b9291926127f7826127d0565b9161280560405193846127af565b829481845281830111612658578281602093846000960137010152565b602060031982011261265857600435906001600160401b03821161265857806023830112156126585781602461285d936004013591016127eb565b90565b90815180825260208080930193019160005b828110612880575050505090565b83516001600160a01b031685529381019392810192600101612872565b90815180825260208080930193019160005b8281106128bd575050505090565b8351855293810193928101926001016128af565b6060906003190112612658576004356001600160a01b0381168103612658579060243561ffff81168103612658579060443590565b6033546001600160a01b0316330361291a57565b606460405162461bcd60e51b815260206004820152602060248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152fd5b603380546001600160a01b039283166001600160a01b0319821681179092559091167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0600080a3565b156129ae57565b60405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e20494400000000000000006044820152606490fd5b600090815260cb60205260409020546001600160a01b031661285d8115156129a7565b90600182811c92168015612a46575b6020831014612a3057565b634e487b7160e01b600052602260045260246000fd5b91607f1691612a25565b90600091610142908154612a6381612a16565b80835292600191808316908115612ae25750600114612a83575b50505050565b90929394506000527f7917ad5f1bd6fa6d4f9128143f89bcba30c5b503e76ecd2dd7562ddf9706ae19916000925b848410612aca5750506020925001019038808080612a7d565b80546020858501810191909152909301928101612ab1565b92505050602093945060ff929192191683830152151560051b01019038808080612a7d565b90600091610175908154612b1a81612a16565b80835292600191808316908115612ae25750600114612b395750505050565b90929394506000527f94b016e6b5eafb28c9d47c3523378ec087cc0ead8b7eff2840605504c1f1ac6f916000925b848410612b805750506020925001019038808080612a7d565b80546020858501810191909152909301928101612b67565b9060009291805491612ba983612a16565b918282526001938481169081600014612c0a5750600114612bca5750505050565b90919394506000526020928360002092846000945b838610612bf6575050505001019038808080612a7d565b805485870183015294019385908201612bdf565b9294505050602093945060ff191683830152151560051b01019038808080612a7d565b600081815260cb6020526040902054612c50906001600160a01b031615156129a7565b600090815260cd60205260409020546001600160a01b031690565b15612c7257565b60405162461bcd60e51b815260206004820152602d60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201526c1c881bdc88185c1c1c9bdd9959609a1b6064820152608490fd5b60809060208152603260208201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60608201520190565b15612d2757565b60405162461bcd60e51b815280612d4060048201612ccd565b0390fd5b906001600160a01b038080612d58846129f3565b16931691838314938415612d8b575b508315612d75575b50505090565b612d8191929350612c2d565b1614388080612d6f565b90935060005260ce60205260406000208260005260205260ff604060002054169238612d67565b15612db957565b60405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608490fd5b90612e3491612e1a846129f3565b6001600160a01b0393918416928492909183168414612db2565b16918215612f3c5781612ed15781612e5691612e4f866129f3565b1614612db2565b7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600084815260cd602052604081206001600160601b0360a01b9081815416905583825260cc602052604082206000198154019055848252604082206001815401905585825260cb60205284604083209182541617905580a4565b60405162461bcd60e51b815260206004820152603e60248201527f4e6f6e5472616e736665727261626c65455243373231546f6b656e3a204e6f6d60448201527f69732073636f72652063616e2774206265207472616e736665727265642e00006064820152608490fd5b60405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608490fd5b3d15612fb8573d90612f9e826127d0565b91612fac60405193846127af565b82523d6000602084013e565b606090565b9091600091803b156130a8576130086020918493604051948580948193630a85bd0160e11b9a8b8452336004850152846024850152604484015260806064840152608483019061261d565b03926001600160a01b03165af190829082613060575b50506130525761302c612f8d565b8051908161304d5760405162461bcd60e51b815280612d4060048201612ccd565b602001fd5b6001600160e01b0319161490565b909192506020813d82116130a0575b8161307c602093836127af565b8101031261066b5751906001600160e01b031982168203610320575090388061301e565b3d915061306f565b50505050600190565b91926000929190813b15613122576020916131079185604051958680958194630a85bd0160e11b9b8c845233600485015260018060a01b038095166024850152604484015260806064840152608483019061261d565b0393165af1908290826130605750506130525761302c612f8d565b5050505050600190565b6001600160401b03811161277e5760051b60200190565b8181029291811591840414171561315657565b634e487b7160e01b600052601160045260246000fd5b818110613177575050565b6000815560010161316c565b60ff6065541661318f57565b60405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606490fd5b60001981146131565760010190565b80518210156131ea5760209160051b010190565b634e487b7160e01b600052603260045260246000fd5b6040519061320d82612794565b60048252634e4d535360e01b6020830152565b1561322757565b60405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201526a6e697469616c697a696e6760a81b6064820152608490fd5b9190601f811161328f57505050565b6132ba926000526020600020906020601f840160051c83019310610a9857601f0160051c019061316c565b565b9b9a999897969594939291903360005261013f602052604060002061ffff84166000526020526040600020546000908d613502575b33600052610137602052604060002089600052602052604060002061ffff861660005260205260406000203360005261013e80602052604060002061ffff88166000526020526040600020546134d9575b5060010154613425575034148061341c575b80156133f3575b80156133e7575b80156133bc575b15613377576132ba9c613578565b60405162461bcd60e51b815260206004820152601e60248201527f4d696e74206665653a2077726f6e67206d696e74206665652076616c756500006044820152606490fd5b5061ffff831660005261013660205260406000205461013d60205261ffff6040600020541611613369565b5061013b543414613362565b503360005261013a602052604060002061ffff841660005260205260ff6040600020541661335b565b50341515613354565b90503414806134d0575b80156134a7575b801561349b575b1561344b576132ba9c613578565b60405162461bcd60e51b815260206004820152602260248201527f557064617465206665653a2077726f6e6720757064617465206665652076616c604482015261756560f01b6064820152608490fd5b5061013c54341461343d565b503360005261013a602052604060002061ffff841660005260205260ff60406000205416613436565b5034151561342f565b90925033600052602052604060002061ffff861660005260205260016040600020549290613342565b8d91506132f1565b80548210156131ea5760005260206000200190600090565b8054600160401b81101561277e5761353f9160018201815561350a565b819291549060031b91821b91600019901b1916179055565b908060209392818452848401376000828201840152601f01601f1916010190565b909b9a98969391999b95949561271061ffff8c1611613f6057824211613f0f5761ffff610133541661ffff85161015613e95578a8d93366135ba908b8d6127eb565b805190602001209d8e958d36906135d0926127eb565b8051906020012095336000526101386020526040600020928354936135f4856131c7565b9055613601368c8e6127eb565b80519060200120906040519460208601967fc11af91045266b8c5df4fb4c0d475785635da25fd18ae4bb0d9b02415d5f93bd885261ffff16604087015261ffff8b16606087015233608087015260a086015260c085015260e08401528861010084015261012083015285610140830152610160908183015281528061018081011061018082016001600160401b03101761277e576101808101604052519020906136a96141e2565b6136b1614236565b936040519460208601927f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f8452604087015260608601524660808601523060a086015260a0855260c08501948086106001600160401b0387111761277e57856137469560e26042936137409661374e9a6040528151902061190160f01b855260c28201520152209236916127eb565b9061411b565b919091614001565b6033546001600160a01b03918216911681149081613e8b575b5015613e465760009933600052610137602052604060002084600052602052604060002061ffff841660005260205260406000209a60018c015415613e38575b60028c549c42600182015501805461ffff8d1661ffff821603613e24575b5050613a3c575b50506137d93684866127eb565b60008a815260cb60205260409020546001600160a01b0316156139e0578960005260fb602052604060002081516001600160401b03811161277e578b9261382a826138248554612a16565b85613280565b602090601f83116001146139125761390299957ff8e1a15aba9398e019f0b49df1a4fde98ee17ae345cb5f6b5e2c27f5033e8ce760207f3f19ae12b2e27269f8cfcf53b4960a5ac6ba1d714d2c729941e7b20adf54ee679f9d99949761ffff9f9c9761ffff9597806138e49b6138f29f9a600092613907575b50508160011b916000199060031b1c19161790555b604051908152a16040519c8d9c168c521660208b015260408a015260c060608a015260c0890191613557565b918683036080880152613557565b9083820360a08501523397613557565b0390a3565b0151905038806138a3565b908360005260206000209160005b601f19851681106139c55750957ff8e1a15aba9398e019f0b49df1a4fde98ee17ae345cb5f6b5e2c27f5033e8ce760207f3f19ae12b2e27269f8cfcf53b4960a5ac6ba1d714d2c729941e7b20adf54ee679f9d99949761ffff9f9c9761ffff956139029f9b986138e49b6138f29f9a9260019383601f198116106139ac575b505050811b0190556138b8565b015160001960f88460031b161c1916905538808061399f565b8183015184558f965060019093019260209283019201613920565b60405162461bcd60e51b815260206004820152602e60248201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60448201526d32bc34b9ba32b73a103a37b5b2b760911b6064820152608490fd5b3360005261012e60205260406000206001600160401b03881161277e57613a6d88613a678354612a16565b83613280565b876000601f8211600114613dbd57600091613db2575b508860011b906000198a60031b1c19161790555b60005261012f6020526040600020336001600160601b0360a01b82541617905580600052610132602052613acf8a6040600020613522565b604051613adb81612763565b600081523315613d6e576107ad613b9c91613b38613b158e613b1b613b158260005260cb60205260018060a01b0360406000205416151590565b15613fb5565b600090815260cb60205260409020546001600160a01b0316151590565b3360005260cc6020526040600020600181540190558c60005260cb6020526040600020336001600160601b0360a01b8254161790558c3360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a48c33612fbd565b6101746001815401905561ffff82166000526101366020526040600020613bc381546131c7565b905589600052610134602052604060002061ffff831661ffff198254161790556101356020528260406000205533600052610139602052613c088a6040600020613522565b80613c14575b806137cc565b600090815261012f60205260409020546001600160a01b03168015613d2457600081815261013060205260409020548015613d1957905b600080808085855af1613c5c612f8d565b5015613cc5576040514281527f554d9717d841320a49468eba4a7c75a535cf5b26f6063330058afcd6ed492ff460203392a27f16e0c135ad5198482dd8326eb47c9c1a3adef8cb405f743c99a0c1fd414e11606040805160018152426020820152a35b38613c0e565b60405162461bcd60e51b815260206004820152602660248201527f73657453636f72653a20636c61696d20726566657272616c207265776172642060448201526519985a5b195960d21b6064820152608490fd5b5061012d5490613c4b565b5061013160205260406000208054600160401b81101561277e57613d4d9160018201815561350a565b81546001600160a01b0360039290921b91821b19163390911b179055613cbf565b606460405162461bcd60e51b815260206004820152602060248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152fd5b905089013538613a83565b60008381526020812092505b8b601f198c168210613e0c57505089601f19811610613df2575b5050600188811b019055613a97565b8a013560001960038b901b60f8161c191690553880613de3565b60018394602093948493013581550193019101613dc9565b61ffff191661ffff8d1617905538806137c5565b506001610174548c556137a7565b60405162461bcd60e51b815260206004820152601b60248201527f73657453636f72653a20496e76616c6964207369676e617475726500000000006044820152606490fd5b9050151538613767565b60405162461bcd60e51b815260206004820152604660248201527f73657453636f72653a2063616c63756c6174696f6e4d6f64656c2073686f756c60448201527f64206265206c657373207468616e2063616c63756c6174696f6e206d6f64656c6064820152650818dbdd5b9d60d21b608482015260a490fd5b60405162461bcd60e51b8152602060048201526024808201527f73657453636f72653a205369676e6564207472616e73616374696f6e206578706044820152631a5c995960e21b6064820152608490fd5b60405162461bcd60e51b815260206004820152602760248201527f73657453636f72653a2053636f7265206d757374206265206c6573732074686160448201526606e2031303030360cc1b6064820152608490fd5b15613fbc57565b60405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606490fd5b600581101561410557806140125750565b6001810361405f5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606490fd5b600281036140ac5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606490fd5b6003146140b557565b60405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608490fd5b634e487b7160e01b600052602160045260246000fd5b90604181511460001461414957614145916020820151906060604084015193015160001a90614153565b9091565b5050600090600290565b9291907f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083116141d65791608094939160ff602094604051948552168484015260408301526060820152600093849182805260015afa156141c95781516001600160a01b038116156141c3579190565b50600190565b50604051903d90823e3d90fd5b50505050600090600390565b6040516141f281610cce81612a50565b8051908115614202576020012090565b50506101405480156142115790565b507fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47090565b604051600090610143918183549161424d83612a16565b8083526020938484019660019182811690816000146142e45750600114614299575b50505061427e925003826127af565b5190811561428a572090565b50506101415480156142115790565b60009081526000805160206145c683398151915295935091905b8183106142cc57505061427e935082010138808061426f565b855487840185015294850194869450918301916142b3565b9250505061427e94925060ff19168652151560051b82010138808061426f565b600081815260cb6020526040902054614327906001600160a01b031615156129a7565b600081815260209060fb8252604090610cce61434a838320845192838092612b98565b825161435981610cce81612b07565b805191821561459757805161456657505050600084815260cb602052604090205461438e906001600160a01b031615156129a7565b8151916143a58361439e81612b07565b03846127af565b8251156145515784859083967a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000009081811015614542575b50506d04ee2d6d415b85acef810000000080831015614534575b50662386f26fc1000080831015614525575b506305f5e10080831015614516575b5061271080831015614507575b5060648210156144f7575b600a809210156144ed575b600190816021818a019961446061444b8c6127d0565b9b61445889519d8e6127af565b808d526127d0565b8b8b019890601f1901368a37508a0101905b6144b7575b50505050906144ab9461285d94939251958361449c88955180928880890191016125fa565b840191518093868401906125fa565b010380845201826127af565b600019019083906f181899199a1a9b1b9c1cb0b131b232b360811b8282061a8353049182156144e857919082614472565b614477565b9560010195614435565b959060646002910491019561442a565b6004919792049101953861441f565b60089197920491019538614412565b60109197920491019538614403565b8691979204910195386143f1565b919750915004819538806143d7565b9250925050519061456182612763565b815290565b91955091508461458361285d9594519687948680870191016125fa565b82016144ab825180938680850191016125fa565b9550505050505090565b91908110156131ea5760051b0190565b356001600160a01b0381168103612658579056fe90f1fbe211cc96d1ddedecd2113dc32c31d712d12ce1f36d6a07e605dcf7d532a26469706673582212201ceaf600e79f8a63f72bb2df43a229a65c7c796435587157f4e0dd82d0753d9e64736f6c63430008130033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 31 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.