Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
BADJPEGSMetadata
Compiler Version
v0.8.21+commit.d9974bed
Contract Source Code (Solidity Standard Json-Input format)
import "./FellowshipPatronPass.sol"; import "./Dependencies.sol"; pragma solidity ^0.8.17; contract BADJPEGSMetadata { using Strings for uint256; string public ipfsCid; FellowshipPatronPass public fellowshipPatronPass; constructor(FellowshipPatronPass _FellowshipPatronPass) { fellowshipPatronPass = _FellowshipPatronPass; } function owner() public view returns (address) { return fellowshipPatronPass.owner(); } function setIpfsCid(string calldata cid) external { require(msg.sender == owner(), "Ownable: caller is not the owner"); ipfsCid = cid; } function tokenURI(uint256 tokenId) external view returns (string memory) { return string(abi.encodePacked('ipfs://', ipfsCid, '/', tokenId.toString(), ".json")); } }
// SPDX-License-Identifier: MIT 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 IERC165 { /** * @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); } /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @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`, 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 be 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: 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. */ 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 Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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 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); /** * @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; } /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @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 `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @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); } /** * @dev Collection of functions related to the address type */ library Address { /** * @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 * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 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]. */ 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 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._ */ 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"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory 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._ */ 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) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory 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._ */ 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) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory 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._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // 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 assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { 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. */ 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] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } /** * @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 ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } /** * @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 Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(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"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } /** * @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 ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings 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. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); 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) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); 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 overriden 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 = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_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: transfer caller is not owner nor 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: transfer caller is not 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( 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 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 _owners[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) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, 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); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(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) internal virtual { 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); } /** * @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(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); 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); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @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 IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @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( address from, address to, uint256 tokenId ) internal virtual {} } /** * @title ERC721 Burnable Token * @dev ERC721 Token that can be burned (destroyed). */ abstract contract ERC721Burnable is Context, ERC721 { /** * @dev Burns `tokenId`. See {ERC721-_burn}. * * Requirements: * * - The caller must own `tokenId` or be an approved operator. */ function burn(uint256 tokenId) public virtual { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved"); _burn(tokenId); } } /// [MIT License] /// @title Base64 /// @notice Provides a function for encoding some bytes in base64 /// @author Brecht Devos <[email protected]> library Base64 { bytes internal constant TABLE = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; /// @notice Encodes some bytes to the base64 representation function encode(bytes memory data) internal pure returns (string memory) { uint256 len = data.length; if (len == 0) return ""; // multiply by 4/3 rounded up uint256 encodedLen = 4 * ((len + 2) / 3); // Add some extra buffer at the end bytes memory result = new bytes(encodedLen + 32); bytes memory table = TABLE; assembly { let tablePtr := add(table, 1) let resultPtr := add(result, 32) for { let i := 0 } lt(i, len) { } { i := add(i, 3) let input := and(mload(add(data, i)), 0xffffff) let out := mload(add(tablePtr, and(shr(18, input), 0x3F))) out := shl(8, out) out := add(out, and(mload(add(tablePtr, and(shr(12, input), 0x3F))), 0xFF)) out := shl(8, out) out := add(out, and(mload(add(tablePtr, and(shr(6, input), 0x3F))), 0xFF)) out := shl(8, out) out := add(out, and(mload(add(tablePtr, and(input, 0x3F))), 0xFF)) out := shl(224, out) mstore(resultPtr, out) resultPtr := add(resultPtr, 4) } switch mod(len, 3) case 1 { mstore(sub(resultPtr, 2), shl(240, 0x3d3d)) } case 2 { mstore(sub(resultPtr, 1), shl(248, 0x3d)) } mstore(result, encodedLen) } return string(result); } }
// SPDX-License-Identifier: MIT // Copyright (c) 2023 Fellowship /* ███████ ███████ ██ ██ ██████ ██ ██ ███████ ██ ██ ██ ██████ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ █████ █████ ██ ██ ██ ██ ██ █ ██ ███████ ███████ ██ ██████ ██ ██ ██ ██ ██ ██ ██ ███ ██ ██ ██ ██ ██ ██ ██ ███████ ███████ ███████ ██████ ███ ███ ███████ ██ ██ ██ ██ ██████ █████ ████████ ██████ ██████ ███ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ████ ██ ██████ ███████ ██ ██████ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██████ ██ ████ ██████ █████ ███████ ███████ ██ ██ ██ ██ ██ ██ ██████ ███████ ███████ ███████ ██ ██ ██ ██ ██ ██ ██ ██ ███████ ███████ contract + token art by steviep.eth */ pragma solidity ^0.8.17; import "./Dependencies.sol"; import "./FellowshipTokenURI.sol"; contract FellowshipPatronPass is ERC721, ERC721Burnable, Ownable { uint256 private constant _maxSupply = 1000; uint256 private _totalSupply; address public minter; address private _royaltyBeneficiary; uint16 private _royaltyBasisPoints = 750; mapping(uint256 => uint256[]) _tokenIdToTransactions; mapping(uint256 => uint256) _tokenIdToTransactionOverflow; uint256 public totalProjects; struct ProjectInfo { address minter; address base; string name; bool locked; } mapping(uint256 => ProjectInfo) private _projectIdToInfo; mapping(uint256 => mapping(uint256 => uint256)) private _tokenIdToPassUses; FellowshipTokenURI public tokenURIContract; /// @notice Emitted when a token's metadata is updated /// @param _tokenId The ID of the updated token /// @dev See EIP-4906: https://eips.ethereum.org/EIPS/eip-4906 event MetadataUpdate(uint256 _tokenId); constructor () ERC721('Fellowship Patron Pass', 'FPP') { minter = msg.sender; _royaltyBeneficiary = msg.sender; tokenURIContract = new FellowshipTokenURI(); } /// @notice Current total supply of collection /// @return Total supply function totalSupply() external view returns (uint256) { return _totalSupply; } /// @notice Checks if given token ID exists /// @param tokenId Token to run existence check on /// @return True if token exists function exists(uint256 tokenId) external view returns (bool) { return _exists(tokenId); } /// @notice Mints a new token /// @param to Address to receive new token function mint(address to) external { require(minter == msg.sender, 'Caller is not the minting address'); require(_totalSupply < _maxSupply, 'Cannot exceed max supply'); _mint(to, _totalSupply); _totalSupply += 1; } /// @notice Mints a batch of new tokens to a single address /// @param to Address to receive all new tokens /// @param amount Amount of tokens to mint function mintBatch(address to, uint256 amount) external { require(minter == msg.sender, 'Caller is not the minting address'); require(_totalSupply + amount <= _maxSupply, 'Cannot exceed max supply'); for (uint256 i; i < amount; i++) { _mint(to, _totalSupply + i); } _totalSupply += amount; } /// @notice Stores information related to the token transfer + emits a metadata update /// @dev This information is needed to render the token thumbnail function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual override { if (_tokenIdToTransactions[tokenId].length <= 300) { _tokenIdToTransactions[tokenId].push( uint256(keccak256(abi.encodePacked( from, to, tokenId, block.difficulty ))) ); } else { _tokenIdToTransactionOverflow[tokenId]++; } emit MetadataUpdate(tokenId); } /// @notice Retrieves the list of transaction hashes for a given tokenId /// @param tokenId Token ID function tokenIdToTransactions(uint256 tokenId) external view returns (uint256[] memory) { return _tokenIdToTransactions[tokenId]; } /// @notice Retrieves the number of times that a token has been transferred, including its mint /// @param tokenId Token ID function tokenTransactionCount(uint256 tokenId) external view returns (uint256) { return _tokenIdToTransactions[tokenId].length + _tokenIdToTransactionOverflow[tokenId]; } /// @notice Token URI /// @param tokenId Token ID to look up URI of /// @return Token URI function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(tokenId < _totalSupply, "ERC721Metadata: URI query for nonexistent token"); return tokenURIContract.tokenURI(tokenId); } /// @notice Adds a project that the mint pass can be used on /// @param minterAddress Address of the minter contract that will use the mint pass /// @param baseAddress Address of the target project's contract /// @param projectName Name to be used in the attributes of the mint pass /// @dev Each project will be assigned a project id, which increments by 1 /// @dev Up to 20 different projects may be added function addProjectInfo( address minterAddress, address baseAddress, string memory projectName ) external onlyOwner { require(totalProjects < 20, 'Project max exceeded'); uint256 projectId = totalProjects; _projectIdToInfo[projectId].minter = minterAddress; _projectIdToInfo[projectId].base = baseAddress; _projectIdToInfo[projectId].name = projectName; totalProjects++; } /// @notice Updates the info for a project /// @param minterAddress Address of the minter contract that will use the mint pass /// @param baseAddress Address of the target project's contract /// @param projectName Name to be used in the attributes of the mint pass function updateProjectInfo( uint256 projectId, address minterAddress, address baseAddress, string memory projectName ) external onlyOwner { require(projectId < totalProjects, 'Project does not exist'); require(!_projectIdToInfo[projectId].locked, 'Project has been locked'); _projectIdToInfo[projectId].minter = minterAddress; _projectIdToInfo[projectId].base = baseAddress; _projectIdToInfo[projectId].name = projectName; } /// @notice Returns the info for the project /// @param projectId Project ID /// @return minter address, project address, project name, locked status function projectInfo(uint256 projectId) public view returns (address, address, string memory, bool) { return ( _projectIdToInfo[projectId].minter, _projectIdToInfo[projectId].base, _projectIdToInfo[projectId].name, _projectIdToInfo[projectId].locked ); } function lockProjectInfo(uint256 projectId) external onlyOwner { require(projectId < totalProjects, 'Project does not exist'); _projectIdToInfo[projectId].locked = true; } /// @notice Logs the fact that a specific mint pass has been used to mint a project /// @param tokenId Token ID /// @param projectId Project ID /// @dev This can only be called by the designated project minter contract function logPassUse(uint256 tokenId, uint256 projectId) external { require(msg.sender == _projectIdToInfo[projectId].minter, 'Sender not permissioned'); require(!_projectIdToInfo[projectId].locked, 'Project has been locked'); _tokenIdToPassUses[tokenId][projectId] += 1; emit MetadataUpdate(tokenId); } /// @notice Returns the number of times a pass has been used on a specific project /// @param tokenId Token ID /// @param projectId Project ID /// @return Pass uses function passUses(uint256 tokenId, uint256 projectId) public view returns (uint256) { return _tokenIdToPassUses[tokenId][projectId]; } /// @notice Set the Token URI contract /// @param newContract Address of the new Token URI contract function setTokenURIContract(address newContract) external onlyOwner { tokenURIContract = FellowshipTokenURI(newContract); } /// @notice Reassigns the minter permission /// @param newMinter Address of new minter function setMinter(address newMinter) external onlyOwner { minter = newMinter; } /// @notice Sets royalty info for the collection /// @param royaltyBeneficiary Address to receive royalties /// @param royaltyBasisPoints Basis points of royalty commission /// @dev See EIP-2981: https://eips.ethereum.org/EIPS/eip-2981 function setRoyaltyInfo( address royaltyBeneficiary, uint16 royaltyBasisPoints ) external onlyOwner { _royaltyBeneficiary = royaltyBeneficiary; _royaltyBasisPoints = royaltyBasisPoints; } /// @notice Called with the sale price to determine how much royalty is owed and to whom. /// @param (unused) /// @param _salePrice The sale price of the NFT asset specified by _tokenId /// @return receiver Address of who should be sent the royalty payment /// @return royaltyAmount The royalty payment amount for _salePrice /// @dev See EIP-2981: https://eips.ethereum.org/EIPS/eip-2981 function royaltyInfo(uint256, uint256 _salePrice) external view returns (address, uint256) { return (_royaltyBeneficiary, _salePrice * _royaltyBasisPoints / 10000); } /// @notice Query if a contract implements an interface /// @param interfaceId The interface identifier, as specified in ERC-165 /// @return `true` if the contract implements `interfaceId` and /// `interfaceId` is not 0xffffffff, `false` otherwise /// @dev Interface identification is specified in ERC-165. This function /// uses less than 30,000 gas. See: https://eips.ethereum.org/EIPS/eip-165 /// See EIP-2981: https://eips.ethereum.org/EIPS/eip-2981 /// See EIP-4906: https://eips.ethereum.org/EIPS/eip-4906 function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721) returns (bool) { return interfaceId == bytes4(0x2a55205a) || interfaceId == bytes4(0x49064906) || super.supportsInterface(interfaceId); } }
// SPDX-License-Identifier: MIT // Copyright (c) 2023 Fellowship /* ███████ ███████ ██ ██ ██████ ██ ██ ███████ ██ ██ ██ ██████ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ █████ █████ ██ ██ ██ ██ ██ █ ██ ███████ ███████ ██ ██████ ██ ██ ██ ██ ██ ██ ██ ███ ██ ██ ██ ██ ██ ██ ██ ███████ ███████ ███████ ██████ ███ ███ ███████ ██ ██ ██ ██ ██████ █████ ████████ ██████ ██████ ███ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ████ ██ ██████ ███████ ██ ██████ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██████ ██ ████ ██████ █████ ███████ ███████ ██ ██ ██ ██ ██ ██ ██████ ███████ ███████ ███████ ██ ██ ██ ██ ██ ██ ██ ██ ███████ ███████ contract + token art by steviep.eth */ pragma solidity ^0.8.17; import "./Dependencies.sol"; import "./FellowshipPatronPass.sol"; contract FellowshipTokenURI { using Strings for uint256; FellowshipPatronPass public baseContract; string public description = 'The Fellowship Patron Pass is an annual membership for photography lovers [valid April 1 2023 - March 31 2024]'; string public externalUrl = 'https://postphotography.xyz/'; string public license = 'CC BY-NC 4.0'; constructor() { baseContract = FellowshipPatronPass(msg.sender); } function tokenURI(uint256 tokenId) external view returns (string memory) { bytes memory encodedSVG = abi.encodePacked( 'data:image/svg+xml;base64,', Base64.encode(rawSVG(tokenId)) ); bytes memory json = abi.encodePacked( 'data:application/json;utf8,', '{"name": "Fellowship Patron Pass #', tokenId.toString(),'",' '"description": "', description, '",' '"license": "', license, '",' '"external_url": "', externalUrl, '",' '"attributes": ', attributes(tokenId), ',' '"image": "', encodedSVG, '"}' ); return string(json); } function rawSVG(uint256 tokenId) public view returns (bytes memory) { uint256[] memory txs = baseContract.tokenIdToTransactions(tokenId); uint256 txCount = txs.length > 300 ? 300 : txs.length; string memory bgColor = baseContract.exists(tokenId) ? '#fff' : '#000'; string memory strokeColor = baseContract.exists(tokenId) ? '#000' : '#fff'; bytes memory svg = abi.encodePacked( '<svg viewBox="0 0 1000 1000" xmlns="http://www.w3.org/2000/svg">' '<rect x="0" y="0" width="1000" height="1000" fill="', bgColor, '" />' ); for (uint256 i; i < txCount; i++) { uint256 x = txs[i] % 1000; uint256 y = (txs[i] % 1000000) / 1000; svg = abi.encodePacked( svg, '<circle cx="', x.toString(), '" cy="', y.toString(), '" r="30" fill="', strokeColor,'" />' ); } uint256 totalProjects = baseContract.totalProjects(); for (uint256 i; i < totalProjects; i++) { uint256 passUses = baseContract.passUses(tokenId, i); if (passUses > 0) { uint256 offset = i*25 + 10; svg = abi.encodePacked( svg, '<rect x="', offset.toString(), '" y="', offset.toString(), '" width="', (1000 - offset*2).toString(),'" height="', (1000 - offset*2).toString(),'" fill="none" stroke-width="3" stroke="', strokeColor,'" />' ); } } return abi.encodePacked(svg, '</svg>'); } function attributes(uint256 tokenId) public view returns (bytes memory) { uint256 txCount = baseContract.tokenTransactionCount(tokenId) - 1; uint256 totalProjects = baseContract.totalProjects(); bytes memory attrs = abi.encodePacked( '[{"trait_type": "Transfers", "value": "', txCount.toString(), '"}' ); for (uint256 projectId; projectId < totalProjects; projectId++) { uint256 passUses = baseContract.passUses(tokenId, projectId); (,,string memory projectName,) = baseContract.projectInfo(projectId); attrs = abi.encodePacked( attrs, ', {"trait_type": "Mints: ', projectName,'", "value": "', passUses.toString(), '"}' ); } return abi.encodePacked( attrs, ']' ); } function render(uint256 tokenId) external view returns (string memory, string memory) { return (string(rawSVG(tokenId)), string(attributes(tokenId))); } function updateMetadata(string calldata _externalUrl, string calldata _description, string calldata _license) external { require(msg.sender == baseContract.owner(), 'Ownable: caller is not the owner'); externalUrl = _externalUrl; description = _description; license = _license; } }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } }, "remappings": [] }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"contract FellowshipPatronPass","name":"_FellowshipPatronPass","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"fellowshipPatronPass","outputs":[{"internalType":"contract FellowshipPatronPass","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ipfsCid","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"cid","type":"string"}],"name":"setIpfsCid","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
608060405234801561000f575f80fd5b5060405161081138038061081183398101604081905261002e91610053565b600180546001600160a01b0319166001600160a01b0392909216919091179055610080565b5f60208284031215610063575f80fd5b81516001600160a01b0381168114610079575f80fd5b9392505050565b6107848061008d5f395ff3fe608060405234801561000f575f80fd5b5060043610610055575f3560e01c80637b914674146100595780638da5cb5b14610077578063c87b56dd14610097578063d16830f1146100aa578063e367615e146100bf575b5f80fd5b6100616100d2565b60405161006e91906103a4565b60405180910390f35b61007f61015d565b6040516001600160a01b03909116815260200161006e565b6100616100a53660046103d6565b6101cd565b6100bd6100b83660046103ed565b610200565b005b60015461007f906001600160a01b031681565b5f80546100de90610459565b80601f016020809104026020016040519081016040528092919081815260200182805461010a90610459565b80156101555780601f1061012c57610100808354040283529160200191610155565b820191905f5260205f20905b81548152906001019060200180831161013857829003601f168201915b505050505081565b60015460408051638da5cb5b60e01b815290515f926001600160a01b031691638da5cb5b9160048083019260209291908290030181865afa1580156101a4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906101c89190610491565b905090565b60605f6101d98361027d565b6040516020016101ea9291906104d9565b6040516020818303038152906040529050919050565b61020861015d565b6001600160a01b0316336001600160a01b03161461026c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b5f6102788284836105ec565b505050565b6060815f036102a35750506040805180820190915260018152600360fc1b602082015290565b815f5b81156102cc57806102b6816106bc565b91506102c59050600a836106e8565b91506102a6565b5f8167ffffffffffffffff8111156102e6576102e661058b565b6040519080825280601f01601f191660200182016040528015610310576020820181803683370190505b5090505b841561037a576103256001836106fb565b9150610332600a86610714565b61033d906030610727565b60f81b8183815181106103525761035261073a565b60200101906001600160f81b03191690815f1a905350610373600a866106e8565b9450610314565b949350505050565b5f5b8381101561039c578181015183820152602001610384565b50505f910152565b602081525f82518060208401526103c2816040850160208701610382565b601f01601f19169190910160400192915050565b5f602082840312156103e6575f80fd5b5035919050565b5f80602083850312156103fe575f80fd5b823567ffffffffffffffff80821115610415575f80fd5b818501915085601f830112610428575f80fd5b813581811115610436575f80fd5b866020828501011115610447575f80fd5b60209290920196919550909350505050565b600181811c9082168061046d57607f821691505b60208210810361048b57634e487b7160e01b5f52602260045260245ffd5b50919050565b5f602082840312156104a1575f80fd5b81516001600160a01b03811681146104b7575f80fd5b9392505050565b5f81516104cf818560208601610382565b9290920192915050565b66697066733a2f2f60c81b81525f60075f85546104f581610459565b6001828116801561050d576001811461052657610556565b60ff198416888701528215158302880186019450610556565b895f526020805f205f5b8581101561054b5781548b82018a0152908401908201610530565b505050858389010194505b50602f60f81b845261057e61056d8286018a6104be565b64173539b7b760d91b815260050190565b9998505050505050505050565b634e487b7160e01b5f52604160045260245ffd5b601f821115610278575f81815260208120601f850160051c810160208610156105c55750805b601f850160051c820191505b818110156105e4578281556001016105d1565b505050505050565b67ffffffffffffffff8311156106045761060461058b565b610618836106128354610459565b8361059f565b5f601f841160018114610649575f85156106325750838201355b5f19600387901b1c1916600186901b1783556106a1565b5f83815260209020601f19861690835b828110156106795786850135825560209485019460019092019101610659565b5086821015610695575f1960f88860031b161c19848701351681555b505060018560011b0183555b5050505050565b634e487b7160e01b5f52601160045260245ffd5b5f600182016106cd576106cd6106a8565b5060010190565b634e487b7160e01b5f52601260045260245ffd5b5f826106f6576106f66106d4565b500490565b8181038181111561070e5761070e6106a8565b92915050565b5f82610722576107226106d4565b500690565b8082018082111561070e5761070e6106a8565b634e487b7160e01b5f52603260045260245ffdfea2646970667358221220cd14c1241fa691009f8f0e315f5e311b86c4684f2a658fcc6f79ab112b2655bc64736f6c63430008150033000000000000000000000000a8a425864db32fcbb459bf527bdbb8128e6abf21
Deployed Bytecode
0x608060405234801561000f575f80fd5b5060043610610055575f3560e01c80637b914674146100595780638da5cb5b14610077578063c87b56dd14610097578063d16830f1146100aa578063e367615e146100bf575b5f80fd5b6100616100d2565b60405161006e91906103a4565b60405180910390f35b61007f61015d565b6040516001600160a01b03909116815260200161006e565b6100616100a53660046103d6565b6101cd565b6100bd6100b83660046103ed565b610200565b005b60015461007f906001600160a01b031681565b5f80546100de90610459565b80601f016020809104026020016040519081016040528092919081815260200182805461010a90610459565b80156101555780601f1061012c57610100808354040283529160200191610155565b820191905f5260205f20905b81548152906001019060200180831161013857829003601f168201915b505050505081565b60015460408051638da5cb5b60e01b815290515f926001600160a01b031691638da5cb5b9160048083019260209291908290030181865afa1580156101a4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906101c89190610491565b905090565b60605f6101d98361027d565b6040516020016101ea9291906104d9565b6040516020818303038152906040529050919050565b61020861015d565b6001600160a01b0316336001600160a01b03161461026c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b5f6102788284836105ec565b505050565b6060815f036102a35750506040805180820190915260018152600360fc1b602082015290565b815f5b81156102cc57806102b6816106bc565b91506102c59050600a836106e8565b91506102a6565b5f8167ffffffffffffffff8111156102e6576102e661058b565b6040519080825280601f01601f191660200182016040528015610310576020820181803683370190505b5090505b841561037a576103256001836106fb565b9150610332600a86610714565b61033d906030610727565b60f81b8183815181106103525761035261073a565b60200101906001600160f81b03191690815f1a905350610373600a866106e8565b9450610314565b949350505050565b5f5b8381101561039c578181015183820152602001610384565b50505f910152565b602081525f82518060208401526103c2816040850160208701610382565b601f01601f19169190910160400192915050565b5f602082840312156103e6575f80fd5b5035919050565b5f80602083850312156103fe575f80fd5b823567ffffffffffffffff80821115610415575f80fd5b818501915085601f830112610428575f80fd5b813581811115610436575f80fd5b866020828501011115610447575f80fd5b60209290920196919550909350505050565b600181811c9082168061046d57607f821691505b60208210810361048b57634e487b7160e01b5f52602260045260245ffd5b50919050565b5f602082840312156104a1575f80fd5b81516001600160a01b03811681146104b7575f80fd5b9392505050565b5f81516104cf818560208601610382565b9290920192915050565b66697066733a2f2f60c81b81525f60075f85546104f581610459565b6001828116801561050d576001811461052657610556565b60ff198416888701528215158302880186019450610556565b895f526020805f205f5b8581101561054b5781548b82018a0152908401908201610530565b505050858389010194505b50602f60f81b845261057e61056d8286018a6104be565b64173539b7b760d91b815260050190565b9998505050505050505050565b634e487b7160e01b5f52604160045260245ffd5b601f821115610278575f81815260208120601f850160051c810160208610156105c55750805b601f850160051c820191505b818110156105e4578281556001016105d1565b505050505050565b67ffffffffffffffff8311156106045761060461058b565b610618836106128354610459565b8361059f565b5f601f841160018114610649575f85156106325750838201355b5f19600387901b1c1916600186901b1783556106a1565b5f83815260209020601f19861690835b828110156106795786850135825560209485019460019092019101610659565b5086821015610695575f1960f88860031b161c19848701351681555b505060018560011b0183555b5050505050565b634e487b7160e01b5f52601160045260245ffd5b5f600182016106cd576106cd6106a8565b5060010190565b634e487b7160e01b5f52601260045260245ffd5b5f826106f6576106f66106d4565b500490565b8181038181111561070e5761070e6106a8565b92915050565b5f82610722576107226106d4565b500690565b8082018082111561070e5761070e6106a8565b634e487b7160e01b5f52603260045260245ffdfea2646970667358221220cd14c1241fa691009f8f0e315f5e311b86c4684f2a658fcc6f79ab112b2655bc64736f6c63430008150033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000a8a425864db32fcbb459bf527bdbb8128e6abf21
-----Decoded View---------------
Arg [0] : _FellowshipPatronPass (address): 0xA8A425864dB32fCBB459Bf527BdBb8128e6abF21
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000a8a425864db32fcbb459bf527bdbb8128e6abf21
Deployed Bytecode Sourcemap
93:675:3:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;156:21;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;350:93;;;:::i;:::-;;;-1:-1:-1;;;;;834:32:4;;;816:51;;804:2;789:18;350:93:3;670:203:4;597:169:3;;;;;;:::i;:::-;;:::i;447:146::-;;;;;;:::i;:::-;;:::i;:::-;;183:48;;;;;-1:-1:-1;;;;;183:48:3;;;156:21;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;350:93::-;410:20;;:28;;;-1:-1:-1;;;410:28:3;;;;388:7;;-1:-1:-1;;;;;410:20:3;;:26;;:28;;;;;;;;;;;;;;:20;:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;403:35;;350:93;:::o;597:169::-;655:13;718:7;732:18;:7;:16;:18::i;:::-;690:70;;;;;;;;;:::i;:::-;;;;;;;;;;;;;676:85;;597:169;;;:::o;447:146::-;525:7;:5;:7::i;:::-;-1:-1:-1;;;;;511:21:3;:10;-1:-1:-1;;;;;511:21:3;;503:66;;;;-1:-1:-1;;;503:66:3;;4598:2:4;503:66:3;;;4580:21:4;;;4617:18;;;4610:30;4676:34;4656:18;;;4649:62;4728:18;;503:66:3;;;;;;;;575:7;:13;585:3;;575:7;:13;:::i;:::-;;447:146;;:::o;15553:703:0:-;15609:13;15826:5;15835:1;15826:10;15822:51;;-1:-1:-1;;15852:10:0;;;;;;;;;;;;-1:-1:-1;;;15852:10:0;;;;;15553:703::o;15822:51::-;15897:5;15882:12;15936:75;15943:9;;15936:75;;15968:8;;;;:::i;:::-;;-1:-1:-1;15990:10:0;;-1:-1:-1;15998:2:0;15990:10;;:::i;:::-;;;15936:75;;;16020:19;16052:6;16042:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16042:17:0;;16020:39;;16069:150;16076:10;;16069:150;;16102:11;16112:1;16102:11;;:::i;:::-;;-1:-1:-1;16170:10:0;16178:2;16170:5;:10;:::i;:::-;16157:24;;:2;:24;:::i;:::-;16144:39;;16127:6;16134;16127:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;16127:56:0;;;;;;;;-1:-1:-1;16197:11:0;16206:2;16197:11;;:::i;:::-;;;16069:150;;;16242:6;15553:703;-1:-1:-1;;;;15553:703:0:o;14:250:4:-;99:1;109:113;123:6;120:1;117:13;109:113;;;199:11;;;193:18;180:11;;;173:39;145:2;138:10;109:113;;;-1:-1:-1;;256:1:4;238:16;;231:27;14:250::o;269:396::-;418:2;407:9;400:21;381:4;450:6;444:13;493:6;488:2;477:9;473:18;466:34;509:79;581:6;576:2;565:9;561:18;556:2;548:6;544:15;509:79;:::i;:::-;649:2;628:15;-1:-1:-1;;624:29:4;609:45;;;;656:2;605:54;;269:396;-1:-1:-1;;269:396:4:o;878:180::-;937:6;990:2;978:9;969:7;965:23;961:32;958:52;;;1006:1;1003;996:12;958:52;-1:-1:-1;1029:23:4;;878:180;-1:-1:-1;878:180:4:o;1063:592::-;1134:6;1142;1195:2;1183:9;1174:7;1170:23;1166:32;1163:52;;;1211:1;1208;1201:12;1163:52;1251:9;1238:23;1280:18;1321:2;1313:6;1310:14;1307:34;;;1337:1;1334;1327:12;1307:34;1375:6;1364:9;1360:22;1350:32;;1420:7;1413:4;1409:2;1405:13;1401:27;1391:55;;1442:1;1439;1432:12;1391:55;1482:2;1469:16;1508:2;1500:6;1497:14;1494:34;;;1524:1;1521;1514:12;1494:34;1569:7;1564:2;1555:6;1551:2;1547:15;1543:24;1540:37;1537:57;;;1590:1;1587;1580:12;1537:57;1621:2;1613:11;;;;;1643:6;;-1:-1:-1;1063:592:4;;-1:-1:-1;;;;1063:592:4:o;1897:380::-;1976:1;1972:12;;;;2019;;;2040:61;;2094:4;2086:6;2082:17;2072:27;;2040:61;2147:2;2139:6;2136:14;2116:18;2113:38;2110:161;;2193:10;2188:3;2184:20;2181:1;2174:31;2228:4;2225:1;2218:15;2256:4;2253:1;2246:15;2110:161;;1897:380;;;:::o;2282:290::-;2352:6;2405:2;2393:9;2384:7;2380:23;2376:32;2373:52;;;2421:1;2418;2411:12;2373:52;2447:16;;-1:-1:-1;;;;;2492:31:4;;2482:42;;2472:70;;2538:1;2535;2528:12;2472:70;2561:5;2282:290;-1:-1:-1;;;2282:290:4:o;2703:198::-;2745:3;2783:5;2777:12;2798:65;2856:6;2851:3;2844:4;2837:5;2833:16;2798:65;:::i;:::-;2879:16;;;;;2703:198;-1:-1:-1;;2703:198:4:o;3024:1367::-;-1:-1:-1;;;3528:3:4;3521:22;3503:3;3562:1;3583;3616:6;3610:13;3646:36;3672:9;3646:36;:::i;:::-;3701:1;3718:18;;;3745:151;;;;3910:1;3905:374;;;;3711:568;;3745:151;-1:-1:-1;;3787:24:4;;3773:12;;;3766:46;3864:14;;3857:22;3845:35;;3836:45;;3832:54;;;-1:-1:-1;3745:151:4;;3905:374;3936:6;3933:1;3926:17;3966:4;4011:2;4008:1;3998:16;4036:1;4050:174;4064:6;4061:1;4058:13;4050:174;;;4151:14;;4133:11;;;4129:20;;4122:44;4194:16;;;;4079:10;;4050:174;;;4054:3;;;4266:2;4257:6;4252:3;4248:16;4244:25;4237:32;;3711:568;;-1:-1:-1;;;4295:3:4;4288:16;4320:65;4345:39;4380:2;4375:3;4371:12;4363:6;4345:39;:::i;:::-;-1:-1:-1;;;2966:20:4;;3011:1;3002:11;;2906:113;4320:65;4313:72;3024:1367;-1:-1:-1;;;;;;;;;3024:1367:4:o;4757:127::-;4818:10;4813:3;4809:20;4806:1;4799:31;4849:4;4846:1;4839:15;4873:4;4870:1;4863:15;4889:545;4991:2;4986:3;4983:11;4980:448;;;5027:1;5052:5;5048:2;5041:17;5097:4;5093:2;5083:19;5167:2;5155:10;5151:19;5148:1;5144:27;5138:4;5134:38;5203:4;5191:10;5188:20;5185:47;;;-1:-1:-1;5226:4:4;5185:47;5281:2;5276:3;5272:12;5269:1;5265:20;5259:4;5255:31;5245:41;;5336:82;5354:2;5347:5;5344:13;5336:82;;;5399:17;;;5380:1;5369:13;5336:82;;;5340:3;;;4889:545;;;:::o;5610:1206::-;5734:18;5729:3;5726:27;5723:53;;;5756:18;;:::i;:::-;5785:94;5875:3;5835:38;5867:4;5861:11;5835:38;:::i;:::-;5829:4;5785:94;:::i;:::-;5905:1;5930:2;5925:3;5922:11;5947:1;5942:616;;;;6602:1;6619:3;6616:93;;;-1:-1:-1;6675:19:4;;;6662:33;6616:93;-1:-1:-1;;5567:1:4;5563:11;;;5559:24;5555:29;5545:40;5591:1;5587:11;;;5542:57;6722:78;;5915:895;;5942:616;2650:1;2643:14;;;2687:4;2674:18;;-1:-1:-1;;5978:17:4;;;6079:9;6101:229;6115:7;6112:1;6109:14;6101:229;;;6204:19;;;6191:33;6176:49;;6311:4;6296:20;;;;6264:1;6252:14;;;;6131:12;6101:229;;;6105:3;6358;6349:7;6346:16;6343:159;;;6482:1;6478:6;6472:3;6466;6463:1;6459:11;6455:21;6451:34;6447:39;6434:9;6429:3;6425:19;6412:33;6408:79;6400:6;6393:95;6343:159;;;6545:1;6539:3;6536:1;6532:11;6528:19;6522:4;6515:33;5915:895;;;5610:1206;;;:::o;6821:127::-;6882:10;6877:3;6873:20;6870:1;6863:31;6913:4;6910:1;6903:15;6937:4;6934:1;6927:15;6953:135;6992:3;7013:17;;;7010:43;;7033:18;;:::i;:::-;-1:-1:-1;7080:1:4;7069:13;;6953:135::o;7093:127::-;7154:10;7149:3;7145:20;7142:1;7135:31;7185:4;7182:1;7175:15;7209:4;7206:1;7199:15;7225:120;7265:1;7291;7281:35;;7296:18;;:::i;:::-;-1:-1:-1;7330:9:4;;7225:120::o;7350:128::-;7417:9;;;7438:11;;;7435:37;;;7452:18;;:::i;:::-;7350:128;;;;:::o;7483:112::-;7515:1;7541;7531:35;;7546:18;;:::i;:::-;-1:-1:-1;7580:9:4;;7483:112::o;7600:125::-;7665:9;;;7686:10;;;7683:36;;;7699:18;;:::i;7730:127::-;7791:10;7786:3;7782:20;7779:1;7772:31;7822:4;7819:1;7812:15;7846:4;7843:1;7836:15
Swarm Source
ipfs://cd14c1241fa691009f8f0e315f5e311b86c4684f2a658fcc6f79ab112b2655bc
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.