Source Code
Overview
ETH Balance
ETH Value
$0.00| Transaction Hash |
|
Block
|
From
|
To
|
|||||
|---|---|---|---|---|---|---|---|---|---|
Latest 25 internal transactions (View All)
Advanced mode:
| Parent Transaction Hash | Block | From | To | |||
|---|---|---|---|---|---|---|
| 28216704 | 42 hrs ago | 0 ETH | ||||
| 28091214 | 4 days ago | 0 ETH | ||||
| 28043276 | 5 days ago | 0.0007 ETH | ||||
| 28043154 | 5 days ago | 0 ETH | ||||
| 28042784 | 5 days ago | 0 ETH | ||||
| 27743101 | 12 days ago | 0 ETH | ||||
| 27694425 | 13 days ago | 0 ETH | ||||
| 27628624 | 15 days ago | 0 ETH | ||||
| 27601702 | 16 days ago | 0 ETH | ||||
| 27488148 | 18 days ago | 0 ETH | ||||
| 27480353 | 18 days ago | 0 ETH | ||||
| 27470126 | 19 days ago | 0 ETH | ||||
| 27467209 | 19 days ago | 0 ETH | ||||
| 27429334 | 20 days ago | 0 ETH | ||||
| 27414007 | 20 days ago | 0 ETH | ||||
| 27350035 | 22 days ago | 0 ETH | ||||
| 27318679 | 23 days ago | 0 ETH | ||||
| 27279760 | 24 days ago | 0 ETH | ||||
| 27204443 | 26 days ago | 0 ETH | ||||
| 27173898 | 27 days ago | 0 ETH | ||||
| 27170938 | 27 days ago | 0 ETH | ||||
| 27161200 | 27 days ago | 0 ETH | ||||
| 27137932 | 28 days ago | 0 ETH | ||||
| 27129272 | 28 days ago | 0 ETH | ||||
| 27098802 | 29 days ago | 0 ETH |
Cross-Chain Transactions
Loading...
Loading
Contract Name:
NomisScore
Compiler Version
v0.8.21+commit.d9974bed
Optimization Enabled:
Yes with 200 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity 0.8.21; import "@openzeppelin/contracts-upgradeable/utils/cryptography/EIP712Upgradeable.sol"; import "@openzeppelin/contracts-upgradeable/token/ERC721/extensions/ERC721URIStorageUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/utils/cryptography/ECDSAUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/utils/CountersUpgradeable.sol"; import "./INomisONFT.sol"; /////////////////////////////////////////////////////////////// // ___ __ ______ ___ __ __ ________ ______ // // /__/\ /__/\ /_____/\ /__//_//_/\ /_______/\/_____/\ // // \::\_\\ \ \\:::_ \ \\::\| \| \ \ \__.::._\/\::::_\/_ // // \:. `-\ \ \\:\ \ \ \\:. \ \ \::\ \ \:\/___/\ // // \:. _ \ \\:\ \ \ \\:.\-/\ \ \ _\::\ \__\_::._\:\ // // \. \`-\ \ \\:\_\ \ \\. \ \ \ \/__\::\__/\ /____\:\ // // \__\/ \__\/ \_____\/ \__\/ \__\/\________\/ \_____\/ // // // /////////////////////////////////////////////////////////////// /** * @title NomisScore * @author Nomis Labs * @dev The NomisScore contract is an ERC721 token contract with additional functionality for managing scores. * @custom:security-contact [email protected] */ contract NomisScore is ERC721URIStorageUpgradeable, OwnableUpgradeable, PausableUpgradeable, EIP712Upgradeable { using CountersUpgradeable for CountersUpgradeable.Counter; CountersUpgradeable.Counter private _tokenIds; /*######################### ## Structs ## ##########################*/ /** * @dev The Score struct represents a user's score. */ struct Score { uint256 tokenId; uint256 updated; uint16 value; } /*######################### ## Variables ## ##########################*/ /** * @notice The NomisONFT contract address. */ address public nomisONFT; string private _baseUri; uint16 private _calcModelsCount; uint256 private _mintFee; uint256 private _updateFee; uint256 private _referralReward; /*######################### ## 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 addresses with scoring calculation model to whitelist. */ mapping(address => mapping(uint16 => bool)) public whitelist; /** * @dev A mapping of calculation model to free mint count. */ mapping(uint16 => uint16) public calculationModelToFreeMintCount; /** * @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))) private _score; /** * @dev A mapping of addresses to nonces for replay protection. */ mapping(address => uint256) private _nonce; /** * @dev A mapping of addresses to referral codes (string). */ mapping(address => string) private _walletToReferralCode; /** * @dev A mapping of referrer codes (bytes32) to wallets. */ mapping(bytes32 => address) private _referralCodeToWallet; /** * @dev A mapping of token ids of owners who referred by referrer code. */ mapping(bytes32 => uint256[]) private _referrerCodeToTokenIds; /** * @dev The individual mint fee value for each address. */ mapping(address => mapping(uint16 => uint256)) private _individualMintFee; /** * @dev The individual update fee value for each address. */ mapping(address => mapping(uint16 => uint256)) private _individualUpdateFee; /** * @dev The individual rewards per referral value for each address. */ mapping(address => uint256) private _individualReward; /** * @dev A mapping of wallet to its token ids. */ mapping(address => uint256[]) private _walletToTokenIds; /** * @dev A mapping of not claimed referrals to referer code */ mapping(bytes32 => address[]) public _claimableReferralWallets; /*######################### ## 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. * Requirements: * The fee passed must be equal to the current mint or update fee set. */ modifier equalsFee(uint16 calcModel, uint256 chainId) { address _wallet = msg.sender; uint256 _fee = msg.value; // check update fee uint256 walletUpdateFee = _individualUpdateFee[_wallet][calcModel]; uint256 walletMintFee = _individualMintFee[_wallet][calcModel]; Score storage scoreStruct = _score[_wallet][chainId][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 score signer is changed. * @param previousSigner The address of the previous score signer. * @param newSigner The address of the new score signer. */ event ScoreSignerChanged( address indexed previousSigner, address indexed newSigner ); /** * @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 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 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 ); /** * @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 referral reward is changed. * @param referralReward The new referral reward. */ event ChangedReferralReward(uint256 indexed referralReward); /** * @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 ); /** * @dev Emitted when the base URI is changed. * @param baseUri The new base URI. */ event ChangedBaseURI(string indexed baseUri); /** * Emitted when the calculation models count is changed. */ event ChangedCalculationModelsCount(uint256 indexed calcModelsCount); /*######################### ## Constructor ## ##########################*/ /** * @notice One-shot reinitializer for restoring the owner. * Runs once during upgrade (via upgradeAndCall), then permanently closed. * Attention: select a reinitializer version that has NOT been used yet (e.g., 2 or 3). * @param newOwner The address of the new owner. * @param newScoreSigner The address of the new score signer. */ function __NomisScoreAdminPatch_init(address newOwner, address newScoreSigner) external reinitializer(3) { require(newOwner != address(0), "Owner: zero"); require(newScoreSigner != address(0), "Signer: zero"); _transferOwnership(newOwner); _setScoreSigner(newScoreSigner); } /** * @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.8"); __Ownable_init(); _tokenIds.increment(); _mintFee = initialFee; _updateFee = initialFee; require( initialCalcModelsCount > 0, "constructor: initialCalcModelsCount should be greater than 0" ); _calcModelsCount = initialCalcModelsCount; } /*######################### ## Write Functions ## ##########################*/ /** * @dev Sets the address of the score signer. * @param newSigner The address of the new score signer. */ function _setScoreSigner(address newSigner) internal { address prev = _scoreSigner; _scoreSigner = newSigner; emit ScoreSignerChanged(prev, newSigner); } /** * @dev Sets the address of the score signer. * @param newSigner The address of the new score signer. */ function setScoreSigner(address newSigner) external onlyOwner { require(newSigner != address(0), "Signer: zero"); _setScoreSigner(newSigner); } /** * @dev Sets the NomisONFT address. * @param _nomisONFT NomisONFT address. */ function setNomisONFT(address _nomisONFT) external onlyOwner { nomisONFT = _nomisONFT; } /** * @dev Sets the individual reward for the given address. * @param wallet The address to set the individual reward for. * @param reward The individual reward. */ function setIndividualReward(address wallet, uint256 reward) external onlyOwner { _individualReward[wallet] = reward; } /** * @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 onftMetadataURI The URI for the ONFT token metadata. */ function setScore( bytes calldata signature, uint16 score, uint16 calculationModel, uint256 deadline, string calldata metadataUrl, uint256 chainId, string calldata referralCode, string calldata referrerCode, string calldata onftMetadataURI ) external payable whenNotPaused equalsFee(calculationModel, chainId) { 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)" ), score, calculationModel, msg.sender, _nonce[msg.sender]++, deadline, keccak256(bytes(metadataUrl)), chainId, referralCodeBytes, referrerCodeBytes ) ) ); address signer = ECDSAUpgradeable.recover(messageHash, signature); require( signer == _scoreSigner && 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 (nomisONFT != address(0)) { INomisONFT(nomisONFT).mint( msg.sender, tokenId, onftMetadataURI ); } 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 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 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); } } /** * @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 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); } /** * @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); } /** * @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); } /** * @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 address of the score signer. * @return The address of the score signer. */ function scoreSigner() external view returns (address) { return _scoreSigner; } /** * @dev Get the current token id. * @return The current token id. */ function getCurrentTokenId() external view returns (uint256) { return _tokenIds.current(); } /** * @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 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 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 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 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; } /** * @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]; } /** * @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 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]; } /** * @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); } address private _scoreSigner; /** * @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) (access/Ownable.sol)
pragma solidity ^0.8.0;
import "../utils/ContextUpgradeable.sol";
import "../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 "../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 "../../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 "../../../proxy/utils/Initializable.sol";
/**
* @dev ERC721 token with storage based token URI management.
*/
abstract contract ERC721URIStorageUpgradeable is Initializable, IERC4906Upgradeable, ERC721Upgradeable {
function __ERC721URIStorage_init() internal onlyInitializing {
}
function __ERC721URIStorage_init_unchained() internal onlyInitializing {
}
using StringsUpgradeable for uint256;
// Optional mapping for token URIs
mapping(uint256 => string) private _tokenURIs;
/**
* @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 v4.4.1 (utils/Context.sol)
pragma solidity ^0.8.0;
import "../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;
}
/**
* @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 "../../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 "../../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.21;
/**
* @title INomisONFT.
* @author Nomis team.
* @notice Interface for Nomis ONFT contract.
*/
interface INomisONFT {
/**
* @notice Mint a new ONFT.
* @dev Only the ONFT contract can call this function.
* @param to The address of the new ONFT owner.
* @param tokenId The minted token id.
* @param tokenURI_ The token URI of the minted token.
*/
function mint(
address to,
uint256 tokenId,
string memory tokenURI_
) external;
}{
"optimizer": {
"enabled": true,
"runs": 200
},
"viaIR": true,
"evmVersion": "paris",
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"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":"previousSigner","type":"address"},{"indexed":true,"internalType":"address","name":"newSigner","type":"address"}],"name":"ScoreSignerChanged","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":"newOwner","type":"address"},{"internalType":"address","name":"newScoreSigner","type":"address"}],"name":"__NomisScoreAdminPatch_init","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"","type":"bytes32"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"_claimableReferralWallets","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"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":"nomisONFT","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[],"name":"scoreSigner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"reward","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":"address","name":"_nomisONFT","type":"address"}],"name":"setNomisONFT","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":"string","name":"onftMetadataURI","type":"string"}],"name":"setScore","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newSigner","type":"address"}],"name":"setScoreSigner","outputs":[],"stateMutability":"nonpayable","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
6080806040523461001657614915908161001c8239f35b600080fdfe60c080604052600436101561001357600080fd5b60003560e01c90816301ffc9a7146127325750806305eaab4b1461249557806306fdde03146123e8578063081812fc146123ca578063095ea7b3146122505780631048fbf8146122315780631dc9c209146121f95780632205306d1461213557806323b872dd146121115780632b08672f146120465780632d0335ab1461200b5780632e1a7d4d14611ed457806338254a3b14611eaa5780633938da5914611e085780633be159ed14611d685780633f4ba83a14611cd457806342842e0e14611ca1578063523033aa14610f055780635618923614611c82578063590adabe14611c555780635c975abb14611c325780635ff329af14611b605780636115ee5114611a73578063631c10521461197f5780636352211e1461194f5780636a2e770f1461190757806370a0823114611870578063710b43001461181d578063715018a6146117c05780637a5caab3146117a15780637ca40d1c146110af5780638456cb591461105557806384b0196e14610f655780638da5cb5b14610f3c5780638e52c21714610f055780638ee67edb14610eb25780638fb6c6f614610e6a578063902a859a14610df657806392c4034414610daa57806395d89b4114610cc857806397f5eda614610c2e5780639995626614610bf8578063a09bddaa14610bc7578063a0bcfc7f14610a16578063a22cb46514610944578063a93986b1146108db578063b7b0ccde146108bc578063b88d4fde14610837578063bdbbd85b146107ce578063c87b56dd1461079b578063cbec2cdb14610778578063d004b0361461069b578063d241c32914610643578063db0b2b1014610593578063e54e281614610550578063e91f9e2914610526578063e985e9c5146104d0578063eb66b7cc1461047d578063eddd0d9c14610435578063eef1d20f146103f5578063f2fde38b146103665763fc1ac1d3146102c957600080fd5b34610361576102d7366129c4565b60208151910120801561030557600052610170602052602060018060a01b0360406000205416604051908152f35b60405162461bcd60e51b815260206004820152602e60248201527f67657457616c6c65744279526566657272616c436f64653a20496e76616c696460448201526d20726566657272616c20636f646560901b6064820152608490fd5b600080fd5b346103615760203660031901126103615761037f6127ff565b610387612ad6565b6001600160a01b038116156103a15761039f90612b2e565b005b60405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608490fd5b346103615760403660031901126103615761040e6127ff565b610416612ad6565b6001600160a01b03166000908152610174602052604090206024359055005b3461036157602036600319011261036157600435610451612ad6565b80610165557f0dfc6eec96b100579d23188487733288387140dea6c20dcf97a742a857b13273600080a2005b346103615760403660031901126103615760243560043560005261017660205260406000208054821015610361576020916104b791612aa8565b905460405160039290921b1c6001600160a01b03168152f35b34610361576040366003190112610361576104e96127ff565b6104f1612815565b9060018060a01b03809116600052606a60205260406000209116600052602052602060ff604060002054166040519015158152f35b3461036157600036600319011261036157610177546040516001600160a01b039091168152602090f35b34610361576020366003190112610361576105696127ff565b610571612ad6565b61016280546001600160a01b0319166001600160a01b03909216919091179055005b34610361576105a1366128c0565b90916105ab612ad6565b60005b8381106105b757005b61063e906001600160a01b03806105d76105d284898861460a565b61461a565b16600052602061016a8152604060002061ffff87169182600052526040600020916001928360ff198254161790556106136105d2858a8961460a565b167f89260241ebd53b9ff7a3778cb628f41b86fcce20041a1f23c751005663420c7a600080a4613753565b6105ae565b346103615760403660031901126103615761065c6127ff565b610664612858565b9060018060a01b031660005261016a60205261ffff60406000209116600052602052602060ff604060002054166040519015158152f35b3461036157602080600319360112610361576106b56127ff565b61016154156107335760018060a01b03166000526101758152604060002090604051808383829554938481520190600052836000209260005b8582821061071d5750505061070592500383612951565b610719604051928284938452830190612a3f565b0390f35b85548452600195860195889550930192016106ee565b60405162461bcd60e51b815260048101839052601d60248201527f676574546f6b656e4964733a204e6f20746f6b656e73206d696e7465640000006044820152606490fd5b3461036157600036600319011261036157602061ffff6101645416604051908152f35b34610361576020366003190112610361576107196107ba600435614642565b6040519182916020835260208301906127da565b34610361576107dc36612a73565b916107e5612ad6565b60018060a01b03168060005261017360205261ffff604060002092169182600052602052826040600020557ff3d990281b2074ce0d470fa6b9bb65b5376fbd7e946d091e47490a06743f496d600080a4005b34610361576080366003190112610361576108506127ff565b610858612815565b90606435906044356001600160401b03831161036157366023840112156103615761039f936108946108b794369060248160040135910161298d565b926108a76108a28433612f8b565b612eb2565b6108b2838383613053565b6132fc565b612f67565b3461036157600036600319011261036157602061016654604051908152f35b34610361576108e936612a73565b916108f2612ad6565b60018060a01b03168060005261017260205261ffff604060002092169182600052602052826040600020557fdb0ab24533f4d50ca30cd5978eddbb5a07340c32ff1809f24f6ce598e8eafc39600080a4005b346103615760403660031901126103615761095d6127ff565b60243590811515809203610361576001600160a01b0316903382146109d15733600052606a602052604060002082600052602052604060002060ff1981541660ff83161790556040519081527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3160203392a3005b60405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606490fd5b3461036157610a24366129c4565b610a2c612ad6565b8051906001600160401b038211610bb157610163610a4a8154612be6565b601f8111610b58575b506020908193601f8111600114610ad55780610a8991610a9e96600091610aca575b508160011b916000199060031b1c19161790565b90555b604051928284809451938492016127b7565b81010390207f9bda31c5daf938016d59248ce284119fc191a83aabdfb40b4405397af0a9c97b600080a2005b905085015187610a75565b601f19811694826000527fb0f3e90519fd0de3100ca1a24094c0a25e5cbf467d74a2603172b5a5204555b39560005b818110610b415750958291600193610a9e9810610b28575b5050811b019055610a8c565b86015160001960f88460031b161c191690558680610b1c565b868301518855600190970196918501918501610b04565b610ba190826000527fb0f3e90519fd0de3100ca1a24094c0a25e5cbf467d74a2603172b5a5204555b3601f860160051c81019160208710610ba7575b601f0160051c01906134aa565b83610a53565b9091508190610b94565b634e487b7160e01b600052604160045260246000fd5b3461036157602036600319011261036157600435600052610168602052602061ffff60406000205416604051908152f35b346103615760203660031901126103615761ffff610c1461287a565b1660005261016c6020526020604060002054604051908152f35b3461036157606036600319011261036157610c476127ff565b60243590610719610c56612869565b6001600160a01b03909216600081815261016d60209081526040808320878452825280832061ffff968716808552908352928190206002810154600182015491548351919098168152928301528101949094526060840152608083019390935260a082019290925290819060c0820190565b3461036157600036600319011261036157604051606654600082610ceb83612be6565b91828252602093600190858282169182600014610d8a575050600114610d2d575b50610d1992500383612951565b6107196040519282849384528301906127da565b84915060666000527f46501879b8ca8525e8c2fd519e2fbfcfa2ebea26501294aa02cbfcfb12e94354906000915b858310610d72575050610d19935082010185610d0c565b80548389018501528794508693909201918101610d5b565b60ff191685820152610d1995151560051b8501019250879150610d0c9050565b34610361576020366003190112610361576001600160a01b03610dcb6127ff565b1660005261016f602052610719610def6107ba604060002060405192838092612dff565b0382612951565b3461036157604036600319011261036157610e0f61287a565b610e17612858565b610e1f612ad6565b61ffff809116908160005261016b60205260406000209216918261ffff198254161790557fc3ae431c8f115f13156aad0dc084ce6c552f8ae33c5dda5c7d7dc7e450f4255e600080a3005b3461036157602036600319011261036157600435610e86612ad6565b80610167557f14ea2ed84c55d689785f43bcf8e2a56a3bd24dd6fc33946dfd7f7b5bdb5f0321600080a2005b3461036157604036600319011261036157610ecb6127ff565b610ed3612858565b9060018060a01b031660005261017260205261ffff604060002091166000526020526020604060002054604051908152f35b3461036157602036600319011261036157602061ffff80610f2461287a565b1660005261016b825260406000205416604051908152f35b346103615760003660031901126103615760c9546040516001600160a01b039091168152602090f35b346103615760003660031901126103615761012d54158061104a575b1561100d57610fde604051610f9981610def81612c20565b610719604051610fac81610def81612cd5565b610fec60405191610fbc8361291b565b60008352604051958695600f60f81b875260e0602088015260e08701906127da565b9085820360408701526127da565b90466060850152306080850152600060a085015283820360c0850152612a3f565b60405162461bcd60e51b81526020600482015260156024820152741152540dcc4c8e88155b9a5b9a5d1a585b1a5e9959605a1b6044820152606490fd5b5061012e5415610f81565b346103615760003660031901126103615761106e612ad6565b611076614303565b600160ff1960fb54161760fb557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586020604051338152a1005b34610361576040366003190112610361576110c8612858565b6000549060ff8260081c161591828093611794575b801561177d575b6110ed9061338c565b60ff1981166001176000558261176b575b506040519161110c83612936565b600a8352694e6f6d697353636f726560b01b602084015261112b61342a565b9161114660ff60005460081c166111418161344a565b61344a565b83516001600160401b038111610bb157611161606554612be6565b601f811161171c575b50602094601f82116001146116985761119f9293949582916000926114d4575b50508160011b916000199060031b1c19161790565b6065555b82516001600160401b038111610bb1576111be606654612be6565b601f8111611649575b506020601f82116001146115c35781906111f99394956000926115b85750508160011b916000199060031b1c19161790565b6066555b61120561342a565b916040519161121383612936565b60038352620605c760eb1b602084015261123860ff60005460081c166111418161344a565b83516001600160401b038111610bb15761125461012f54612be6565b601f8111611568575b506020601f82116001146114df578190611290939495966000926114d45750508160011b916000199060031b1c19161790565b61012f555b82516001600160401b038111610bb157610130906112b38254612be6565b601f8111611486575b506020601f82116001146113ff5790806112f19261ffff96976000926113f45750508160011b916000199060031b1c19161790565b90555b600061012d55600061012e5561131560ff60005460081c166111418161344a565b61131e33612b2e565b610161600181540190556004356101655560043561016655168015611389576101649061ffff1982541617905561135157005b61ff0019600054166000557f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb3847402498602060405160018152a1005b60405162461bcd60e51b815260206004820152603c60248201527f636f6e7374727563746f723a20696e697469616c43616c634d6f64656c73436f60448201527f756e742073686f756c642062652067726561746572207468616e2030000000006064820152608490fd5b01519050878061118a565b601f19821695836000527f2f605e086faac1d93117bbfbc18835d434e9405fadc1ca66faf4b864746daf349660005b81811061146e57509161ffff969791846001959410611455575b505050811b0190556112f4565b015160001960f88460031b161c19169055868080611448565b8383015189556001909801976020938401930161142e565b6114ce90836000527f2f605e086faac1d93117bbfbc18835d434e9405fadc1ca66faf4b864746daf34601f840160051c81019160208510610ba757601f0160051c01906134aa565b856112bc565b01519050868061118a565b61012f6000527f232da9e50dad2971456a78fb5cd6ff6b75019984d6e918139ce990999420f9799060005b601f1984168110611550575060019394959683601f19811610611537575b505050811b0161012f55611295565b015160001960f88460031b161c19169055858080611528565b9091602060018192858b01518155019301910161150a565b6115b29061012f6000527f232da9e50dad2971456a78fb5cd6ff6b75019984d6e918139ce990999420f979601f840160051c81019160208510610ba757601f0160051c01906134aa565b8561125d565b01519050858061118a565b60666000527f46501879b8ca8525e8c2fd519e2fbfcfa2ebea26501294aa02cbfcfb12e943549060005b601f19841681106116315750600193949583601f19811610611618575b505050811b016066556111fd565b015160001960f88460031b161c1916905584808061160a565b9091602060018192858a0151815501930191016115ed565b6116929060666000527f46501879b8ca8525e8c2fd519e2fbfcfa2ebea26501294aa02cbfcfb12e94354601f840160051c81019160208510610ba757601f0160051c01906134aa565b846111c7565b601f1982169560656000527f8ff97419363ffd7000167f130ef7168fbea05faf9251824ca5043f113cc6a7c79160005b888110611704575083600195969798106116eb575b505050811b016065556111a3565b015160001960f88460031b161c191690558580806116dd565b919260206001819286850151815501940192016116c8565b6117659060656000527f8ff97419363ffd7000167f130ef7168fbea05faf9251824ca5043f113cc6a7c7601f840160051c81019160208510610ba757601f0160051c01906134aa565b8561116a565b61ffff191661010117600055826110fe565b50303b1580156110e4575060ff81166001146110e4565b50600160ff8216106110dd565b3461036157600036600319011261036157602061016554604051908152f35b34610361576000366003190112610361576117d9612ad6565b60c980546001600160a01b031981169091556000906001600160a01b03167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08280a3005b34610361576040366003190112610361576118366127ff565b61183e612858565b9060018060a01b031660005261017360205261ffff604060002091166000526020526020604060002054604051908152f35b34610361576020366003190112610361576001600160a01b036118916127ff565b1680156118b05760005260686020526020604060002054604051908152f35b60405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608490fd5b3461036157602036600319011261036157600435611923612ad6565b80610166557f1a1fdd6048edb5d9cc6acd350eadec9121194106777efa0f11794b3f9e62955b600080a2005b3461036157602036600319011261036157602061196d600435612bc3565b6040516001600160a01b039091168152f35b346103615761198d366129c4565b80516020809201206000526101718152604060002090604051808383829554938481520190600052836000209260005b85828210611a5d575050506119d492500383612951565b8151916119e083613375565b926119ee6040519485612951565b8084526119fd601f1991613375565b01368385013760005b8151811015611a475780611a26611a20611a42938561462e565b51612bc3565b611a30828761462e565b6001600160a01b039091169052613753565b611a06565b5050610719604051928284938452830190612a02565b85548452600195860195889550930192016119bd565b3461036157604036600319011261036157611a8c6127ff565b611a94612815565b61010360005460ff8160081c161580611b53575b611ab19061338c565b61ffff1916176000556001600160a01b0382811615611b2057611ae892611ade611ae392841615156133ef565b612b2e565b6134fd565b61ff0019600054166000557f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb3847402498602060405160038152a1005b60405162461bcd60e51b815260206004820152600b60248201526a4f776e65723a207a65726f60a81b6044820152606490fd5b50600360ff821610611aa8565b346103615760208060031936011261036157611b7a6127ff565b6001600160a01b039081166000908152610174835260409020549091908015611c28575b3360005261016f8252610def611bbe604060002060405192838092612dff565b82815191012060005261017682526040600020926040519081848654918281520195600052846000209060005b818110611c125786611c0a8787611c04818d0382612951565b516145f7565b604051908152f35b8254841688529686019660019283019201611beb565b5061016754611b9e565b3461036157600036600319011261036157602060ff60fb54166040519015158152f35b34610361576020366003190112610361576004356000526101696020526020604060002054604051908152f35b3461036157600036600319011261036157602061016154604051908152f35b346103615761039f6108b7611cb53661288b565b9060405192611cc38461291b565b600084526108a76108a28433612f8b565b3461036157600036600319011261036157611ced612ad6565b60fb5460ff811615611d2c5760ff191660fb557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6020604051338152a1005b60405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606490fd5b34610361576020806003193601126103615760043590611d8782612bc3565b600092835261016882526040808420546101698452818520546001600160a01b039390931680865261016d8552828620848752855282862061ffff92831680885295529482902060028101546001820154915484519190931681526020810191909152918201526060810192909252608082015260a081019190915260c090f35b3461036157611e16366128c0565b90611e1f612ad6565b60005b818110611e2b57005b611ea59060006001600160a01b0380611e486105d285888b61460a565b16825260209061016a82526040832061ffff881692838552526040832060ff198154169055611e7b6105d285888b61460a565b167f89260241ebd53b9ff7a3778cb628f41b86fcce20041a1f23c751005663420c7a8380a4613753565b611e22565b3461036157600036600319011261036157610162546040516001600160a01b039091168152602090f35b3461036157602036600319011261036157600435611ef0612ad6565b478015611fc6578111611f8157600080808084335af1611f0e6131d4565b5015611f3c57337f7fcf532c15f0a6db0bd6d0e038bea71d30d808c7d98cb3bf7268a95bf5081b65600080a3005b60405162461bcd60e51b815260206004820152601b60248201527f5769746864726177616c3a207472616e73666572206661696c656400000000006044820152606490fd5b60405162461bcd60e51b815260206004820152601e60248201527f5769746864726177616c3a20496e73756666696369656e742066756e647300006044820152606490fd5b60405162461bcd60e51b815260206004820152601e60248201527f5769746864726177616c3a204e6f2066756e647320617661696c61626c6500006044820152606490fd5b34610361576020366003190112610361576001600160a01b0361202c6127ff565b1660005261016e6020526020604060002054604051908152f35b346103615760203660031901126103615761ffff61206261287a565b61206a612ad6565b1680156120a657610164805461ffff1916821790557f279cbae98d21cc94b9c9de893c44ac632afa05edb3f83372abad1c412673959e600080a2005b60405162461bcd60e51b815260206004820152603c60248201527f73657443616c634d6f64656c73436f756e743a2063616c634d6f64656c73436f60448201527f756e742073686f756c642062652067726561746572207468616e2030000000006064820152608490fd5b346103615761039f6121223661288b565b916121306108a28433612f8b565b613053565b610120366003190112610361576001600160401b036004358181116103615761216290369060040161282b565b61216a612858565b90612173612869565b926084358581116103615761218c90369060040161282b565b60c493919335878111610361576121a790369060040161282b565b92909160e435898111610361576121c290369060040161282b565b969095610104359a8b11610361576121e161039f9b369060040161282b565b9a90996121ec614303565b60a4359560643593613547565b346103615760203660031901126103615761039f6122156127ff565b61221d612ad6565b611ae36001600160a01b03821615156133ef565b3461036157600036600319011261036157602061016754604051908152f35b34610361576040366003190112610361576122696127ff565b602435906001600160a01b03808061228085612bc3565b1692169180831461237b57803314908115612356575b50156122eb57600083815260696020526040902080546001600160a01b031916831790556122c383612bc3565b167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925600080a4005b60405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c0000006064820152608490fd5b9050600052606a60205260406000203360005260205260ff6040600020541684612296565b60405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608490fd5b3461036157602036600319011261036157602061196d600435612e74565b346103615760003660031901126103615760405160655460008261240b83612be6565b91828252602093600190858282169182600014610d8a5750506001146124385750610d1992500383612951565b84915060656000527f8ff97419363ffd7000167f130ef7168fbea05faf9251824ca5043f113cc6a7c7906000915b85831061247d575050610d19935082010185610d0c565b80548389018501528794508693909201918101612466565b34610361576000366003190112610361576124ae614303565b3360005260206101748152604060002054801515600014612728575b61016f8252610def6124e6604060002060405192838092612dff565b828151910120918260005261017680825260406000209260405180948591858254918281520191600052856000209060005b87828210612708575050505061257d9291612534910386612951565b7f10e5dd73c78f20ac02a01872a45cab5e858e67f5b51725e641fe2af492967abd61256f865196604051918291604083526040830190612a02565b42888301520390a1846145f7565b9384156126b05747851161265a57600052815260406000208054600082558061263f575b5050600080808086335af16125b46131d4565b50156125ed5760405191825242908201527f16e0c135ad5198482dd8326eb47c9c1a3adef8cb405f743c99a0c1fd414e116060403392a3005b6084906040519062461bcd60e51b82526004820152602560248201527f636c61696d526566657272616c526577617264733a207472616e736665722066604482015264185a5b195960da1b6064820152fd5b6126539160005282600020908101906134aa565b83806125a1565b60405162461bcd60e51b815260048101849052602860248201527f636c61696d526566657272616c526577617264733a20496e73756666696369656044820152676e742066756e647360c01b6064820152608490fd5b60405162461bcd60e51b815260048101849052602a60248201527f636c61696d526566657272616c526577617264733a204e6f207265776172647360448201526920617661696c61626c6560b01b6064820152608490fd5b83546001600160a01b031685528995509093019260019283019201612518565b50610167546124ca565b34610361576020366003190112610361576004359063ffffffff60e01b821680920361036157602091632483248360e11b8114908115612774575b5015158152f35b6380ac58cd60e01b8114915081156127a6575b8115612795575b508361276d565b6301ffc9a760e01b1490508361278e565b635b5e139f60e01b81149150612787565b60005b8381106127ca5750506000910152565b81810151838201526020016127ba565b906020916127f3815180928185528580860191016127b7565b601f01601f1916010190565b600435906001600160a01b038216820361036157565b602435906001600160a01b038216820361036157565b9181601f84011215610361578235916001600160401b038311610361576020838186019501011161036157565b6024359061ffff8216820361036157565b6044359061ffff8216820361036157565b6004359061ffff8216820361036157565b6060906003190112610361576001600160a01b0390600435828116810361036157916024359081168103610361579060443590565b906040600319830112610361576004356001600160401b039283821161036157806023830112156103615781600401359384116103615760248460051b8301011161036157602401919060243561ffff811681036103615790565b602081019081106001600160401b03821117610bb157604052565b604081019081106001600160401b03821117610bb157604052565b90601f801991011681019081106001600160401b03821117610bb157604052565b6001600160401b038111610bb157601f01601f191660200190565b92919261299982612972565b916129a76040519384612951565b829481845281830111610361578281602093846000960137010152565b602060031982011261036157600435906001600160401b0382116103615780602383011215610361578160246129ff9360040135910161298d565b90565b90815180825260208080930193019160005b828110612a22575050505090565b83516001600160a01b031685529381019392810192600101612a14565b90815180825260208080930193019160005b828110612a5f575050505090565b835185529381019392810192600101612a51565b6060906003190112610361576004356001600160a01b0381168103610361579060243561ffff81168103610361579060443590565b8054821015612ac05760005260206000200190600090565b634e487b7160e01b600052603260045260246000fd5b60c9546001600160a01b03163303612aea57565b606460405162461bcd60e51b815260206004820152602060248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152fd5b60c980546001600160a01b039283166001600160a01b0319821681179092559091167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0600080a3565b15612b7e57565b60405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e20494400000000000000006044820152606490fd5b6000908152606760205260409020546001600160a01b03166129ff811515612b77565b90600182811c92168015612c16575b6020831014612c0057565b634e487b7160e01b600052602260045260246000fd5b91607f1691612bf5565b61012f805460009392612c3282612be6565b918282526020936001918281169081600014612cb65750600114612c58575b5050505050565b90939495506000929192527f232da9e50dad2971456a78fb5cd6ff6b75019984d6e918139ce990999420f97992846000945b838610612ca257505050500101903880808080612c51565b805485870183015294019385908201612c8a565b60ff19168685015250505090151560051b010191503880808080612c51565b610130805460009392612ce782612be6565b918282526020936001918281169081600014612cb65750600114612d0c575050505050565b90939495506000929192527f2f605e086faac1d93117bbfbc18835d434e9405fadc1ca66faf4b864746daf3492846000945b838610612d5657505050500101903880808080612c51565b805485870183015294019385908201612d3e565b610163805460009392612d7c82612be6565b918282526020936001918281169081600014612cb65750600114612da1575050505050565b90939495506000929192527fb0f3e90519fd0de3100ca1a24094c0a25e5cbf467d74a2603172b5a5204555b392846000945b838610612deb57505050500101903880808080612c51565b805485870183015294019385908201612dd3565b805460009392612e0e82612be6565b918282526020936001918281169081600014612cb65750600114612e33575050505050565b90939495506000929192528360002092846000945b838610612e6057505050500101903880808080612c51565b805485870183015294019385908201612e48565b600081815260676020526040902054612e97906001600160a01b03161515612b77565b6000908152606960205260409020546001600160a01b031690565b15612eb957565b60405162461bcd60e51b815260206004820152602d60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201526c1c881bdc88185c1c1c9bdd9959609a1b6064820152608490fd5b60809060208152603260208201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60608201520190565b15612f6e57565b60405162461bcd60e51b815280612f8760048201612f14565b0390fd5b906001600160a01b038080612f9f84612bc3565b16931691838314938415612fd2575b508315612fbc575b50505090565b612fc891929350612e74565b1614388080612fb6565b909350600052606a60205260406000208260005260205260ff604060002054169238612fae565b1561300057565b60405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608490fd5b9061307b9161306184612bc3565b6001600160a01b0393918416928492909183168414612ff9565b169182156131835781613118578161309d9161309686612bc3565b1614612ff9565b7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60008481526069602052604081206001600160601b0360a01b9081815416905583825260686020526040822060001981540190558482526040822060018154019055858252606760205284604083209182541617905580a4565b60405162461bcd60e51b815260206004820152603e60248201527f4e6f6e5472616e736665727261626c65455243373231546f6b656e3a204e6f6d60448201527f69732073636f72652063616e2774206265207472616e736665727265642e00006064820152608490fd5b60405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608490fd5b3d156131ff573d906131e582612972565b916131f36040519384612951565b82523d6000602084013e565b606090565b909190803b156132f4576020604051809281630a85bd0160e11b968782523360048301528161324d600098899384602485015260448401526080606484015260848301906127da565b03926001600160a01b03165af1908290826132a5575b5050613297576132716131d4565b805190816132925760405162461bcd60e51b815280612f8760048201612f14565b602001fd5b6001600160e01b0319161490565b909192506020813d82116132ec575b816132c160209383612951565b810103126132e85751906001600160e01b0319821682036132e55750903880613263565b80fd5b5080fd5b3d91506132b4565b505050600190565b9290803b1561336c5761334c9160209160018060a01b039460405180958194829389630a85bd0160e11b9b8c865233600487015216602485015260448401526080606484015260848301906127da565b03916000968791165af1908290826132a5575050613297576132716131d4565b50505050600190565b6001600160401b038111610bb15760051b60200190565b1561339357565b60405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608490fd5b156133f657565b60405162461bcd60e51b815260206004820152600c60248201526b5369676e65723a207a65726f60a01b6044820152606490fd5b6040519061343782612936565b60048252634e4d535360e01b6020830152565b1561345157565b60405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201526a6e697469616c697a696e6760a81b6064820152608490fd5b8181106134b5575050565b600081556001016134aa565b9190601f81116134d057505050565b6134fb926000526020600020906020601f840160051c83019310610ba757601f0160051c01906134aa565b565b61017780546001600160a01b039283166001600160a01b0319821681179092559091167f65bb0c176c0ae5a0a52812f6fd8c442d49f447b8f0f4ccfbd8cf86c7eb306af4600080a3565b9c9b9a9998979695949392919033600052610173602052604060002061ffff808516918260005260205260406000205433600052610172602052604060002083600052602052604060002054903360005261016d60205260406000208b60005260205260406000208460005260205260016040600020015461369d575034149182613693575b821561366c575b821561365f575b8215613637575b5050156135f2576134fb9d6137ce565b60405162461bcd60e51b815260206004820152601e60248201527f4d696e74206665653a2077726f6e67206d696e74206665652076616c756500006044820152606490fd5b90915060005261016c6020526040600020549061016b602052604060002054161138806135e2565b61016554341492506135db565b91503360005261016a60205260406000208260005260205260ff60406000205416916135d4565b34151592506135cd565b91505034149081613749575b8115613722575b508015613716575b156136c6576134fb9d6137ce565b60405162461bcd60e51b815260206004820152602260248201527f557064617465206665653a2077726f6e6720757064617465206665652076616c604482015261756560f01b6064820152608490fd5b506101665434146136b8565b90503360005261016a60205260406000209060005260205260ff60406000205416386136b0565b34151591506136a9565b60001981146137625760010190565b634e487b7160e01b600052601160045260246000fd5b8054600160401b811015610bb15761379591600182018155612aa8565b819291549060031b91821b91600019901b1916179055565b908060209392818452848401376000828201840152601f01601f1916010190565b919a999c9b9098979896949693929361271061ffff8d16116142ae5783421161425d57610164549261ffff6000941661ffff871610156141e3578c8f61382c908e61381b8f8f369161298d565b6020815191012060a052369161298d565b602081519101209533865261016e602052604086209081549161384e83613753565b905561385b368c8e61298d565b602081519101209161ffff604051947fc026f9279242075f8e807c0dbe64dc99ec8ee9303c7d696c4e0d627172fd924d602087015216604085015261ffff8a16606085015233608085015260a084015260c083015260e08201528761010082015260a05161012082015261014086818301528152806101608101106001600160401b03610160830111176141cf57610160810160405260208151910120613900614574565b906139096145c8565b6040519060208201937f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f8552604083015260608201524660808201523060a082015260a0815260c08101928184106001600160401b038511176141bb5760408490528151902061190160f01b845260c282015260e20152604290206139a59261399d9261399791369161298d565b906144ad565b919091614393565b610177546001600160a01b039182169116811490816141b1575b501561416c5760019b8233845261016d602052604084208785526020526040842061ffff87168552602052604084209d8e016080528d608051541561415d575b600290549e4260805155018d81549061ffff811661ffff831603614148575b505050613cb3575b50509050613a3536858761298d565b60008b8152606760205260409020546001600160a01b031615613c57578a8252609760205260408220918151916001600160401b038311613c4357908291613a8a85948f96613a849054612be6565b866134c1565b602091601f8411600114613b7857957ff8e1a15aba9398e019f0b49df1a4fde98ee17ae345cb5f6b5e2c27f5033e8ce760207f3f19ae12b2e27269f8cfcf53b4960a5ac6ba1d714d2c729941e7b20adf54ee679f9d99949761ffff9f9c9761ffff95613b689f9b9880613b589f9a9c613b1b93613b4a9e92613b6d5750508160011b916000199060031b1c19161790565b90555b604051908152a16040519c8d9c168c521660208b015260408a015260c060608a015260c08901916137ad565b9186830360808801526137ad565b9083820360a085015233976137ad565b0390a3565b01519050388061118a565b919084835260208320925b601f1985168110613c285750957ff8e1a15aba9398e019f0b49df1a4fde98ee17ae345cb5f6b5e2c27f5033e8ce760207f3f19ae12b2e27269f8cfcf53b4960a5ac6ba1d714d2c729941e7b20adf54ee679f9d99949761ffff9f9c9761ffff95613b689f9b98613b4a9b613b589f9a9260019383601f19811610613c0f575b505050811b019055613b1e565b015160001960f88460031b161c19169055388080613c02565b8183015184558f965060019093019260209283019201613b83565b634e487b7160e01b82526041600452602482fd5b60405162461bcd60e51b815260206004820152602e60248201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60448201526d32bc34b9ba32b73a103a37b5b2b760911b6064820152608490fd5b33835261016f602052604083206001600160401b038a1161413457613ce28a613cdc8354612be6565b836134c1565b838a601f81116001146140ce5780613d0e9287916140c357508160011b916000199060031b1c19161790565b90555b60a051835261017060205260408320336001600160601b0360a01b825416179055838352610171602052613d488d60408520613778565b604051613d548161291b565b838152331561407f576108b7613e0e918f613d8d613d8782600052606760205260018060a01b0360406000205416151590565b15614347565b600081815260676020526040902054613db0906001600160a01b03161515613d87565b33875260686020526040872060018154019055808752606760205260408720336001600160601b0360a01b8254161790558033887fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a433613204565b6101616001815401905561ffff8516835261016c60205260408320613e338154613753565b90558c83526101686020526040832061ffff861661ffff19825416179055610169602052856040842055338352610175602052613e738d60408520613778565b610162546001600160a01b03169081614002575b5050509080613e99575b808291613a26565b815261017060205260408120546001600160a01b03168015613fa35780825261017460205260408220548015613f9857905b8280808085855af1613edb6131d4565b5015613f44576040514281527f554d9717d841320a49468eba4a7c75a535cf5b26f6063330058afcd6ed492ff460203392a27f16e0c135ad5198482dd8326eb47c9c1a3adef8cb405f743c99a0c1fd414e11606040805160018152426020820152a35b38613e91565b60405162461bcd60e51b815260206004820152602660248201527f73657453636f72653a20636c61696d20726566657272616c207265776172642060448201526519985a5b195960d21b6064820152608490fd5b506101675490613ecb565b5061017660205260408120805490600160401b821015613fee5790613fcd91600182018155612aa8565b81546001600160a01b0360039290921b91821b19163390911b179055613f3e565b634e487b7160e01b83526041600452602483fd5b813b1561407b57918391614043938f8490604051968795869485936334ff261960e21b855233600486015260248501526060604485015260648401916137ad565b03925af1801561407057614059575b8080613e87565b6001600160401b038111613c435760405238614052565b6040513d84823e3d90fd5b8380fd5b606460405162461bcd60e51b815260206004820152602060248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152fd5b90508d013538610a75565b508185526020852090855b8d601f198e16821061411c5750508b601f19811610614102575b505060018a811b019055613d11565b8c013560001960038d901b60f8161c1916905538806140f3565b600183946020939484930135815501930191016140d9565b634e487b7160e01b84526041600452602484fd5b61ffff169061ffff191617905538808e613a1e565b610161548155600191506139ff565b60405162461bcd60e51b815260206004820152601b60248201527f73657453636f72653a20496e76616c6964207369676e617475726500000000006044820152606490fd5b90501515386139bf565b634e487b7160e01b88526041600452602488fd5b634e487b7160e01b85526041600452602485fd5b60405162461bcd60e51b815260206004820152604660248201527f73657453636f72653a2063616c63756c6174696f6e4d6f64656c2073686f756c60448201527f64206265206c657373207468616e2063616c63756c6174696f6e206d6f64656c6064820152650818dbdd5b9d60d21b608482015260a490fd5b60405162461bcd60e51b8152602060048201526024808201527f73657453636f72653a205369676e6564207472616e73616374696f6e206578706044820152631a5c995960e21b6064820152608490fd5b60405162461bcd60e51b815260206004820152602760248201527f73657453636f72653a2053636f7265206d757374206265206c6573732074686160448201526606e2031303030360cc1b6064820152608490fd5b60ff60fb541661430f57565b60405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606490fd5b1561434e57565b60405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606490fd5b600581101561449757806143a45750565b600181036143f15760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606490fd5b6002810361443e5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606490fd5b60031461444757565b60405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608490fd5b634e487b7160e01b600052602160045260246000fd5b9060418151146000146144db576144d7916020820151906060604084015193015160001a906144e5565b9091565b5050600090600290565b9291907f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083116145685791608094939160ff602094604051948552168484015260408301526060820152600093849182805260015afa1561455b5781516001600160a01b03811615614555579190565b50600190565b50604051903d90823e3d90fd5b50505050600090600390565b60405161458481610def81612c20565b8051908115614594576020012090565b505061012d5480156145a35790565b507fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47090565b6040516145d881610def81612cd5565b80519081156145e8576020012090565b505061012e5480156145a35790565b8181029291811591840414171561376257565b9190811015612ac05760051b0190565b356001600160a01b03811681036103615790565b8051821015612ac05760209160051b010190565b600081815260676020526040902054614665906001600160a01b03161515612b77565b600081815260209060978252604090610def614688838320845192838092612dff565b825161469781610def81612d6a565b80519182156148d55780516148a4575050506000848152606760205260409020546146cc906001600160a01b03161515612b77565b8151916146e3836146dc81612d6a565b0384612951565b82511561488f5784859083967a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000009081811015614880575b50506d04ee2d6d415b85acef810000000080831015614872575b50662386f26fc1000080831015614863575b506305f5e10080831015614854575b5061271080831015614845575b506064821015614835575b600a8092101561482b575b600190816021818a019961479e6147898c612972565b9b61479689519d8e612951565b808d52612972565b8b8b019890601f1901368a37508a0101905b6147f5575b50505050906147e9946129ff9493925195836147da88955180928880890191016127b7565b840191518093868401906127b7565b01038084520182612951565b600019019083906f181899199a1a9b1b9c1cb0b131b232b360811b8282061a835304918215614826579190826147b0565b6147b5565b9560010195614773565b9590606460029104910195614768565b6004919792049101953861475d565b60089197920491019538614750565b60109197920491019538614741565b86919792049101953861472f565b91975091500481953880614715565b9250925050519061489f8261291b565b815290565b9195509150846148c16129ff9594519687948680870191016127b7565b82016147e9825180938680850191016127b7565b955050505050509056fea26469706673582212207ca7ebfbc7c911123c3a3b3fdff9691d019b0d91c6a56be52104a7518e95fd2c64736f6c63430008150033
Deployed Bytecode
0x60c080604052600436101561001357600080fd5b60003560e01c90816301ffc9a7146127325750806305eaab4b1461249557806306fdde03146123e8578063081812fc146123ca578063095ea7b3146122505780631048fbf8146122315780631dc9c209146121f95780632205306d1461213557806323b872dd146121115780632b08672f146120465780632d0335ab1461200b5780632e1a7d4d14611ed457806338254a3b14611eaa5780633938da5914611e085780633be159ed14611d685780633f4ba83a14611cd457806342842e0e14611ca1578063523033aa14610f055780635618923614611c82578063590adabe14611c555780635c975abb14611c325780635ff329af14611b605780636115ee5114611a73578063631c10521461197f5780636352211e1461194f5780636a2e770f1461190757806370a0823114611870578063710b43001461181d578063715018a6146117c05780637a5caab3146117a15780637ca40d1c146110af5780638456cb591461105557806384b0196e14610f655780638da5cb5b14610f3c5780638e52c21714610f055780638ee67edb14610eb25780638fb6c6f614610e6a578063902a859a14610df657806392c4034414610daa57806395d89b4114610cc857806397f5eda614610c2e5780639995626614610bf8578063a09bddaa14610bc7578063a0bcfc7f14610a16578063a22cb46514610944578063a93986b1146108db578063b7b0ccde146108bc578063b88d4fde14610837578063bdbbd85b146107ce578063c87b56dd1461079b578063cbec2cdb14610778578063d004b0361461069b578063d241c32914610643578063db0b2b1014610593578063e54e281614610550578063e91f9e2914610526578063e985e9c5146104d0578063eb66b7cc1461047d578063eddd0d9c14610435578063eef1d20f146103f5578063f2fde38b146103665763fc1ac1d3146102c957600080fd5b34610361576102d7366129c4565b60208151910120801561030557600052610170602052602060018060a01b0360406000205416604051908152f35b60405162461bcd60e51b815260206004820152602e60248201527f67657457616c6c65744279526566657272616c436f64653a20496e76616c696460448201526d20726566657272616c20636f646560901b6064820152608490fd5b600080fd5b346103615760203660031901126103615761037f6127ff565b610387612ad6565b6001600160a01b038116156103a15761039f90612b2e565b005b60405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608490fd5b346103615760403660031901126103615761040e6127ff565b610416612ad6565b6001600160a01b03166000908152610174602052604090206024359055005b3461036157602036600319011261036157600435610451612ad6565b80610165557f0dfc6eec96b100579d23188487733288387140dea6c20dcf97a742a857b13273600080a2005b346103615760403660031901126103615760243560043560005261017660205260406000208054821015610361576020916104b791612aa8565b905460405160039290921b1c6001600160a01b03168152f35b34610361576040366003190112610361576104e96127ff565b6104f1612815565b9060018060a01b03809116600052606a60205260406000209116600052602052602060ff604060002054166040519015158152f35b3461036157600036600319011261036157610177546040516001600160a01b039091168152602090f35b34610361576020366003190112610361576105696127ff565b610571612ad6565b61016280546001600160a01b0319166001600160a01b03909216919091179055005b34610361576105a1366128c0565b90916105ab612ad6565b60005b8381106105b757005b61063e906001600160a01b03806105d76105d284898861460a565b61461a565b16600052602061016a8152604060002061ffff87169182600052526040600020916001928360ff198254161790556106136105d2858a8961460a565b167f89260241ebd53b9ff7a3778cb628f41b86fcce20041a1f23c751005663420c7a600080a4613753565b6105ae565b346103615760403660031901126103615761065c6127ff565b610664612858565b9060018060a01b031660005261016a60205261ffff60406000209116600052602052602060ff604060002054166040519015158152f35b3461036157602080600319360112610361576106b56127ff565b61016154156107335760018060a01b03166000526101758152604060002090604051808383829554938481520190600052836000209260005b8582821061071d5750505061070592500383612951565b610719604051928284938452830190612a3f565b0390f35b85548452600195860195889550930192016106ee565b60405162461bcd60e51b815260048101839052601d60248201527f676574546f6b656e4964733a204e6f20746f6b656e73206d696e7465640000006044820152606490fd5b3461036157600036600319011261036157602061ffff6101645416604051908152f35b34610361576020366003190112610361576107196107ba600435614642565b6040519182916020835260208301906127da565b34610361576107dc36612a73565b916107e5612ad6565b60018060a01b03168060005261017360205261ffff604060002092169182600052602052826040600020557ff3d990281b2074ce0d470fa6b9bb65b5376fbd7e946d091e47490a06743f496d600080a4005b34610361576080366003190112610361576108506127ff565b610858612815565b90606435906044356001600160401b03831161036157366023840112156103615761039f936108946108b794369060248160040135910161298d565b926108a76108a28433612f8b565b612eb2565b6108b2838383613053565b6132fc565b612f67565b3461036157600036600319011261036157602061016654604051908152f35b34610361576108e936612a73565b916108f2612ad6565b60018060a01b03168060005261017260205261ffff604060002092169182600052602052826040600020557fdb0ab24533f4d50ca30cd5978eddbb5a07340c32ff1809f24f6ce598e8eafc39600080a4005b346103615760403660031901126103615761095d6127ff565b60243590811515809203610361576001600160a01b0316903382146109d15733600052606a602052604060002082600052602052604060002060ff1981541660ff83161790556040519081527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3160203392a3005b60405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606490fd5b3461036157610a24366129c4565b610a2c612ad6565b8051906001600160401b038211610bb157610163610a4a8154612be6565b601f8111610b58575b506020908193601f8111600114610ad55780610a8991610a9e96600091610aca575b508160011b916000199060031b1c19161790565b90555b604051928284809451938492016127b7565b81010390207f9bda31c5daf938016d59248ce284119fc191a83aabdfb40b4405397af0a9c97b600080a2005b905085015187610a75565b601f19811694826000527fb0f3e90519fd0de3100ca1a24094c0a25e5cbf467d74a2603172b5a5204555b39560005b818110610b415750958291600193610a9e9810610b28575b5050811b019055610a8c565b86015160001960f88460031b161c191690558680610b1c565b868301518855600190970196918501918501610b04565b610ba190826000527fb0f3e90519fd0de3100ca1a24094c0a25e5cbf467d74a2603172b5a5204555b3601f860160051c81019160208710610ba7575b601f0160051c01906134aa565b83610a53565b9091508190610b94565b634e487b7160e01b600052604160045260246000fd5b3461036157602036600319011261036157600435600052610168602052602061ffff60406000205416604051908152f35b346103615760203660031901126103615761ffff610c1461287a565b1660005261016c6020526020604060002054604051908152f35b3461036157606036600319011261036157610c476127ff565b60243590610719610c56612869565b6001600160a01b03909216600081815261016d60209081526040808320878452825280832061ffff968716808552908352928190206002810154600182015491548351919098168152928301528101949094526060840152608083019390935260a082019290925290819060c0820190565b3461036157600036600319011261036157604051606654600082610ceb83612be6565b91828252602093600190858282169182600014610d8a575050600114610d2d575b50610d1992500383612951565b6107196040519282849384528301906127da565b84915060666000527f46501879b8ca8525e8c2fd519e2fbfcfa2ebea26501294aa02cbfcfb12e94354906000915b858310610d72575050610d19935082010185610d0c565b80548389018501528794508693909201918101610d5b565b60ff191685820152610d1995151560051b8501019250879150610d0c9050565b34610361576020366003190112610361576001600160a01b03610dcb6127ff565b1660005261016f602052610719610def6107ba604060002060405192838092612dff565b0382612951565b3461036157604036600319011261036157610e0f61287a565b610e17612858565b610e1f612ad6565b61ffff809116908160005261016b60205260406000209216918261ffff198254161790557fc3ae431c8f115f13156aad0dc084ce6c552f8ae33c5dda5c7d7dc7e450f4255e600080a3005b3461036157602036600319011261036157600435610e86612ad6565b80610167557f14ea2ed84c55d689785f43bcf8e2a56a3bd24dd6fc33946dfd7f7b5bdb5f0321600080a2005b3461036157604036600319011261036157610ecb6127ff565b610ed3612858565b9060018060a01b031660005261017260205261ffff604060002091166000526020526020604060002054604051908152f35b3461036157602036600319011261036157602061ffff80610f2461287a565b1660005261016b825260406000205416604051908152f35b346103615760003660031901126103615760c9546040516001600160a01b039091168152602090f35b346103615760003660031901126103615761012d54158061104a575b1561100d57610fde604051610f9981610def81612c20565b610719604051610fac81610def81612cd5565b610fec60405191610fbc8361291b565b60008352604051958695600f60f81b875260e0602088015260e08701906127da565b9085820360408701526127da565b90466060850152306080850152600060a085015283820360c0850152612a3f565b60405162461bcd60e51b81526020600482015260156024820152741152540dcc4c8e88155b9a5b9a5d1a585b1a5e9959605a1b6044820152606490fd5b5061012e5415610f81565b346103615760003660031901126103615761106e612ad6565b611076614303565b600160ff1960fb54161760fb557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586020604051338152a1005b34610361576040366003190112610361576110c8612858565b6000549060ff8260081c161591828093611794575b801561177d575b6110ed9061338c565b60ff1981166001176000558261176b575b506040519161110c83612936565b600a8352694e6f6d697353636f726560b01b602084015261112b61342a565b9161114660ff60005460081c166111418161344a565b61344a565b83516001600160401b038111610bb157611161606554612be6565b601f811161171c575b50602094601f82116001146116985761119f9293949582916000926114d4575b50508160011b916000199060031b1c19161790565b6065555b82516001600160401b038111610bb1576111be606654612be6565b601f8111611649575b506020601f82116001146115c35781906111f99394956000926115b85750508160011b916000199060031b1c19161790565b6066555b61120561342a565b916040519161121383612936565b60038352620605c760eb1b602084015261123860ff60005460081c166111418161344a565b83516001600160401b038111610bb15761125461012f54612be6565b601f8111611568575b506020601f82116001146114df578190611290939495966000926114d45750508160011b916000199060031b1c19161790565b61012f555b82516001600160401b038111610bb157610130906112b38254612be6565b601f8111611486575b506020601f82116001146113ff5790806112f19261ffff96976000926113f45750508160011b916000199060031b1c19161790565b90555b600061012d55600061012e5561131560ff60005460081c166111418161344a565b61131e33612b2e565b610161600181540190556004356101655560043561016655168015611389576101649061ffff1982541617905561135157005b61ff0019600054166000557f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb3847402498602060405160018152a1005b60405162461bcd60e51b815260206004820152603c60248201527f636f6e7374727563746f723a20696e697469616c43616c634d6f64656c73436f60448201527f756e742073686f756c642062652067726561746572207468616e2030000000006064820152608490fd5b01519050878061118a565b601f19821695836000527f2f605e086faac1d93117bbfbc18835d434e9405fadc1ca66faf4b864746daf349660005b81811061146e57509161ffff969791846001959410611455575b505050811b0190556112f4565b015160001960f88460031b161c19169055868080611448565b8383015189556001909801976020938401930161142e565b6114ce90836000527f2f605e086faac1d93117bbfbc18835d434e9405fadc1ca66faf4b864746daf34601f840160051c81019160208510610ba757601f0160051c01906134aa565b856112bc565b01519050868061118a565b61012f6000527f232da9e50dad2971456a78fb5cd6ff6b75019984d6e918139ce990999420f9799060005b601f1984168110611550575060019394959683601f19811610611537575b505050811b0161012f55611295565b015160001960f88460031b161c19169055858080611528565b9091602060018192858b01518155019301910161150a565b6115b29061012f6000527f232da9e50dad2971456a78fb5cd6ff6b75019984d6e918139ce990999420f979601f840160051c81019160208510610ba757601f0160051c01906134aa565b8561125d565b01519050858061118a565b60666000527f46501879b8ca8525e8c2fd519e2fbfcfa2ebea26501294aa02cbfcfb12e943549060005b601f19841681106116315750600193949583601f19811610611618575b505050811b016066556111fd565b015160001960f88460031b161c1916905584808061160a565b9091602060018192858a0151815501930191016115ed565b6116929060666000527f46501879b8ca8525e8c2fd519e2fbfcfa2ebea26501294aa02cbfcfb12e94354601f840160051c81019160208510610ba757601f0160051c01906134aa565b846111c7565b601f1982169560656000527f8ff97419363ffd7000167f130ef7168fbea05faf9251824ca5043f113cc6a7c79160005b888110611704575083600195969798106116eb575b505050811b016065556111a3565b015160001960f88460031b161c191690558580806116dd565b919260206001819286850151815501940192016116c8565b6117659060656000527f8ff97419363ffd7000167f130ef7168fbea05faf9251824ca5043f113cc6a7c7601f840160051c81019160208510610ba757601f0160051c01906134aa565b8561116a565b61ffff191661010117600055826110fe565b50303b1580156110e4575060ff81166001146110e4565b50600160ff8216106110dd565b3461036157600036600319011261036157602061016554604051908152f35b34610361576000366003190112610361576117d9612ad6565b60c980546001600160a01b031981169091556000906001600160a01b03167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08280a3005b34610361576040366003190112610361576118366127ff565b61183e612858565b9060018060a01b031660005261017360205261ffff604060002091166000526020526020604060002054604051908152f35b34610361576020366003190112610361576001600160a01b036118916127ff565b1680156118b05760005260686020526020604060002054604051908152f35b60405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608490fd5b3461036157602036600319011261036157600435611923612ad6565b80610166557f1a1fdd6048edb5d9cc6acd350eadec9121194106777efa0f11794b3f9e62955b600080a2005b3461036157602036600319011261036157602061196d600435612bc3565b6040516001600160a01b039091168152f35b346103615761198d366129c4565b80516020809201206000526101718152604060002090604051808383829554938481520190600052836000209260005b85828210611a5d575050506119d492500383612951565b8151916119e083613375565b926119ee6040519485612951565b8084526119fd601f1991613375565b01368385013760005b8151811015611a475780611a26611a20611a42938561462e565b51612bc3565b611a30828761462e565b6001600160a01b039091169052613753565b611a06565b5050610719604051928284938452830190612a02565b85548452600195860195889550930192016119bd565b3461036157604036600319011261036157611a8c6127ff565b611a94612815565b61010360005460ff8160081c161580611b53575b611ab19061338c565b61ffff1916176000556001600160a01b0382811615611b2057611ae892611ade611ae392841615156133ef565b612b2e565b6134fd565b61ff0019600054166000557f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb3847402498602060405160038152a1005b60405162461bcd60e51b815260206004820152600b60248201526a4f776e65723a207a65726f60a81b6044820152606490fd5b50600360ff821610611aa8565b346103615760208060031936011261036157611b7a6127ff565b6001600160a01b039081166000908152610174835260409020549091908015611c28575b3360005261016f8252610def611bbe604060002060405192838092612dff565b82815191012060005261017682526040600020926040519081848654918281520195600052846000209060005b818110611c125786611c0a8787611c04818d0382612951565b516145f7565b604051908152f35b8254841688529686019660019283019201611beb565b5061016754611b9e565b3461036157600036600319011261036157602060ff60fb54166040519015158152f35b34610361576020366003190112610361576004356000526101696020526020604060002054604051908152f35b3461036157600036600319011261036157602061016154604051908152f35b346103615761039f6108b7611cb53661288b565b9060405192611cc38461291b565b600084526108a76108a28433612f8b565b3461036157600036600319011261036157611ced612ad6565b60fb5460ff811615611d2c5760ff191660fb557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6020604051338152a1005b60405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606490fd5b34610361576020806003193601126103615760043590611d8782612bc3565b600092835261016882526040808420546101698452818520546001600160a01b039390931680865261016d8552828620848752855282862061ffff92831680885295529482902060028101546001820154915484519190931681526020810191909152918201526060810192909252608082015260a081019190915260c090f35b3461036157611e16366128c0565b90611e1f612ad6565b60005b818110611e2b57005b611ea59060006001600160a01b0380611e486105d285888b61460a565b16825260209061016a82526040832061ffff881692838552526040832060ff198154169055611e7b6105d285888b61460a565b167f89260241ebd53b9ff7a3778cb628f41b86fcce20041a1f23c751005663420c7a8380a4613753565b611e22565b3461036157600036600319011261036157610162546040516001600160a01b039091168152602090f35b3461036157602036600319011261036157600435611ef0612ad6565b478015611fc6578111611f8157600080808084335af1611f0e6131d4565b5015611f3c57337f7fcf532c15f0a6db0bd6d0e038bea71d30d808c7d98cb3bf7268a95bf5081b65600080a3005b60405162461bcd60e51b815260206004820152601b60248201527f5769746864726177616c3a207472616e73666572206661696c656400000000006044820152606490fd5b60405162461bcd60e51b815260206004820152601e60248201527f5769746864726177616c3a20496e73756666696369656e742066756e647300006044820152606490fd5b60405162461bcd60e51b815260206004820152601e60248201527f5769746864726177616c3a204e6f2066756e647320617661696c61626c6500006044820152606490fd5b34610361576020366003190112610361576001600160a01b0361202c6127ff565b1660005261016e6020526020604060002054604051908152f35b346103615760203660031901126103615761ffff61206261287a565b61206a612ad6565b1680156120a657610164805461ffff1916821790557f279cbae98d21cc94b9c9de893c44ac632afa05edb3f83372abad1c412673959e600080a2005b60405162461bcd60e51b815260206004820152603c60248201527f73657443616c634d6f64656c73436f756e743a2063616c634d6f64656c73436f60448201527f756e742073686f756c642062652067726561746572207468616e2030000000006064820152608490fd5b346103615761039f6121223661288b565b916121306108a28433612f8b565b613053565b610120366003190112610361576001600160401b036004358181116103615761216290369060040161282b565b61216a612858565b90612173612869565b926084358581116103615761218c90369060040161282b565b60c493919335878111610361576121a790369060040161282b565b92909160e435898111610361576121c290369060040161282b565b969095610104359a8b11610361576121e161039f9b369060040161282b565b9a90996121ec614303565b60a4359560643593613547565b346103615760203660031901126103615761039f6122156127ff565b61221d612ad6565b611ae36001600160a01b03821615156133ef565b3461036157600036600319011261036157602061016754604051908152f35b34610361576040366003190112610361576122696127ff565b602435906001600160a01b03808061228085612bc3565b1692169180831461237b57803314908115612356575b50156122eb57600083815260696020526040902080546001600160a01b031916831790556122c383612bc3565b167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925600080a4005b60405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c0000006064820152608490fd5b9050600052606a60205260406000203360005260205260ff6040600020541684612296565b60405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608490fd5b3461036157602036600319011261036157602061196d600435612e74565b346103615760003660031901126103615760405160655460008261240b83612be6565b91828252602093600190858282169182600014610d8a5750506001146124385750610d1992500383612951565b84915060656000527f8ff97419363ffd7000167f130ef7168fbea05faf9251824ca5043f113cc6a7c7906000915b85831061247d575050610d19935082010185610d0c565b80548389018501528794508693909201918101612466565b34610361576000366003190112610361576124ae614303565b3360005260206101748152604060002054801515600014612728575b61016f8252610def6124e6604060002060405192838092612dff565b828151910120918260005261017680825260406000209260405180948591858254918281520191600052856000209060005b87828210612708575050505061257d9291612534910386612951565b7f10e5dd73c78f20ac02a01872a45cab5e858e67f5b51725e641fe2af492967abd61256f865196604051918291604083526040830190612a02565b42888301520390a1846145f7565b9384156126b05747851161265a57600052815260406000208054600082558061263f575b5050600080808086335af16125b46131d4565b50156125ed5760405191825242908201527f16e0c135ad5198482dd8326eb47c9c1a3adef8cb405f743c99a0c1fd414e116060403392a3005b6084906040519062461bcd60e51b82526004820152602560248201527f636c61696d526566657272616c526577617264733a207472616e736665722066604482015264185a5b195960da1b6064820152fd5b6126539160005282600020908101906134aa565b83806125a1565b60405162461bcd60e51b815260048101849052602860248201527f636c61696d526566657272616c526577617264733a20496e73756666696369656044820152676e742066756e647360c01b6064820152608490fd5b60405162461bcd60e51b815260048101849052602a60248201527f636c61696d526566657272616c526577617264733a204e6f207265776172647360448201526920617661696c61626c6560b01b6064820152608490fd5b83546001600160a01b031685528995509093019260019283019201612518565b50610167546124ca565b34610361576020366003190112610361576004359063ffffffff60e01b821680920361036157602091632483248360e11b8114908115612774575b5015158152f35b6380ac58cd60e01b8114915081156127a6575b8115612795575b508361276d565b6301ffc9a760e01b1490508361278e565b635b5e139f60e01b81149150612787565b60005b8381106127ca5750506000910152565b81810151838201526020016127ba565b906020916127f3815180928185528580860191016127b7565b601f01601f1916010190565b600435906001600160a01b038216820361036157565b602435906001600160a01b038216820361036157565b9181601f84011215610361578235916001600160401b038311610361576020838186019501011161036157565b6024359061ffff8216820361036157565b6044359061ffff8216820361036157565b6004359061ffff8216820361036157565b6060906003190112610361576001600160a01b0390600435828116810361036157916024359081168103610361579060443590565b906040600319830112610361576004356001600160401b039283821161036157806023830112156103615781600401359384116103615760248460051b8301011161036157602401919060243561ffff811681036103615790565b602081019081106001600160401b03821117610bb157604052565b604081019081106001600160401b03821117610bb157604052565b90601f801991011681019081106001600160401b03821117610bb157604052565b6001600160401b038111610bb157601f01601f191660200190565b92919261299982612972565b916129a76040519384612951565b829481845281830111610361578281602093846000960137010152565b602060031982011261036157600435906001600160401b0382116103615780602383011215610361578160246129ff9360040135910161298d565b90565b90815180825260208080930193019160005b828110612a22575050505090565b83516001600160a01b031685529381019392810192600101612a14565b90815180825260208080930193019160005b828110612a5f575050505090565b835185529381019392810192600101612a51565b6060906003190112610361576004356001600160a01b0381168103610361579060243561ffff81168103610361579060443590565b8054821015612ac05760005260206000200190600090565b634e487b7160e01b600052603260045260246000fd5b60c9546001600160a01b03163303612aea57565b606460405162461bcd60e51b815260206004820152602060248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152fd5b60c980546001600160a01b039283166001600160a01b0319821681179092559091167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0600080a3565b15612b7e57565b60405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e20494400000000000000006044820152606490fd5b6000908152606760205260409020546001600160a01b03166129ff811515612b77565b90600182811c92168015612c16575b6020831014612c0057565b634e487b7160e01b600052602260045260246000fd5b91607f1691612bf5565b61012f805460009392612c3282612be6565b918282526020936001918281169081600014612cb65750600114612c58575b5050505050565b90939495506000929192527f232da9e50dad2971456a78fb5cd6ff6b75019984d6e918139ce990999420f97992846000945b838610612ca257505050500101903880808080612c51565b805485870183015294019385908201612c8a565b60ff19168685015250505090151560051b010191503880808080612c51565b610130805460009392612ce782612be6565b918282526020936001918281169081600014612cb65750600114612d0c575050505050565b90939495506000929192527f2f605e086faac1d93117bbfbc18835d434e9405fadc1ca66faf4b864746daf3492846000945b838610612d5657505050500101903880808080612c51565b805485870183015294019385908201612d3e565b610163805460009392612d7c82612be6565b918282526020936001918281169081600014612cb65750600114612da1575050505050565b90939495506000929192527fb0f3e90519fd0de3100ca1a24094c0a25e5cbf467d74a2603172b5a5204555b392846000945b838610612deb57505050500101903880808080612c51565b805485870183015294019385908201612dd3565b805460009392612e0e82612be6565b918282526020936001918281169081600014612cb65750600114612e33575050505050565b90939495506000929192528360002092846000945b838610612e6057505050500101903880808080612c51565b805485870183015294019385908201612e48565b600081815260676020526040902054612e97906001600160a01b03161515612b77565b6000908152606960205260409020546001600160a01b031690565b15612eb957565b60405162461bcd60e51b815260206004820152602d60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201526c1c881bdc88185c1c1c9bdd9959609a1b6064820152608490fd5b60809060208152603260208201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60608201520190565b15612f6e57565b60405162461bcd60e51b815280612f8760048201612f14565b0390fd5b906001600160a01b038080612f9f84612bc3565b16931691838314938415612fd2575b508315612fbc575b50505090565b612fc891929350612e74565b1614388080612fb6565b909350600052606a60205260406000208260005260205260ff604060002054169238612fae565b1561300057565b60405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608490fd5b9061307b9161306184612bc3565b6001600160a01b0393918416928492909183168414612ff9565b169182156131835781613118578161309d9161309686612bc3565b1614612ff9565b7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60008481526069602052604081206001600160601b0360a01b9081815416905583825260686020526040822060001981540190558482526040822060018154019055858252606760205284604083209182541617905580a4565b60405162461bcd60e51b815260206004820152603e60248201527f4e6f6e5472616e736665727261626c65455243373231546f6b656e3a204e6f6d60448201527f69732073636f72652063616e2774206265207472616e736665727265642e00006064820152608490fd5b60405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608490fd5b3d156131ff573d906131e582612972565b916131f36040519384612951565b82523d6000602084013e565b606090565b909190803b156132f4576020604051809281630a85bd0160e11b968782523360048301528161324d600098899384602485015260448401526080606484015260848301906127da565b03926001600160a01b03165af1908290826132a5575b5050613297576132716131d4565b805190816132925760405162461bcd60e51b815280612f8760048201612f14565b602001fd5b6001600160e01b0319161490565b909192506020813d82116132ec575b816132c160209383612951565b810103126132e85751906001600160e01b0319821682036132e55750903880613263565b80fd5b5080fd5b3d91506132b4565b505050600190565b9290803b1561336c5761334c9160209160018060a01b039460405180958194829389630a85bd0160e11b9b8c865233600487015216602485015260448401526080606484015260848301906127da565b03916000968791165af1908290826132a5575050613297576132716131d4565b50505050600190565b6001600160401b038111610bb15760051b60200190565b1561339357565b60405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608490fd5b156133f657565b60405162461bcd60e51b815260206004820152600c60248201526b5369676e65723a207a65726f60a01b6044820152606490fd5b6040519061343782612936565b60048252634e4d535360e01b6020830152565b1561345157565b60405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201526a6e697469616c697a696e6760a81b6064820152608490fd5b8181106134b5575050565b600081556001016134aa565b9190601f81116134d057505050565b6134fb926000526020600020906020601f840160051c83019310610ba757601f0160051c01906134aa565b565b61017780546001600160a01b039283166001600160a01b0319821681179092559091167f65bb0c176c0ae5a0a52812f6fd8c442d49f447b8f0f4ccfbd8cf86c7eb306af4600080a3565b9c9b9a9998979695949392919033600052610173602052604060002061ffff808516918260005260205260406000205433600052610172602052604060002083600052602052604060002054903360005261016d60205260406000208b60005260205260406000208460005260205260016040600020015461369d575034149182613693575b821561366c575b821561365f575b8215613637575b5050156135f2576134fb9d6137ce565b60405162461bcd60e51b815260206004820152601e60248201527f4d696e74206665653a2077726f6e67206d696e74206665652076616c756500006044820152606490fd5b90915060005261016c6020526040600020549061016b602052604060002054161138806135e2565b61016554341492506135db565b91503360005261016a60205260406000208260005260205260ff60406000205416916135d4565b34151592506135cd565b91505034149081613749575b8115613722575b508015613716575b156136c6576134fb9d6137ce565b60405162461bcd60e51b815260206004820152602260248201527f557064617465206665653a2077726f6e6720757064617465206665652076616c604482015261756560f01b6064820152608490fd5b506101665434146136b8565b90503360005261016a60205260406000209060005260205260ff60406000205416386136b0565b34151591506136a9565b60001981146137625760010190565b634e487b7160e01b600052601160045260246000fd5b8054600160401b811015610bb15761379591600182018155612aa8565b819291549060031b91821b91600019901b1916179055565b908060209392818452848401376000828201840152601f01601f1916010190565b919a999c9b9098979896949693929361271061ffff8d16116142ae5783421161425d57610164549261ffff6000941661ffff871610156141e3578c8f61382c908e61381b8f8f369161298d565b6020815191012060a052369161298d565b602081519101209533865261016e602052604086209081549161384e83613753565b905561385b368c8e61298d565b602081519101209161ffff604051947fc026f9279242075f8e807c0dbe64dc99ec8ee9303c7d696c4e0d627172fd924d602087015216604085015261ffff8a16606085015233608085015260a084015260c083015260e08201528761010082015260a05161012082015261014086818301528152806101608101106001600160401b03610160830111176141cf57610160810160405260208151910120613900614574565b906139096145c8565b6040519060208201937f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f8552604083015260608201524660808201523060a082015260a0815260c08101928184106001600160401b038511176141bb5760408490528151902061190160f01b845260c282015260e20152604290206139a59261399d9261399791369161298d565b906144ad565b919091614393565b610177546001600160a01b039182169116811490816141b1575b501561416c5760019b8233845261016d602052604084208785526020526040842061ffff87168552602052604084209d8e016080528d608051541561415d575b600290549e4260805155018d81549061ffff811661ffff831603614148575b505050613cb3575b50509050613a3536858761298d565b60008b8152606760205260409020546001600160a01b031615613c57578a8252609760205260408220918151916001600160401b038311613c4357908291613a8a85948f96613a849054612be6565b866134c1565b602091601f8411600114613b7857957ff8e1a15aba9398e019f0b49df1a4fde98ee17ae345cb5f6b5e2c27f5033e8ce760207f3f19ae12b2e27269f8cfcf53b4960a5ac6ba1d714d2c729941e7b20adf54ee679f9d99949761ffff9f9c9761ffff95613b689f9b9880613b589f9a9c613b1b93613b4a9e92613b6d5750508160011b916000199060031b1c19161790565b90555b604051908152a16040519c8d9c168c521660208b015260408a015260c060608a015260c08901916137ad565b9186830360808801526137ad565b9083820360a085015233976137ad565b0390a3565b01519050388061118a565b919084835260208320925b601f1985168110613c285750957ff8e1a15aba9398e019f0b49df1a4fde98ee17ae345cb5f6b5e2c27f5033e8ce760207f3f19ae12b2e27269f8cfcf53b4960a5ac6ba1d714d2c729941e7b20adf54ee679f9d99949761ffff9f9c9761ffff95613b689f9b98613b4a9b613b589f9a9260019383601f19811610613c0f575b505050811b019055613b1e565b015160001960f88460031b161c19169055388080613c02565b8183015184558f965060019093019260209283019201613b83565b634e487b7160e01b82526041600452602482fd5b60405162461bcd60e51b815260206004820152602e60248201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60448201526d32bc34b9ba32b73a103a37b5b2b760911b6064820152608490fd5b33835261016f602052604083206001600160401b038a1161413457613ce28a613cdc8354612be6565b836134c1565b838a601f81116001146140ce5780613d0e9287916140c357508160011b916000199060031b1c19161790565b90555b60a051835261017060205260408320336001600160601b0360a01b825416179055838352610171602052613d488d60408520613778565b604051613d548161291b565b838152331561407f576108b7613e0e918f613d8d613d8782600052606760205260018060a01b0360406000205416151590565b15614347565b600081815260676020526040902054613db0906001600160a01b03161515613d87565b33875260686020526040872060018154019055808752606760205260408720336001600160601b0360a01b8254161790558033887fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a433613204565b6101616001815401905561ffff8516835261016c60205260408320613e338154613753565b90558c83526101686020526040832061ffff861661ffff19825416179055610169602052856040842055338352610175602052613e738d60408520613778565b610162546001600160a01b03169081614002575b5050509080613e99575b808291613a26565b815261017060205260408120546001600160a01b03168015613fa35780825261017460205260408220548015613f9857905b8280808085855af1613edb6131d4565b5015613f44576040514281527f554d9717d841320a49468eba4a7c75a535cf5b26f6063330058afcd6ed492ff460203392a27f16e0c135ad5198482dd8326eb47c9c1a3adef8cb405f743c99a0c1fd414e11606040805160018152426020820152a35b38613e91565b60405162461bcd60e51b815260206004820152602660248201527f73657453636f72653a20636c61696d20726566657272616c207265776172642060448201526519985a5b195960d21b6064820152608490fd5b506101675490613ecb565b5061017660205260408120805490600160401b821015613fee5790613fcd91600182018155612aa8565b81546001600160a01b0360039290921b91821b19163390911b179055613f3e565b634e487b7160e01b83526041600452602483fd5b813b1561407b57918391614043938f8490604051968795869485936334ff261960e21b855233600486015260248501526060604485015260648401916137ad565b03925af1801561407057614059575b8080613e87565b6001600160401b038111613c435760405238614052565b6040513d84823e3d90fd5b8380fd5b606460405162461bcd60e51b815260206004820152602060248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152fd5b90508d013538610a75565b508185526020852090855b8d601f198e16821061411c5750508b601f19811610614102575b505060018a811b019055613d11565b8c013560001960038d901b60f8161c1916905538806140f3565b600183946020939484930135815501930191016140d9565b634e487b7160e01b84526041600452602484fd5b61ffff169061ffff191617905538808e613a1e565b610161548155600191506139ff565b60405162461bcd60e51b815260206004820152601b60248201527f73657453636f72653a20496e76616c6964207369676e617475726500000000006044820152606490fd5b90501515386139bf565b634e487b7160e01b88526041600452602488fd5b634e487b7160e01b85526041600452602485fd5b60405162461bcd60e51b815260206004820152604660248201527f73657453636f72653a2063616c63756c6174696f6e4d6f64656c2073686f756c60448201527f64206265206c657373207468616e2063616c63756c6174696f6e206d6f64656c6064820152650818dbdd5b9d60d21b608482015260a490fd5b60405162461bcd60e51b8152602060048201526024808201527f73657453636f72653a205369676e6564207472616e73616374696f6e206578706044820152631a5c995960e21b6064820152608490fd5b60405162461bcd60e51b815260206004820152602760248201527f73657453636f72653a2053636f7265206d757374206265206c6573732074686160448201526606e2031303030360cc1b6064820152608490fd5b60ff60fb541661430f57565b60405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606490fd5b1561434e57565b60405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606490fd5b600581101561449757806143a45750565b600181036143f15760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606490fd5b6002810361443e5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606490fd5b60031461444757565b60405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608490fd5b634e487b7160e01b600052602160045260246000fd5b9060418151146000146144db576144d7916020820151906060604084015193015160001a906144e5565b9091565b5050600090600290565b9291907f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083116145685791608094939160ff602094604051948552168484015260408301526060820152600093849182805260015afa1561455b5781516001600160a01b03811615614555579190565b50600190565b50604051903d90823e3d90fd5b50505050600090600390565b60405161458481610def81612c20565b8051908115614594576020012090565b505061012d5480156145a35790565b507fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47090565b6040516145d881610def81612cd5565b80519081156145e8576020012090565b505061012e5480156145a35790565b8181029291811591840414171561376257565b9190811015612ac05760051b0190565b356001600160a01b03811681036103615790565b8051821015612ac05760209160051b010190565b600081815260676020526040902054614665906001600160a01b03161515612b77565b600081815260209060978252604090610def614688838320845192838092612dff565b825161469781610def81612d6a565b80519182156148d55780516148a4575050506000848152606760205260409020546146cc906001600160a01b03161515612b77565b8151916146e3836146dc81612d6a565b0384612951565b82511561488f5784859083967a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000009081811015614880575b50506d04ee2d6d415b85acef810000000080831015614872575b50662386f26fc1000080831015614863575b506305f5e10080831015614854575b5061271080831015614845575b506064821015614835575b600a8092101561482b575b600190816021818a019961479e6147898c612972565b9b61479689519d8e612951565b808d52612972565b8b8b019890601f1901368a37508a0101905b6147f5575b50505050906147e9946129ff9493925195836147da88955180928880890191016127b7565b840191518093868401906127b7565b01038084520182612951565b600019019083906f181899199a1a9b1b9c1cb0b131b232b360811b8282061a835304918215614826579190826147b0565b6147b5565b9560010195614773565b9590606460029104910195614768565b6004919792049101953861475d565b60089197920491019538614750565b60109197920491019538614741565b86919792049101953861472f565b91975091500481953880614715565b9250925050519061489f8261291b565b815290565b9195509150846148c16129ff9594519687948680870191016127b7565b82016147e9825180938680850191016127b7565b955050505050509056fea26469706673582212207ca7ebfbc7c911123c3a3b3fdff9691d019b0d91c6a56be52104a7518e95fd2c64736f6c63430008150033
Loading...
Loading
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
Multichain Portfolio | 35 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.