// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)pragmasolidity ^0.8.1;/**
* @dev Collection of functions related to the address type
*/libraryAddress{
/**
* @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
* ====
*
* [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.
* ====
*/functionisContract(address account) internalviewreturns (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://diligence.consensys.net/posts/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.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/functionsendValue(addresspayable 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._
*/functionfunctionCall(address target, bytesmemory data) internalreturns (bytesmemory) {
return functionCall(target, data, "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._
*/functionfunctionCall(address target,
bytesmemory data,
stringmemory errorMessage
) internalreturns (bytesmemory) {
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._
*/functionfunctionCallWithValue(address target,
bytesmemory data,
uint256 value
) internalreturns (bytesmemory) {
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._
*/functionfunctionCallWithValue(address target,
bytesmemory data,
uint256 value,
stringmemory errorMessage
) internalreturns (bytesmemory) {
require(address(this).balance>= value, "Address: insufficient balance for call");
require(isContract(target), "Address: call to non-contract");
(bool success, bytesmemory returndata) = target.call{value: value}(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/functionfunctionStaticCall(address target, bytesmemory data) internalviewreturns (bytesmemory) {
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._
*/functionfunctionStaticCall(address target,
bytesmemory data,
stringmemory errorMessage
) internalviewreturns (bytesmemory) {
require(isContract(target), "Address: static call to non-contract");
(bool success, bytesmemory returndata) = target.staticcall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/functionfunctionDelegateCall(address target, bytesmemory data) internalreturns (bytesmemory) {
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._
*/functionfunctionDelegateCall(address target,
bytesmemory data,
stringmemory errorMessage
) internalreturns (bytesmemory) {
require(isContract(target), "Address: delegate call to non-contract");
(bool success, bytesmemory returndata) = target.delegatecall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason using the provided one.
*
* _Available since v4.3._
*/functionverifyCallResult(bool success,
bytesmemory returndata,
stringmemory errorMessage
) internalpurereturns (bytesmemory) {
if (success) {
return returndata;
} else {
// Look for revert reason and bubble it up if presentif (returndata.length>0) {
// The easiest way to bubble the revert reason is using memory via assembly/// @solidity memory-safe-assemblyassembly {
let returndata_size :=mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}
Contract Source Code
File 2 of 16: Business.sol
// SPDX-License-Identifier: LGPL-3.0-onlypragmasolidity ^0.8.0;import"@openzeppelin/contracts/utils/math/SafeMath.sol";
libraryBusiness{
usingSafeMathforuint256;
uint256constant MAX_ROYALTY_RATE =2000;
uint256constant BASE_RATE =10000;
uint256constant MAX_ADDR_LENGTH =5;
function_checkAddr(address[] memory addrs) internalpurereturns (bool) {
require(
addrs.length<= MAX_ADDR_LENGTH,
"Max Royalty addr length must <= 5"
);
for (uint256 i =0; i < addrs.length; i++) {
require(addrs[i] !=address(0), "Invalid addrs");
}
returntrue;
}
function_checkRates(uint256[] memory rates) internalpurereturns (bool) {
uint256 total =0;
for (uint256 i =0; i < rates.length; i++) {
total += rates[i];
}
require(total <= MAX_ROYALTY_RATE, "Total royalty must <= 2000");
returntrue;
}
function_getAmountsFromRates(uint256[] memory rates, uint256 value)
internalpurereturns (uint256[] memory)
{
uint256[] memory amounts =newuint256[](rates.length);
for (uint256 i =0; i < rates.length; i++) {
uint256 amount = value.mul(rates[i]).div(BASE_RATE);
amounts[i] = amount;
}
return amounts;
}
function_pushAddr(address[] memory addrs, address addr)
internalpurereturns (address[] memory)
{
address[] memory result =newaddress[](addrs.length+1);
for (uint256 i =0; i < addrs.length; i++) result[i] = addrs[i];
result[addrs.length] = addr;
return result;
}
function_pushUint(uint256[] memory rates, uint256 rate)
internalpurereturns (uint256[] memory)
{
uint256[] memory result =newuint256[](rates.length+1);
for (uint256 i =0; i < rates.length; i++) result[i] = rates[i];
result[rates.length] = rate;
return result;
}
}
Contract Source Code
File 3 of 16: Context.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)pragmasolidity ^0.8.0;/**
* @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.
*/abstractcontractContext{
function_msgSender() internalviewvirtualreturns (address) {
returnmsg.sender;
}
function_msgData() internalviewvirtualreturns (bytescalldata) {
returnmsg.data;
}
}
Contract Source Code
File 4 of 16: ERC165.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)pragmasolidity ^0.8.0;import"./IERC165.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.
*/abstractcontractERC165isIERC165{
/**
* @dev See {IERC165-supportsInterface}.
*/functionsupportsInterface(bytes4 interfaceId) publicviewvirtualoverridereturns (bool) {
return interfaceId ==type(IERC165).interfaceId;
}
}
Contract Source Code
File 5 of 16: ERC721.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol)pragmasolidity ^0.8.0;import"./IERC721.sol";
import"./IERC721Receiver.sol";
import"./extensions/IERC721Metadata.sol";
import"../../utils/Address.sol";
import"../../utils/Context.sol";
import"../../utils/Strings.sol";
import"../../utils/introspection/ERC165.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}.
*/contractERC721isContext, ERC165, IERC721, IERC721Metadata{
usingAddressforaddress;
usingStringsforuint256;
// Token namestringprivate _name;
// Token symbolstringprivate _symbol;
// Mapping from token ID to owner addressmapping(uint256=>address) private _owners;
// Mapping owner address to token countmapping(address=>uint256) private _balances;
// Mapping from token ID to approved addressmapping(uint256=>address) private _tokenApprovals;
// Mapping from owner to operator approvalsmapping(address=>mapping(address=>bool)) private _operatorApprovals;
/**
* @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
*/constructor(stringmemory name_, stringmemory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev See {IERC165-supportsInterface}.
*/functionsupportsInterface(bytes4 interfaceId) publicviewvirtualoverride(ERC165, IERC165) returns (bool) {
return
interfaceId ==type(IERC721).interfaceId||
interfaceId ==type(IERC721Metadata).interfaceId||super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC721-balanceOf}.
*/functionbalanceOf(address owner) publicviewvirtualoverridereturns (uint256) {
require(owner !=address(0), "ERC721: address zero is not a valid owner");
return _balances[owner];
}
/**
* @dev See {IERC721-ownerOf}.
*/functionownerOf(uint256 tokenId) publicviewvirtualoverridereturns (address) {
address owner = _owners[tokenId];
require(owner !=address(0), "ERC721: invalid token ID");
return owner;
}
/**
* @dev See {IERC721Metadata-name}.
*/functionname() publicviewvirtualoverridereturns (stringmemory) {
return _name;
}
/**
* @dev See {IERC721Metadata-symbol}.
*/functionsymbol() publicviewvirtualoverridereturns (stringmemory) {
return _symbol;
}
/**
* @dev See {IERC721Metadata-tokenURI}.
*/functiontokenURI(uint256 tokenId) publicviewvirtualoverridereturns (stringmemory) {
_requireMinted(tokenId);
stringmemory baseURI = _baseURI();
returnbytes(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() internalviewvirtualreturns (stringmemory) {
return"";
}
/**
* @dev See {IERC721-approve}.
*/functionapprove(address to, uint256 tokenId) publicvirtualoverride{
address owner = ERC721.ownerOf(tokenId);
require(to != owner, "ERC721: approval to current owner");
require(
_msgSender() == owner || isApprovedForAll(owner, _msgSender()),
"ERC721: approve caller is not token owner nor approved for all"
);
_approve(to, tokenId);
}
/**
* @dev See {IERC721-getApproved}.
*/functiongetApproved(uint256 tokenId) publicviewvirtualoverridereturns (address) {
_requireMinted(tokenId);
return _tokenApprovals[tokenId];
}
/**
* @dev See {IERC721-setApprovalForAll}.
*/functionsetApprovalForAll(address operator, bool approved) publicvirtualoverride{
_setApprovalForAll(_msgSender(), operator, approved);
}
/**
* @dev See {IERC721-isApprovedForAll}.
*/functionisApprovedForAll(address owner, address operator) publicviewvirtualoverridereturns (bool) {
return _operatorApprovals[owner][operator];
}
/**
* @dev See {IERC721-transferFrom}.
*/functiontransferFrom(addressfrom,
address to,
uint256 tokenId
) publicvirtualoverride{
//solhint-disable-next-line max-line-lengthrequire(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved");
_transfer(from, to, tokenId);
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/functionsafeTransferFrom(addressfrom,
address to,
uint256 tokenId
) publicvirtualoverride{
safeTransferFrom(from, to, tokenId, "");
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/functionsafeTransferFrom(addressfrom,
address to,
uint256 tokenId,
bytesmemory data
) publicvirtualoverride{
require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor 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(addressfrom,
address to,
uint256 tokenId,
bytesmemory data
) internalvirtual{
_transfer(from, to, tokenId);
require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer");
}
/**
* @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) internalviewvirtualreturns (bool) {
return _owners[tokenId] !=address(0);
}
/**
* @dev Returns whether `spender` is allowed to manage `tokenId`.
*
* Requirements:
*
* - `tokenId` must exist.
*/function_isApprovedOrOwner(address spender, uint256 tokenId) internalviewvirtualreturns (bool) {
address owner = ERC721.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) internalvirtual{
_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,
bytesmemory data
) internalvirtual{
_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) internalvirtual{
require(to !=address(0), "ERC721: mint to the zero address");
require(!_exists(tokenId), "ERC721: token already minted");
_beforeTokenTransfer(address(0), to, tokenId);
_balances[to] +=1;
_owners[tokenId] = to;
emit Transfer(address(0), to, tokenId);
_afterTokenTransfer(address(0), to, tokenId);
}
/**
* @dev Destroys `tokenId`.
* The approval is cleared when the token is burned.
*
* Requirements:
*
* - `tokenId` must exist.
*
* Emits a {Transfer} event.
*/function_burn(uint256 tokenId) internalvirtual{
address owner = ERC721.ownerOf(tokenId);
_beforeTokenTransfer(owner, address(0), tokenId);
// Clear approvals
_approve(address(0), tokenId);
_balances[owner] -=1;
delete _owners[tokenId];
emit Transfer(owner, address(0), tokenId);
_afterTokenTransfer(owner, address(0), tokenId);
}
/**
* @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(addressfrom,
address to,
uint256 tokenId
) internalvirtual{
require(ERC721.ownerOf(tokenId) ==from, "ERC721: transfer from incorrect owner");
require(to !=address(0), "ERC721: transfer to the zero address");
_beforeTokenTransfer(from, to, tokenId);
// Clear approvals from the previous owner
_approve(address(0), tokenId);
_balances[from] -=1;
_balances[to] +=1;
_owners[tokenId] = to;
emit Transfer(from, to, tokenId);
_afterTokenTransfer(from, to, tokenId);
}
/**
* @dev Approve `to` to operate on `tokenId`
*
* Emits an {Approval} event.
*/function_approve(address to, uint256 tokenId) internalvirtual{
_tokenApprovals[tokenId] = to;
emit Approval(ERC721.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
) internalvirtual{
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) internalviewvirtual{
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(addressfrom,
address to,
uint256 tokenId,
bytesmemory data
) privatereturns (bool) {
if (to.isContract()) {
try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) {
return retval == IERC721Receiver.onERC721Received.selector;
} catch (bytesmemory reason) {
if (reason.length==0) {
revert("ERC721: transfer to non ERC721Receiver implementer");
} else {
/// @solidity memory-safe-assemblyassembly {
revert(add(32, reason), mload(reason))
}
}
}
} else {
returntrue;
}
}
/**
* @dev Hook that is called before any token transfer. This includes minting
* and burning.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
* transferred to `to`.
* - When `from` is zero, `tokenId` will be minted for `to`.
* - When `to` is zero, ``from``'s `tokenId` will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/function_beforeTokenTransfer(addressfrom,
address to,
uint256 tokenId
) internalvirtual{}
/**
* @dev Hook that is called after any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/function_afterTokenTransfer(addressfrom,
address to,
uint256 tokenId
) internalvirtual{}
}
Contract Source Code
File 6 of 16: ERC721Enumerable.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol)pragmasolidity ^0.8.0;import"../ERC721.sol";
import"./IERC721Enumerable.sol";
/**
* @dev This implements an optional extension of {ERC721} defined in the EIP that adds
* enumerability of all the token ids in the contract as well as all token ids owned by each
* account.
*/abstractcontractERC721EnumerableisERC721, IERC721Enumerable{
// Mapping from owner to list of owned token IDsmapping(address=>mapping(uint256=>uint256)) private _ownedTokens;
// Mapping from token ID to index of the owner tokens listmapping(uint256=>uint256) private _ownedTokensIndex;
// Array with all token ids, used for enumerationuint256[] private _allTokens;
// Mapping from token id to position in the allTokens arraymapping(uint256=>uint256) private _allTokensIndex;
/**
* @dev See {IERC165-supportsInterface}.
*/functionsupportsInterface(bytes4 interfaceId) publicviewvirtualoverride(IERC165, ERC721) returns (bool) {
return interfaceId ==type(IERC721Enumerable).interfaceId||super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
*/functiontokenOfOwnerByIndex(address owner, uint256 index) publicviewvirtualoverridereturns (uint256) {
require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
return _ownedTokens[owner][index];
}
/**
* @dev See {IERC721Enumerable-totalSupply}.
*/functiontotalSupply() publicviewvirtualoverridereturns (uint256) {
return _allTokens.length;
}
/**
* @dev See {IERC721Enumerable-tokenByIndex}.
*/functiontokenByIndex(uint256 index) publicviewvirtualoverridereturns (uint256) {
require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
return _allTokens[index];
}
/**
* @dev Hook that is called before any token transfer. This includes minting
* and burning.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
* transferred to `to`.
* - When `from` is zero, `tokenId` will be minted for `to`.
* - When `to` is zero, ``from``'s `tokenId` will be burned.
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/function_beforeTokenTransfer(addressfrom,
address to,
uint256 tokenId
) internalvirtualoverride{
super._beforeTokenTransfer(from, to, tokenId);
if (from==address(0)) {
_addTokenToAllTokensEnumeration(tokenId);
} elseif (from!= to) {
_removeTokenFromOwnerEnumeration(from, tokenId);
}
if (to ==address(0)) {
_removeTokenFromAllTokensEnumeration(tokenId);
} elseif (to !=from) {
_addTokenToOwnerEnumeration(to, tokenId);
}
}
/**
* @dev Private function to add a token to this extension's ownership-tracking data structures.
* @param to address representing the new owner of the given token ID
* @param tokenId uint256 ID of the token to be added to the tokens list of the given address
*/function_addTokenToOwnerEnumeration(address to, uint256 tokenId) private{
uint256 length = ERC721.balanceOf(to);
_ownedTokens[to][length] = tokenId;
_ownedTokensIndex[tokenId] = length;
}
/**
* @dev Private function to add a token to this extension's token tracking data structures.
* @param tokenId uint256 ID of the token to be added to the tokens list
*/function_addTokenToAllTokensEnumeration(uint256 tokenId) private{
_allTokensIndex[tokenId] = _allTokens.length;
_allTokens.push(tokenId);
}
/**
* @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
* while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
* gas optimizations e.g. when performing a transfer operation (avoiding double writes).
* This has O(1) time complexity, but alters the order of the _ownedTokens array.
* @param from address representing the previous owner of the given token ID
* @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
*/function_removeTokenFromOwnerEnumeration(addressfrom, uint256 tokenId) private{
// To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and// then delete the last slot (swap and pop).uint256 lastTokenIndex = ERC721.balanceOf(from) -1;
uint256 tokenIndex = _ownedTokensIndex[tokenId];
// When the token to delete is the last token, the swap operation is unnecessaryif (tokenIndex != lastTokenIndex) {
uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];
_ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
_ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
}
// This also deletes the contents at the last position of the arraydelete _ownedTokensIndex[tokenId];
delete _ownedTokens[from][lastTokenIndex];
}
/**
* @dev Private function to remove a token from this extension's token tracking data structures.
* This has O(1) time complexity, but alters the order of the _allTokens array.
* @param tokenId uint256 ID of the token to be removed from the tokens list
*/function_removeTokenFromAllTokensEnumeration(uint256 tokenId) private{
// To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and// then delete the last slot (swap and pop).uint256 lastTokenIndex = _allTokens.length-1;
uint256 tokenIndex = _allTokensIndex[tokenId];
// When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so// rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding// an 'if' statement (like in _removeTokenFromOwnerEnumeration)uint256 lastTokenId = _allTokens[lastTokenIndex];
_allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
_allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index// This also deletes the contents at the last position of the arraydelete _allTokensIndex[tokenId];
_allTokens.pop();
}
}
Contract Source Code
File 7 of 16: Genify.sol
// SPDX-License-Identifier: LGPL-3.0-onlyimport"./interfaces/IRandomizer.sol";
import"./interfaces/IGenArt721CoreContractV3.sol";
import"@openzeppelin/contracts/utils/Strings.sol";
import"@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import"./utils/Business.sol";
pragmasolidity 0.8.9;contractGenifyisERC721Enumerable, IGenArt721CoreContractV3{
eventAddProject(uint256 projectId,
string projectName,
string lambHash,
string projectLicense,
string projectWebsite,
string projectDescription,
string tags,
string viewport,
uint256 renderDelay
);
eventRemoveProject(uint256 projectId);
eventUpdateProjectName(uint256 projectId, string projectName);
eventUpdateProjectDescription(uint256 projectId,
string projectDescription
);
eventUpdateProjectWebsite(uint256 projectId, string website);
eventUpdateProjectLicense(uint256 projectId, string license);
eventUpdateProjectTags(uint256 projectId, string tags);
eventUpdateProjectViewPort(uint256 projectId, string viewport);
eventUpdateProjectRenderDelay(uint256 projectId, uint256 renderDelay);
eventUpdateProjectRoyaltyData(uint256 projectId,
address[] addrs,
uint256[] rates
);
/// randomizer contract
IRandomizer public randomizerContract;
usingSafeMathforuint256;
structProject {
string name;
string description;
string website;
string license;
string projectBaseURI;
string tags;
string viewport;
string minterType;
uint256 renderDelay;
uint256 invocations;
uint256 maxInvocations;
string lambHash; // for generate code storage in lambda storage networkbool active;
bool locked;
bool paused;
}
enumStage {
Tinder,
Flame
}
Stage stage;
uint256constant ONE_MILLION =1_000_000;
mapping(uint256=> Project) projects;
// All financial functions are stripped from struct for visibilitymapping(uint256=>addresspayable) public projectIdToArtistAddress;
mapping(uint256=>addresspayable) public projectIdToAdditionalPayee;
mapping(uint256=>uint256) public projectIdToAdditionalPayeePercentage;
addresspayablepublic alleriaAddress;
/// Percentage of mint revenue allocated to Alleriauint256public alleriaPercentage =2;
uint256public alleriaMarketRates =250;
mapping(uint256=>bytes32) public tokenIdToHash;
/// admin for contractaddresspublic admin;
/// true if address is whitelistedmapping(address=>bool) public isWhitelisted;
// true if address is in tinderListedmapping(address=>bool) public isTinderListed;
/// single minter allowed for this core contractaddresspublic minterContract;
/// next project ID to be createduint256public nextProjectId =1;
// alleria base urlstringprivate BASE_URL ="";
mapping(uint256=>address[]) public projectRoyaltyAddress;
mapping(uint256=>uint256[]) public projectRoyaltyRate;
modifieronlyValidTokenId(uint256 _tokenId) {
require(_exists(_tokenId), "Token ID does not exist");
_;
}
modifieronlyUnlocked(uint256 _projectId) {
require(!projects[_projectId].locked, "Only if unlocked");
_;
}
modifierexistProject(uint256 _projectId) {
require(
projectIdToArtistAddress[_projectId] !=address(0),
"no exist projectId"
);
_;
}
modifieronlyArtist(uint256 _projectId) {
require(
msg.sender== projectIdToArtistAddress[_projectId],
"Only artist"
);
_;
}
modifieronlyAdmin() {
require(msg.sender== admin, "Only admin");
_;
}
modifieronlyWhitelisted() {
require(isWhitelisted[msg.sender], "Only whitelisted");
_;
}
modifieronlyWhitelistedInTinder() {
if (stage == Stage.Tinder) {
require(
isWhitelisted[msg.sender] || isTinderListed[msg.sender],
"Only whitelisted or tinderlisted"
);
}
_;
}
modifieronlyArtistOrWhitelisted(uint256 _projectId) {
require(
isWhitelisted[msg.sender] ||msg.sender== projectIdToArtistAddress[_projectId],
"Only artist or whitelisted"
);
_;
}
modifieronlyProjectInvocationsIsZeroOrWhitelisted(uint256 _projectId) {
uint256 invocations = projects[_projectId].invocations;
require(
isWhitelisted[msg.sender] || invocations ==0,
"Only project invocations is zero or whitelisted"
);
_;
}
/**
* @notice Initializes contract.
* @param _tokenName Name of token.
* @param _tokenSymbol Token symbol.
* @param _randomizerContract Randomizer contract.
*/constructor(stringmemory _tokenName,
stringmemory _tokenSymbol,
stringmemory _baseUrl,
address _randomizerContract
) ERC721(_tokenName, _tokenSymbol) {
admin =msg.sender;
isWhitelisted[msg.sender] =true;
alleriaAddress =payable(msg.sender);
randomizerContract = IRandomizer(_randomizerContract);
stage = Stage.Tinder;
BASE_URL = _baseUrl;
}
/**
* @notice Mints a token from project `_projectId` and sets the
* token's owner to `_to`.
* @param _to Address to be the minted token's owner.
* @param _projectId Project ID to mint a token on.
* @param _by Purchaser of minted token.
* @dev sender must be a whitelisted minter
*/functionmint(address _to,
uint256 _projectId,
address _by
) externalonlyUnlocked(_projectId) returns (uint256 _tokenId) {
require(
msg.sender== minterContract,
"Must mint from the allowed minter contract."
);
require(
projects[_projectId].invocations <
projects[_projectId].maxInvocations,
"Must not exceed max invocations"
);
require(
projects[_projectId].active ||
_by == projectIdToArtistAddress[_projectId],
"Project must exist and be active"
);
require(
!projects[_projectId].paused ||
_by == projectIdToArtistAddress[_projectId],
"Purchases are paused."
);
return _mintToken(_to, _projectId);
}
function_mintToken(address _to, uint256 _projectId)
internalreturns (uint256 _tokenId)
{
uint256 nextTokenId = (_projectId * ONE_MILLION) +
projects[_projectId].invocations;
projects[_projectId].invocations++;
bytes32 tokenHash =keccak256(
abi.encodePacked(
projects[_projectId].invocations,
blockhash(block.number-1),
randomizerContract.returnValue()
)
);
tokenIdToHash[nextTokenId] = tokenHash;
_mint(_to, nextTokenId);
// Do not need to also log `projectId` in event, as the `projectId` for// a given token can be derived from the `tokenId` with:// projectId = tokenId / 1_000_000emit Mint(_to, nextTokenId, tokenHash);
return nextTokenId;
}
/**
* @notice Update contract stage to _stage.
*/functionupdateStage(Stage _stage) publiconlyAdmin{
stage = _stage;
}
/**
* @notice Updates contract admin to `_adminAddress`.
*/functionupdateAdmin(address _adminAddress) publiconlyAdmin{
admin = _adminAddress;
}
functionupdateBaseUrl(stringmemory _baseUrl) publiconlyAdmin{
BASE_URL = _baseUrl;
}
/**
* @notice Updates alleriaAddress to `_alleriaAddress`.
*/functionupdateAlleriaAddress(addresspayable _alleriaAddress)
publiconlyAdmin{
alleriaAddress = _alleriaAddress;
}
functionupdateAlleriaMarketRates(uint256 _rates) publiconlyAdmin{
alleriaMarketRates = _rates;
}
/**
* @notice Updates Art Blocks mint revenue percentage to
* `_alleriasPercentage`.
*/functionupdateAlleriaPercentage(uint256 _alleriaPercentage)
publiconlyAdmin{
require(_alleriaPercentage <=25, "Max of 25%");
alleriaPercentage = _alleriaPercentage;
}
/**
* @notice Whitelists `_address`.
*/functionaddWhitelisted(address _address) publiconlyAdmin{
isWhitelisted[_address] =true;
}
/**
* @notice Revokes whitelisting of `_address`.
*/functionremoveWhitelisted(address _address) publiconlyAdmin{
isWhitelisted[_address] =false;
}
functionaddTinderlisted(address _address) publiconlyWhitelisted{
isTinderListed[_address] =true;
}
functionremoveTinderlisted(address _address) publiconlyWhitelisted{
isTinderListed[_address] =false;
}
/**
* @notice updates minter to `_address`.
*/functionupdateMinterContract(address _address) publiconlyAdmin{
minterContract = _address;
emit MinterUpdated(_address);
}
/**
* @notice Updates randomizer to `_randomizerAddress`.
*/functionupdateRandomizerAddress(address _randomizerAddress)
publiconlyAdmin{
randomizerContract = IRandomizer(_randomizerAddress);
}
/**
* @notice admin update project lock status.
*/functionupdateProjectLocked(uint256 _projectId, bool _locked)
publiconlyAdminexistProject(_projectId)
{
projects[_projectId].locked = _locked;
}
functionaddProject(stringmemory _projectName,
stringmemory _lambHash,
stringmemory _projectLicense,
stringmemory _projectWebsite,
stringmemory _projectDescription,
stringmemory _tags,
stringmemory _viewport,
uint256 _renderDelay
) publiconlyWhitelistedInTinder{
uint256 projectId = nextProjectId;
projectIdToArtistAddress[projectId] =payable(msg.sender);
projects[projectId].name= _projectName;
projects[projectId].lambHash = _lambHash;
projects[projectId].license = _projectLicense;
projects[projectId].website = _projectWebsite;
projects[projectId].description = _projectDescription;
projects[projectId].tags = _tags;
projects[projectId].viewport = _viewport;
projects[projectId].renderDelay = _renderDelay;
projects[projectId].paused =false;
projects[projectId].active =true;
projects[projectId].maxInvocations = ONE_MILLION;
nextProjectId = nextProjectId +1;
emit AddProject(
projectId,
_projectName,
_lambHash,
_projectLicense,
_projectWebsite,
_projectDescription,
_tags,
_viewport,
_renderDelay
);
}
functionremoveProject(uint256 _projectId)
publiconlyUnlocked(_projectId)
onlyArtistOrWhitelisted(_projectId)
onlyProjectInvocationsIsZeroOrWhitelisted(_projectId)
{
delete projects[_projectId];
delete projectIdToArtistAddress[_projectId];
delete projectRoyaltyAddress[_projectId];
delete projectRoyaltyRate[_projectId];
emit RemoveProject(_projectId);
}
/**
* @notice Updates name of project `_projectId` to be `_projectName`.
*/functionupdateProjectName(uint256 _projectId, stringmemory _projectName)
publiconlyUnlocked(_projectId)
onlyArtistOrWhitelisted(_projectId)
{
projects[_projectId].name= _projectName;
emit UpdateProjectName(_projectId, _projectName);
}
functionupdateProjectDescription(uint256 _projectId,
stringmemory _projectDescription
) publiconlyUnlocked(_projectId) onlyArtistOrWhitelisted(_projectId) {
projects[_projectId].description = _projectDescription;
emit UpdateProjectDescription(_projectId, _projectDescription);
}
/**
* @notice Updates website of project `_projectId` to be `_projectWebsite`.
*/functionupdateProjectWebsite(uint256 _projectId,
stringmemory _projectWebsite
) publiconlyUnlocked(_projectId) onlyArtistOrWhitelisted(_projectId) {
projects[_projectId].website = _projectWebsite;
emit UpdateProjectWebsite(_projectId, _projectWebsite);
}
/**
* @notice Updates license for project `_projectId`.
*/functionupdateProjectLicense(uint256 _projectId,
stringmemory _projectLicense
) publiconlyUnlocked(_projectId) onlyArtistOrWhitelisted(_projectId) {
projects[_projectId].license = _projectLicense;
emit UpdateProjectLicense(_projectId, _projectLicense);
}
functionupdateProjectTags(uint256 _projectId, stringmemory _tags)
publiconlyUnlocked(_projectId)
onlyArtistOrWhitelisted(_projectId)
{
projects[_projectId].tags = _tags;
emit UpdateProjectTags(_projectId, _tags);
}
functionupdateProjectViewPort(uint256 _projectId, stringmemory _viewport)
publiconlyUnlocked(_projectId)
onlyArtistOrWhitelisted(_projectId)
{
projects[_projectId].viewport = _viewport;
emit UpdateProjectViewPort(_projectId, _viewport);
}
functionupdateProjectRenderDelay(uint256 _projectId, uint256 _renderDelay)
publiconlyUnlocked(_projectId)
onlyArtistOrWhitelisted(_projectId)
{
projects[_projectId].renderDelay = _renderDelay;
emit UpdateProjectRenderDelay(_projectId, _renderDelay);
}
functionupdateProjectRoyaltyData(uint256 _projectId,
address[] memory _addrs,
uint256[] memory _rates
)
externalonlyUnlocked(_projectId)
onlyArtistOrWhitelisted(_projectId)
onlyProjectInvocationsIsZeroOrWhitelisted(_projectId)
{
require(_addrs.length!=0, "royalty length invalid");
require(_addrs.length== _rates.length, "invalid addr amount length");
if (Business._checkAddr(_addrs) && Business._checkRates(_rates)) {
projectRoyaltyAddress[_projectId] = _addrs;
projectRoyaltyRate[_projectId] = _rates;
}
emit UpdateProjectRoyaltyData(_projectId, _addrs, _rates);
}
functionsetProjectMinterType(uint256 _projectId, stringmemory _type)
externalonlyUnlocked(_projectId)
onlyArtistOrWhitelisted(_projectId)
{
projects[_projectId].minterType = _type;
}
/**
* @notice Updates base URI for project `_projectId` to `_newBaseURI`.
*/functionupdateProjectBaseURI(uint256 _projectId, stringmemory _newBaseURI)
publiconlyWhitelisted{
projects[_projectId].projectBaseURI = _newBaseURI;
}
functionprojectDetails(uint256 _projectId)
publicviewreturns (stringmemory projectName,
stringmemory description,
stringmemory website,
stringmemory license,
stringmemory lambHash,
stringmemory tags,
stringmemory viewport,
stringmemory minterType,
uint256 renderDelay,
address[] memory royaltyAddrs,
uint256[] memory royaltyRates
)
{
projectName = projects[_projectId].name;
description = projects[_projectId].description;
website = projects[_projectId].website;
license = projects[_projectId].license;
lambHash = projects[_projectId].lambHash;
tags = projects[_projectId].tags;
viewport = projects[_projectId].viewport;
minterType = projects[_projectId].minterType;
renderDelay = projects[_projectId].renderDelay;
royaltyAddrs = Business._pushAddr(
projectRoyaltyAddress[_projectId],
address(alleriaAddress)
);
royaltyRates = Business._pushUint(
projectRoyaltyRate[_projectId],
alleriaMarketRates
);
}
/**
* @notice Returns project token information for project `_projectId`.
* @param _projectId Project to be queried
* @return artistAddress Project Artist's address
* @return invocations Current number of invocations
* @return maxInvocations Maximum allowed invocations
* @return active Boolean representing if project is currently active
* @return additionalPayee Additional payee address
* @return additionalPayeePercentage Percentage of artist revenue
* to be sent to the additional payee's address
* @dev price and currency info are located on minter contracts
*/functionprojectInfo(uint256 _projectId)
publicviewreturns (address artistAddress,
uint256 invocations,
uint256 maxInvocations,
bool active,
address additionalPayee,
uint256 additionalPayeePercentage
)
{
artistAddress = projectIdToArtistAddress[_projectId];
invocations = projects[_projectId].invocations;
maxInvocations = projects[_projectId].maxInvocations;
active = projects[_projectId].active;
additionalPayee = projectIdToAdditionalPayee[_projectId];
additionalPayeePercentage = projectIdToAdditionalPayeePercentage[
_projectId
];
}
/**
* @notice Returns script information for project `_projectId`.
* @return lambHash LAMB hash for project
* @return locked Boolean representing if project is locked
* @return paused Boolean representing if project is paused
*/functionprojectScriptInfo(uint256 _projectId)
externalviewreturns (stringmemory lambHash,
bool locked,
bool paused
)
{
lambHash = projects[_projectId].lambHash;
locked = projects[_projectId].locked;
paused = projects[_projectId].paused;
}
/**
* @notice Returns base URI for project `_projectId`.
*/functionprojectURIInfo(uint256 _projectId)
externalviewreturns (stringmemory projectBaseURI)
{
projectBaseURI = projects[_projectId].projectBaseURI;
}
/**
* @notice Backwards-compatible (pre-V3) function returning if `_minter` is
* minterContract.
*/functionisMintWhitelisted(address _minter) externalviewreturns (bool) {
return (minterContract == _minter);
}
/**
* @notice Gets the project ID for a given `_tokenId`.
*/functiontokenIdToProjectId(uint256 _tokenId)
externalpurereturns (uint256 _projectId)
{
return _tokenId / ONE_MILLION;
}
/**
* @notice Gets token URI for token ID `_tokenId`.
*/functiontokenURI(uint256 _tokenId)
publicviewoverrideonlyValidTokenId(_tokenId)
returns (stringmemory)
{
returnstring(abi.encodePacked(BASE_URL, Strings.toString(_tokenId)));
}
functiongetRoyalty(address tokenAddress,
uint256 tokenId,
uint256 value
)
externalreturns (addresspayable[] memory recipients, uint256[] memory amounts)
{
uint256 projectId = tokenId.div(ONE_MILLION);
address[] memory addrs = Business._pushAddr(
projectRoyaltyAddress[projectId],
address(alleriaAddress)
);
addresspayable[] memory _recipients =newaddresspayable[](
addrs.length
);
for (uint256 i =0; i < addrs.length; i++) {
_recipients[i] =payable(addrs[i]);
}
recipients = _recipients;
uint256[] memory rates = Business._pushUint(
projectRoyaltyRate[projectId],
alleriaMarketRates
);
amounts = Business._getAmountsFromRates(rates, value);
return (recipients, amounts);
}
functiongetRoyaltyView(address tokenAddress,
uint256 tokenId,
uint256 value
)
externalviewreturns (addresspayable[] memory recipients, uint256[] memory amounts)
{
uint256 projectId = tokenId.div(ONE_MILLION);
address[] memory addrs = Business._pushAddr(
projectRoyaltyAddress[projectId],
address(alleriaAddress)
);
addresspayable[] memory _recipients =newaddresspayable[](
addrs.length
);
for (uint256 i =0; i < addrs.length; i++) {
_recipients[i] =payable(addrs[i]);
}
recipients = _recipients;
uint256[] memory rates = Business._pushUint(
projectRoyaltyRate[projectId],
alleriaMarketRates
);
amounts = Business._getAmountsFromRates(rates, value);
return (recipients, amounts);
}
}
Contract Source Code
File 8 of 16: IERC165.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)pragmasolidity ^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}.
*/interfaceIERC165{
/**
* @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.
*/functionsupportsInterface(bytes4 interfaceId) externalviewreturns (bool);
}
Contract Source Code
File 9 of 16: IERC721.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol)pragmasolidity ^0.8.0;import"../../utils/introspection/IERC165.sol";
/**
* @dev Required interface of an ERC721 compliant contract.
*/interfaceIERC721isIERC165{
/**
* @dev Emitted when `tokenId` token is transferred from `from` to `to`.
*/eventTransfer(addressindexedfrom, addressindexed to, uint256indexed tokenId);
/**
* @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
*/eventApproval(addressindexed owner, addressindexed approved, uint256indexed tokenId);
/**
* @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
*/eventApprovalForAll(addressindexed owner, addressindexed operator, bool approved);
/**
* @dev Returns the number of tokens in ``owner``'s account.
*/functionbalanceOf(address owner) externalviewreturns (uint256 balance);
/**
* @dev Returns the owner of the `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/functionownerOf(uint256 tokenId) externalviewreturns (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.
*/functionsafeTransferFrom(addressfrom,
address to,
uint256 tokenId,
bytescalldata 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.
*/functionsafeTransferFrom(addressfrom,
address to,
uint256 tokenId
) external;
/**
* @dev Transfers `tokenId` token from `from` to `to`.
*
* WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
*
* 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.
*/functiontransferFrom(addressfrom,
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.
*/functionapprove(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.
*/functionsetApprovalForAll(address operator, bool _approved) external;
/**
* @dev Returns the account approved for `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/functiongetApproved(uint256 tokenId) externalviewreturns (address operator);
/**
* @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
*
* See {setApprovalForAll}
*/functionisApprovedForAll(address owner, address operator) externalviewreturns (bool);
}
Contract Source Code
File 10 of 16: IERC721Enumerable.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)pragmasolidity ^0.8.0;import"../IERC721.sol";
/**
* @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/interfaceIERC721EnumerableisIERC721{
/**
* @dev Returns the total amount of tokens stored by the contract.
*/functiontotalSupply() externalviewreturns (uint256);
/**
* @dev Returns a token ID owned by `owner` at a given `index` of its token list.
* Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
*/functiontokenOfOwnerByIndex(address owner, uint256 index) externalviewreturns (uint256);
/**
* @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
* Use along with {totalSupply} to enumerate all tokens.
*/functiontokenByIndex(uint256 index) externalviewreturns (uint256);
}
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)pragmasolidity ^0.8.0;/**
* @title ERC721 token receiver interface
* @dev Interface for any contract that wants to support safeTransfers
* from ERC721 asset contracts.
*/interfaceIERC721Receiver{
/**
* @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`.
*/functiononERC721Received(address operator,
addressfrom,
uint256 tokenId,
bytescalldata data
) externalreturns (bytes4);
}
Contract Source Code
File 13 of 16: IGenArt721CoreContractV3.sol
// SPDX-License-Identifier: LGPL-3.0-onlypragmasolidity ^0.8.0;interfaceIGenArt721CoreContractV3{
/**
* @notice Token ID `_tokenId` minted to `_to`.
*/eventMint(addressindexed _to,
uint256indexed _tokenId,
bytes32indexed _hash
);
/**
* @notice currentMinter updated to `_currentMinter`.
* @dev Implemented starting with V3 core
*/eventMinterUpdated(addressindexed _currentMinter);
// getter function of public variablefunctionadmin() externalviewreturns (address);
// getter function of public variablefunctionnextProjectId() externalviewreturns (uint256);
// getter function of public mappingfunctiontokenIdToProjectId(uint256 tokenId)
externalviewreturns (uint256 projectId);
functionisWhitelisted(address sender) externalviewreturns (bool);
// @dev this is not available in V0functionisMintWhitelisted(address minter) externalviewreturns (bool);
functionprojectIdToArtistAddress(uint256 _projectId)
externalviewreturns (addresspayable);
functionprojectIdToAdditionalPayee(uint256 _projectId)
externalviewreturns (addresspayable);
functionprojectIdToAdditionalPayeePercentage(uint256 _projectId)
externalviewreturns (uint256);
// @dev new function in V3 (deprecated projectTokenInfo)functionprojectInfo(uint256 _projectId)
externalviewreturns (address,
uint256,
uint256,
bool,
address,
uint256);
functionalleriaAddress() externalviewreturns (addresspayable);
functionalleriaPercentage() externalviewreturns (uint256);
functionmint(address _to,
uint256 _projectId,
address _by
) externalreturns (uint256 tokenId);
functionupdateProjectRoyaltyData(uint256 _projectId,
address[] memory _addrs,
uint256[] memory _rates
) external;
functionsetProjectMinterType(uint256 _projectId, stringmemory _type)
external;
}
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)pragmasolidity ^0.8.0;// CAUTION// This version of SafeMath should only be used with Solidity 0.8 or later,// because it relies on the compiler's built in overflow checks./**
* @dev Wrappers over Solidity's arithmetic operations.
*
* NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
* now has built in overflow checking.
*/librarySafeMath{
/**
* @dev Returns the addition of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/functiontryAdd(uint256 a, uint256 b) internalpurereturns (bool, uint256) {
unchecked {
uint256 c = a + b;
if (c < a) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the subtraction of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/functiontrySub(uint256 a, uint256 b) internalpurereturns (bool, uint256) {
unchecked {
if (b > a) return (false, 0);
return (true, a - b);
}
}
/**
* @dev Returns the multiplication of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/functiontryMul(uint256 a, uint256 b) internalpurereturns (bool, uint256) {
unchecked {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the// benefit is lost if 'b' is also tested.// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522if (a ==0) return (true, 0);
uint256 c = a * b;
if (c / a != b) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the division of two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/functiontryDiv(uint256 a, uint256 b) internalpurereturns (bool, uint256) {
unchecked {
if (b ==0) return (false, 0);
return (true, a / b);
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/functiontryMod(uint256 a, uint256 b) internalpurereturns (bool, uint256) {
unchecked {
if (b ==0) return (false, 0);
return (true, a % b);
}
}
/**
* @dev Returns the addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `+` operator.
*
* Requirements:
*
* - Addition cannot overflow.
*/functionadd(uint256 a, uint256 b) internalpurereturns (uint256) {
return a + b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/functionsub(uint256 a, uint256 b) internalpurereturns (uint256) {
return a - b;
}
/**
* @dev Returns the multiplication of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `*` operator.
*
* Requirements:
*
* - Multiplication cannot overflow.
*/functionmul(uint256 a, uint256 b) internalpurereturns (uint256) {
return a * b;
}
/**
* @dev Returns the integer division of two unsigned integers, reverting on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator.
*
* Requirements:
*
* - The divisor cannot be zero.
*/functiondiv(uint256 a, uint256 b) internalpurereturns (uint256) {
return a / b;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/functionmod(uint256 a, uint256 b) internalpurereturns (uint256) {
return a % b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {trySub}.
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/functionsub(uint256 a,
uint256 b,
stringmemory errorMessage
) internalpurereturns (uint256) {
unchecked {
require(b <= a, errorMessage);
return a - b;
}
}
/**
* @dev Returns the integer division of two unsigned integers, reverting with custom message on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/functiondiv(uint256 a,
uint256 b,
stringmemory errorMessage
) internalpurereturns (uint256) {
unchecked {
require(b >0, errorMessage);
return a / b;
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting with custom message when dividing by zero.
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {tryMod}.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/functionmod(uint256 a,
uint256 b,
stringmemory errorMessage
) internalpurereturns (uint256) {
unchecked {
require(b >0, errorMessage);
return a % b;
}
}
}
Contract Source Code
File 16 of 16: Strings.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)pragmasolidity ^0.8.0;/**
* @dev String operations.
*/libraryStrings{
bytes16privateconstant _HEX_SYMBOLS ="0123456789abcdef";
uint8privateconstant _ADDRESS_LENGTH =20;
/**
* @dev Converts a `uint256` to its ASCII `string` decimal representation.
*/functiontoString(uint256 value) internalpurereturns (stringmemory) {
// Inspired by OraclizeAPI's implementation - MIT licence// https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.solif (value ==0) {
return"0";
}
uint256 temp = value;
uint256 digits;
while (temp !=0) {
digits++;
temp /=10;
}
bytesmemory buffer =newbytes(digits);
while (value !=0) {
digits -=1;
buffer[digits] =bytes1(uint8(48+uint256(value %10)));
value /=10;
}
returnstring(buffer);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
*/functiontoHexString(uint256 value) internalpurereturns (stringmemory) {
if (value ==0) {
return"0x00";
}
uint256 temp = value;
uint256 length =0;
while (temp !=0) {
length++;
temp >>=8;
}
return toHexString(value, length);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
*/functiontoHexString(uint256 value, uint256 length) internalpurereturns (stringmemory) {
bytesmemory buffer =newbytes(2* length +2);
buffer[0] ="0";
buffer[1] ="x";
for (uint256 i =2* length +1; i >1; --i) {
buffer[i] = _HEX_SYMBOLS[value &0xf];
value >>=4;
}
require(value ==0, "Strings: hex length insufficient");
returnstring(buffer);
}
/**
* @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
*/functiontoHexString(address addr) internalpurereturns (stringmemory) {
return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
}
}