Feature Tip: Add private address tag to any address under My Name Tag !
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:
ERC721TL
Compiler Version
v0.8.19+commit.7dd6d404
Optimization Enabled:
Yes with 20000 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity 0.8.19; import {Initializable} from "openzeppelin-upgradeable/proxy/utils/Initializable.sol"; import {ERC721Upgradeable, ERC165Upgradeable} from "openzeppelin-upgradeable/token/ERC721/ERC721Upgradeable.sol"; import {IERC2309Upgradeable} from "openzeppelin-upgradeable/interfaces/IERC2309Upgradeable.sol"; import {StringsUpgradeable} from "openzeppelin-upgradeable/utils/StringsUpgradeable.sol"; import {EIP2981TLUpgradeable} from "tl-sol-tools/upgradeable/royalties/EIP2981TLUpgradeable.sol"; import {OwnableAccessControlUpgradeable} from "tl-sol-tools/upgradeable/access/OwnableAccessControlUpgradeable.sol"; import {StoryContractUpgradeable} from "tl-story/upgradeable/StoryContractUpgradeable.sol"; import {BlockListUpgradeable} from "tl-blocklist/BlockListUpgradeable.sol"; /*////////////////////////////////////////////////////////////////////////// Custom Errors //////////////////////////////////////////////////////////////////////////*/ /// @dev token uri is an empty string error EmptyTokenURI(); /// @dev batch mint to zero address error MintToZeroAddress(); /// @dev batch size too small error BatchSizeTooSmall(); /// @dev airdrop to too few addresses error AirdropTooFewAddresses(); /// @dev token not owned by the owner of the contract error TokenNotOwnedByOwner(); /// @dev caller is not the owner of the specific token error CallerNotTokenOwner(); /// @dev caller is not approved or owner error CallerNotApprovedOrOwner(); /// @dev token does not exist error TokenDoesntExist(); /// @dev no proposed token uri to change to error NoTokenUriUpdateAvailable(); /*////////////////////////////////////////////////////////////////////////// ERC721TL //////////////////////////////////////////////////////////////////////////*/ /// @title ERC721TL.sol /// @notice Transient Labs ERC-721 Creator Contract /// @dev features include /// - ultra efficient batch minting /// - airdrops /// - ability to hook in external mint contracts /// - ability to set multiple admins /// - Story Contract /// - BlockList /// - Synergy metadata protection /// - individual token royalty overrides /// @author transientlabs.xyz /// @custom:version 2.10.1 contract ERC721TL is Initializable, ERC721Upgradeable, EIP2981TLUpgradeable, OwnableAccessControlUpgradeable, StoryContractUpgradeable, BlockListUpgradeable, IERC2309Upgradeable { /*////////////////////////////////////////////////////////////////////////// Custom Types //////////////////////////////////////////////////////////////////////////*/ /// @dev struct defining a batch mint struct BatchMint { address creator; uint256 fromTokenId; uint256 toTokenId; string baseUri; } /// @dev enum defining Synergy actions enum SynergyAction { Created, Accepted, Rejected } /// @dev string representation of uint256 using StringsUpgradeable for uint256; /*////////////////////////////////////////////////////////////////////////// State Variables //////////////////////////////////////////////////////////////////////////*/ string public constant VERSION = "2.10.1"; bytes32 public constant ADMIN_ROLE = keccak256("ADMIN_ROLE"); bytes32 public constant APPROVED_MINT_CONTRACT = keccak256("APPROVED_MINT_CONTRACT"); uint256 private _counter; // token ids mapping(uint256 => bool) private _burned; // flag to see if a token is burned or not -- needed for burning batch mints mapping(uint256 => string) private _proposedTokenUris; // Synergy proposed token uri mapping(uint256 => string) private _tokenUris; // established token uris BatchMint[] private _batchMints; // dynamic array for batch mints /*////////////////////////////////////////////////////////////////////////// Events //////////////////////////////////////////////////////////////////////////*/ /// @dev This event emits when the metadata of a token is changed /// so that the third-party platforms such as NFT market can /// timely update the images and related attributes of the NFT. /// @dev see EIP-4906 event MetadataUpdate(uint256 tokenId); /// @dev This event emits when the metadata of a range of tokens is changed /// so that the third-party platforms such as NFT market could /// timely update the images and related attributes of the NFTs. /// @dev see EIP-4906 event BatchMetadataUpdate(uint256 fromTokenId, uint256 toTokenId); /// @dev This event is for changing the status of a proposed metadata update. /// @dev Options include creation, accepted, rejected. event SynergyStatusChange(address indexed from, uint256 indexed tokenId, SynergyAction indexed action, string uri); /*////////////////////////////////////////////////////////////////////////// Constructor //////////////////////////////////////////////////////////////////////////*/ /// @param disable: boolean to disable initialization for the implementation contract constructor(bool disable) { if (disable) _disableInitializers(); } /*////////////////////////////////////////////////////////////////////////// Initializer //////////////////////////////////////////////////////////////////////////*/ /// @param name the name of the 721 contract /// @param symbol the symbol of the 721 contract /// @param defaultRoyaltyRecipient the default address for royalty payments /// @param defaultRoyaltyPercentage the default royalty percentage of basis points (out of 10,000) /// @param initOwner the owner of the contract /// @param admins array of admin addresses to add to the contract /// @param enableStory a bool deciding whether to add story fuctionality or not /// @param blockListRegistry address of the blocklist registry to use function initialize( string memory name, string memory symbol, address defaultRoyaltyRecipient, uint256 defaultRoyaltyPercentage, address initOwner, address[] memory admins, bool enableStory, address blockListRegistry ) external initializer { // initialize parent contracts __ERC721_init(name, symbol); __EIP2981TL_init(defaultRoyaltyRecipient, defaultRoyaltyPercentage); __OwnableAccessControl_init(initOwner); __StoryContractUpgradeable_init(enableStory); __BlockList_init(blockListRegistry); // add admins _setRole(ADMIN_ROLE, admins, true); } /*////////////////////////////////////////////////////////////////////////// General Functions //////////////////////////////////////////////////////////////////////////*/ /// @notice function to get total supply minted so far function totalSupply() external view returns (uint256) { return _counter; } /*////////////////////////////////////////////////////////////////////////// Access Control Functions //////////////////////////////////////////////////////////////////////////*/ /// @notice function to set approved mint contracts /// @dev access to owner or admin /// @param minters array of minters to grant approval to /// @param status status for the minters function setApprovedMintContracts(address[] calldata minters, bool status) external onlyRoleOrOwner(ADMIN_ROLE) { _setRole(APPROVED_MINT_CONTRACT, minters, status); } /*////////////////////////////////////////////////////////////////////////// Mint Functions //////////////////////////////////////////////////////////////////////////*/ /// @notice function to mint a single token /// @dev requires owner or admin /// @param recipient the recipient of the token - assumed as able to receive 721 tokens /// @param uri the token uri to mint function mint(address recipient, string calldata uri) external onlyRoleOrOwner(ADMIN_ROLE) { if (bytes(uri).length == 0) revert EmptyTokenURI(); _counter++; _tokenUris[_counter] = uri; _mint(recipient, _counter); } /// @notice function to mint a single token with specific token royalty /// @dev requires owner or admin /// @param recipient the recipient of the token - assumed as able to receive 721 tokens /// @param uri the token uri to mint /// @param royaltyAddress royalty payout address for this new token /// @param royaltyPercent royalty percentage for this new token function mint(address recipient, string calldata uri, address royaltyAddress, uint256 royaltyPercent) external onlyRoleOrOwner(ADMIN_ROLE) { if (bytes(uri).length == 0) revert EmptyTokenURI(); _counter++; _tokenUris[_counter] = uri; _overrideTokenRoyaltyInfo(_counter, royaltyAddress, royaltyPercent); _mint(recipient, _counter); } /// @notice function to batch mint tokens /// @dev requires owner or admin /// @param recipient the recipient of the token - assumed as able to receive 721 tokens /// @param numTokens number of tokens in the batch mint /// @param baseUri the base uri for the batch, expecting json to be in order and starting at 0 /// NOTE: this folder should have the same number of json files in it as numTokens /// NOTE: files should be named without any file extension /// NOTE: baseUri should NOT have a trailing `/` function batchMint(address recipient, uint256 numTokens, string calldata baseUri) external onlyRoleOrOwner(ADMIN_ROLE) { if (recipient == address(0)) revert MintToZeroAddress(); if (bytes(baseUri).length == 0) revert EmptyTokenURI(); if (numTokens < 2) revert BatchSizeTooSmall(); uint256 start = _counter + 1; uint256 end = start + numTokens - 1; _counter += numTokens; _batchMints.push(BatchMint(recipient, start, end, baseUri)); __unsafe_increaseBalance(recipient, numTokens); // this function adds the number of tokens to the recipient address for (uint256 id = start; id < end + 1; ++id) { emit Transfer(address(0), recipient, id); } } /// @notice function to batch mint tokens, ultra gas savings with ERC-2309 /// @dev requires owner or admin /// @dev uses ERC-2309. BEWARE may not be compatible with all platforms /// @param recipient the recipient of the token - assumed as able to receive 721 tokens /// @param numTokens number of tokens in the batch mint /// @param baseUri the base uri for the batch, expecting json to be in order and starting at 0 /// NOTE: this folder should have the same number of json files in it as numTokens /// NOTE: files should be named without any file extension /// NOTE: baseUri should NOT have a trailing `/` function batchMintUltra(address recipient, uint256 numTokens, string calldata baseUri) external onlyRoleOrOwner(ADMIN_ROLE) { if (recipient == address(0)) revert MintToZeroAddress(); if (bytes(baseUri).length == 0) revert EmptyTokenURI(); if (numTokens < 2) revert BatchSizeTooSmall(); uint256 start = _counter + 1; uint256 end = start + numTokens - 1; _counter += numTokens; _batchMints.push(BatchMint(recipient, start, end, baseUri)); __unsafe_increaseBalance(recipient, numTokens); // this function adds the number of tokens to the recipient address emit ConsecutiveTransfer(start, end, address(0), recipient); } /// @notice function to airdrop tokens to addresses /// @dev requires owner or admin /// @dev utilizes batch mint token uri values to save some gas /// but still ultimately mints individual tokens to people /// @param addresses dynamic array of addresses to mint to /// @param baseUri the base uri for the batch, expecting json to be in order and starting at 0 /// NOTE: the number of json files in this folder should be equal to the number of addresses /// NOTE: files should be named without any file extension /// NOTE: baseUri should not have a trailing `/` function airdrop(address[] calldata addresses, string calldata baseUri) external onlyRoleOrOwner(ADMIN_ROLE) { if (bytes(baseUri).length == 0) revert EmptyTokenURI(); if (addresses.length < 2) revert AirdropTooFewAddresses(); uint256 start = _counter + 1; uint256 end = start + addresses.length - 1; _counter += addresses.length; _batchMints.push(BatchMint(address(0), start, end, baseUri)); for (uint256 i = 0; i < addresses.length; i++) { _mint(addresses[i], start + i); } } /// @notice function to allow an approved mint contract to mint /// @dev requires the contract to be an approved mint contract /// @param recipient the recipient of the token - assumed as able to receive 721 tokens /// @param uri the token uri to mint function externalMint(address recipient, string calldata uri) external onlyRole(APPROVED_MINT_CONTRACT) { if (bytes(uri).length == 0) revert EmptyTokenURI(); _counter++; _tokenUris[_counter] = uri; _mint(recipient, _counter); } /*////////////////////////////////////////////////////////////////////////// Batch Mint Functions //////////////////////////////////////////////////////////////////////////*/ /// @notice function to get batch mint info /// @param tokenId token id to look up for batch mint info /// @return owner of the token (address) /// @return string of the uri for the tokenId function _getBatchInfo(uint256 tokenId) internal view returns (address, string memory) { uint256 i = 0; for (i; i < _batchMints.length; i++) { if (tokenId >= _batchMints[i].fromTokenId && tokenId <= _batchMints[i].toTokenId) { break; } } if (i >= _batchMints.length) { return (address(0), ""); } string memory tokenUri = string(abi.encodePacked(_batchMints[i].baseUri, "/", (tokenId - _batchMints[i].fromTokenId).toString())); return (_batchMints[i].creator, tokenUri); } /// @notice function to override { ERC721Upgradeable._ownerOf } to allow for batch minting /// @inheritdoc ERC721Upgradeable function _ownerOf(uint256 tokenId) internal view override(ERC721Upgradeable) returns (address) { if (_burned[tokenId]) { return address(0); } else { if (tokenId > 0 && tokenId <= _counter) { address owner = ERC721Upgradeable._ownerOf(tokenId); if (owner == address(0)) { // see if can find token in a batch mint (owner,) = _getBatchInfo(tokenId); } return owner; } else { return address(0); } } } /*////////////////////////////////////////////////////////////////////////// Burn Functions //////////////////////////////////////////////////////////////////////////*/ /// @notice function to burn a token /// @dev caller must be approved or owner of the token /// @param tokenId the token to burn function burn(uint256 tokenId) external { if (!_isApprovedOrOwner(msg.sender, tokenId)) revert CallerNotApprovedOrOwner(); _burn(tokenId); _burned[tokenId] = true; } /*////////////////////////////////////////////////////////////////////////// Royalty Functions //////////////////////////////////////////////////////////////////////////*/ /// @notice function to set the default royalty specification /// @dev requires owner /// @param newRecipient: the new royalty payout address /// @param newPercentage: the new royalty percentage in basis (out of 10,000) function setDefaultRoyalty(address newRecipient, uint256 newPercentage) external onlyOwner { _setDefaultRoyaltyInfo(newRecipient, newPercentage); } /// @notice function to override a token's royalty info /// @dev requires owner /// @param tokenId the token to override royalty for /// @param newRecipient the new royalty payout address for the token id /// @param newPercentage the new royalty percentage in basis (out of 10,000) for the token id function setTokenRoyalty(uint256 tokenId, address newRecipient, uint256 newPercentage) external onlyOwner { _overrideTokenRoyaltyInfo(tokenId, newRecipient, newPercentage); } /*////////////////////////////////////////////////////////////////////////// Synergy Functions //////////////////////////////////////////////////////////////////////////*/ /// @notice function to propose a token uri update for a specific token /// @dev requires owner /// @dev if the owner of the contract is the owner of the token, the change takes hold right away /// @param tokenId the token to propose new metadata for /// @param newUri the new token uri proposed function proposeNewTokenUri(uint256 tokenId, string calldata newUri) external onlyRoleOrOwner(ADMIN_ROLE) { if (!_exists(tokenId)) revert TokenDoesntExist(); if (bytes(newUri).length == 0) revert EmptyTokenURI(); if (ownerOf(tokenId) == owner()) { // creator owns the token _tokenUris[tokenId] = newUri; emit MetadataUpdate(tokenId); } else { // creator does not own the token _proposedTokenUris[tokenId] = newUri; emit SynergyStatusChange(msg.sender, tokenId, SynergyAction.Created, newUri); } } /// @notice function to accept a proposed token uri update for a specific token /// @dev requires owner of the token to call the function /// @param tokenId the token to accept the metadata update for function acceptTokenUriUpdate(uint256 tokenId) external { if (ownerOf(tokenId) != msg.sender) revert CallerNotTokenOwner(); string memory uri = _proposedTokenUris[tokenId]; if (bytes(uri).length == 0) revert NoTokenUriUpdateAvailable(); _tokenUris[tokenId] = uri; delete _proposedTokenUris[tokenId]; emit MetadataUpdate(tokenId); emit SynergyStatusChange(msg.sender, tokenId, SynergyAction.Accepted, uri); } /// @notice function to reject a proposed token uri update for a specific token /// @dev requires owner of the token to call the function /// @param tokenId the token to reject the metadata update for function rejectTokenUriUpdate(uint256 tokenId) external { if (ownerOf(tokenId) != msg.sender) revert CallerNotTokenOwner(); string memory uri = _proposedTokenUris[tokenId]; if (bytes(uri).length == 0) revert NoTokenUriUpdateAvailable(); delete _proposedTokenUris[tokenId]; emit SynergyStatusChange(msg.sender, tokenId, SynergyAction.Rejected, ""); } /*////////////////////////////////////////////////////////////////////////// Token Uri Override //////////////////////////////////////////////////////////////////////////*/ /// @inheritdoc ERC721Upgradeable function tokenURI(uint256 tokenId) public view override(ERC721Upgradeable) returns (string memory) { if (!_exists(tokenId)) revert TokenDoesntExist(); string memory uri = _tokenUris[tokenId]; if (bytes(uri).length == 0) { (, uri) = _getBatchInfo(tokenId); } return uri; } /*////////////////////////////////////////////////////////////////////////// Story Contract Hooks //////////////////////////////////////////////////////////////////////////*/ /// @inheritdoc StoryContractUpgradeable /// @dev restricted to the owner of the contract function _isStoryAdmin(address potentialAdmin) internal view override(StoryContractUpgradeable) returns (bool) { return potentialAdmin == owner() || hasRole(ADMIN_ROLE, potentialAdmin); } /// @inheritdoc StoryContractUpgradeable function _tokenExists(uint256 tokenId) internal view override(StoryContractUpgradeable) returns (bool) { return _exists(tokenId); } /// @inheritdoc StoryContractUpgradeable function _isTokenOwner(address potentialOwner, uint256 tokenId) internal view override(StoryContractUpgradeable) returns (bool) { address tokenOwner = ownerOf(tokenId); return tokenOwner == potentialOwner; } /// @inheritdoc StoryContractUpgradeable /// @dev restricted to the owner of the contract function _isCreator(address potentialCreator, uint256 /* tokenId */ ) internal view override(StoryContractUpgradeable) returns (bool) { return potentialCreator == owner() || hasRole(ADMIN_ROLE, potentialCreator); } /*////////////////////////////////////////////////////////////////////////// BlockList Functions & Overrides //////////////////////////////////////////////////////////////////////////*/ /// @inheritdoc BlockListUpgradeable /// @dev restricted to the owner of the contract function isBlockListAdmin(address potentialAdmin) public view override(BlockListUpgradeable) returns (bool) { return potentialAdmin == owner(); } /// @inheritdoc ERC721Upgradeable /// @dev added the `notBlocked` modifier for blocklist function approve(address to, uint256 tokenId) public override(ERC721Upgradeable) notBlocked(to) { ERC721Upgradeable.approve(to, tokenId); } /// @inheritdoc ERC721Upgradeable /// @dev added the `notBlocked` modifier for blocklist function setApprovalForAll(address operator, bool approved) public override(ERC721Upgradeable) notBlocked(operator) { ERC721Upgradeable.setApprovalForAll(operator, approved); } /*////////////////////////////////////////////////////////////////////////// ERC-165 Support //////////////////////////////////////////////////////////////////////////*/ /// @inheritdoc ERC165Upgradeable function supportsInterface(bytes4 interfaceId) public view override(ERC721Upgradeable, EIP2981TLUpgradeable, StoryContractUpgradeable) returns (bool) { return ( ERC721Upgradeable.supportsInterface(interfaceId) || EIP2981TLUpgradeable.supportsInterface(interfaceId) || StoryContractUpgradeable.supportsInterface(interfaceId) || interfaceId == bytes4(0x49064906) ); // EIP-4906 support } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.1) (proxy/utils/Initializable.sol) pragma solidity ^0.8.2; import "../../utils/AddressUpgradeable.sol"; /** * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed * behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect. * * The initialization functions use a version number. Once a version number is used, it is consumed and cannot be * reused. This mechanism prevents re-execution of each "step" but allows the creation of new initialization steps in * case an upgrade adds a module that needs to be initialized. * * For example: * * [.hljs-theme-light.nopadding] * ``` * contract MyToken is ERC20Upgradeable { * function initialize() initializer public { * __ERC20_init("MyToken", "MTK"); * } * } * contract MyTokenV2 is MyToken, ERC20PermitUpgradeable { * function initializeV2() reinitializer(2) public { * __ERC20Permit_init("MyToken"); * } * } * ``` * * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}. * * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity. * * [CAUTION] * ==== * Avoid leaving a contract uninitialized. * * An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation * contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke * the {_disableInitializers} function in the constructor to automatically lock it when it is deployed: * * [.hljs-theme-light.nopadding] * ``` * /// @custom:oz-upgrades-unsafe-allow constructor * constructor() { * _disableInitializers(); * } * ``` * ==== */ abstract contract Initializable { /** * @dev Indicates that the contract has been initialized. * @custom:oz-retyped-from bool */ uint8 private _initialized; /** * @dev Indicates that the contract is in the process of being initialized. */ bool private _initializing; /** * @dev Triggered when the contract has been initialized or reinitialized. */ event Initialized(uint8 version); /** * @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope, * `onlyInitializing` functions can be used to initialize parent contracts. * * Similar to `reinitializer(1)`, except that functions marked with `initializer` can be nested in the context of a * constructor. * * Emits an {Initialized} event. */ modifier initializer() { bool isTopLevelCall = !_initializing; require( (isTopLevelCall && _initialized < 1) || (!AddressUpgradeable.isContract(address(this)) && _initialized == 1), "Initializable: contract is already initialized" ); _initialized = 1; if (isTopLevelCall) { _initializing = true; } _; if (isTopLevelCall) { _initializing = false; emit Initialized(1); } } /** * @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the * contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be * used to initialize parent contracts. * * A reinitializer may be used after the original initialization step. This is essential to configure modules that * are added through upgrades and that require initialization. * * When `version` is 1, this modifier is similar to `initializer`, except that functions marked with `reinitializer` * cannot be nested. If one is invoked in the context of another, execution will revert. * * Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in * a contract, executing them in the right order is up to the developer or operator. * * WARNING: setting the version to 255 will prevent any future reinitialization. * * Emits an {Initialized} event. */ modifier reinitializer(uint8 version) { require(!_initializing && _initialized < version, "Initializable: contract is already initialized"); _initialized = version; _initializing = true; _; _initializing = false; emit Initialized(version); } /** * @dev Modifier to protect an initialization function so that it can only be invoked by functions with the * {initializer} and {reinitializer} modifiers, directly or indirectly. */ modifier onlyInitializing() { require(_initializing, "Initializable: contract is not initializing"); _; } /** * @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call. * Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized * to any version. It is recommended to use this to lock implementation contracts that are designed to be called * through proxies. * * Emits an {Initialized} event the first time it is successfully executed. */ function _disableInitializers() internal virtual { require(!_initializing, "Initializable: contract is initializing"); if (_initialized < type(uint8).max) { _initialized = type(uint8).max; emit Initialized(type(uint8).max); } } /** * @dev Returns the highest version that has been initialized. See {reinitializer}. */ function _getInitializedVersion() internal view returns (uint8) { return _initialized; } /** * @dev Returns `true` if the contract is currently initializing. See {onlyInitializing}. */ function _isInitializing() internal view returns (bool) { return _initializing; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.2) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; import "./IERC721Upgradeable.sol"; import "./IERC721ReceiverUpgradeable.sol"; import "./extensions/IERC721MetadataUpgradeable.sol"; import "../../utils/AddressUpgradeable.sol"; import "../../utils/ContextUpgradeable.sol"; import "../../utils/StringsUpgradeable.sol"; import "../../utils/introspection/ERC165Upgradeable.sol"; import "../../proxy/utils/Initializable.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721Upgradeable is Initializable, ContextUpgradeable, ERC165Upgradeable, IERC721Upgradeable, IERC721MetadataUpgradeable { using AddressUpgradeable for address; using StringsUpgradeable for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ function __ERC721_init(string memory name_, string memory symbol_) internal onlyInitializing { __ERC721_init_unchained(name_, symbol_); } function __ERC721_init_unchained(string memory name_, string memory symbol_) internal onlyInitializing { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165Upgradeable, IERC165Upgradeable) returns (bool) { return interfaceId == type(IERC721Upgradeable).interfaceId || interfaceId == type(IERC721MetadataUpgradeable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: address zero is not a valid owner"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _ownerOf(tokenId); require(owner != address(0), "ERC721: invalid token ID"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { _requireMinted(tokenId); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721Upgradeable.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not token owner or approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { _requireMinted(tokenId); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved"); _safeTransfer(from, to, tokenId, data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns the owner of the `tokenId`. Does NOT revert if token doesn't exist */ function _ownerOf(uint256 tokenId) internal view virtual returns (address) { return _owners[tokenId]; } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _ownerOf(tokenId) != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { address owner = ERC721Upgradeable.ownerOf(tokenId); return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId, 1); // Check that tokenId was not minted by `_beforeTokenTransfer` hook require(!_exists(tokenId), "ERC721: token already minted"); unchecked { // Will not overflow unless all 2**256 token ids are minted to the same owner. // Given that tokens are minted one by one, it is impossible in practice that // this ever happens. Might change if we allow batch minting. // The ERC fails to describe this case. _balances[to] += 1; } _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId, 1); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * This is an internal function that does not check if the sender is authorized to operate on the token. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721Upgradeable.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId, 1); // Update ownership in case tokenId was transferred by `_beforeTokenTransfer` hook owner = ERC721Upgradeable.ownerOf(tokenId); // Clear approvals delete _tokenApprovals[tokenId]; unchecked { // Cannot overflow, as that would require more tokens to be burned/transferred // out than the owner initially received through minting and transferring in. _balances[owner] -= 1; } delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId, 1); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721Upgradeable.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId, 1); // Check that tokenId was not transferred by `_beforeTokenTransfer` hook require(ERC721Upgradeable.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); // Clear approvals from the previous owner delete _tokenApprovals[tokenId]; unchecked { // `_balances[from]` cannot overflow for the same reason as described in `_burn`: // `from`'s balance is the number of token held, which is at least one before the current // transfer. // `_balances[to]` could overflow in the conditions described in `_mint`. That would require // all 2**256 token ids to be minted, which in practice is impossible. _balances[from] -= 1; _balances[to] += 1; } _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits an {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721Upgradeable.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits an {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Reverts if the `tokenId` has not been minted yet. */ function _requireMinted(uint256 tokenId) internal view virtual { require(_exists(tokenId), "ERC721: invalid token ID"); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory data ) private returns (bool) { if (to.isContract()) { try IERC721ReceiverUpgradeable(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) { return retval == IERC721ReceiverUpgradeable.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { /// @solidity memory-safe-assembly assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting and burning. If {ERC721Consecutive} is * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s tokens will be transferred to `to`. * - When `from` is zero, the tokens will be minted for `to`. * - When `to` is zero, ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * - `batchSize` is non-zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 firstTokenId, uint256 batchSize ) internal virtual {} /** * @dev Hook that is called after any token transfer. This includes minting and burning. If {ERC721Consecutive} is * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s tokens were transferred to `to`. * - When `from` is zero, the tokens were minted for `to`. * - When `to` is zero, ``from``'s tokens were burned. * - `from` and `to` are never both zero. * - `batchSize` is non-zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 firstTokenId, uint256 batchSize ) internal virtual {} /** * @dev Unsafe write access to the balances, used by extensions that "mint" tokens using an {ownerOf} override. * * WARNING: Anyone calling this MUST ensure that the balances remain consistent with the ownership. The invariant * being that for any address `a` the value returned by `balanceOf(a)` must be equal to the number of tokens such * that `ownerOf(tokenId)` is `a`. */ // solhint-disable-next-line func-name-mixedcase function __unsafe_increaseBalance(address account, uint256 amount) internal { _balances[account] += amount; } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[44] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (interfaces/IERC2309.sol) pragma solidity ^0.8.0; /** * @dev ERC-2309: ERC-721 Consecutive Transfer Extension. * * _Available since v4.8._ */ interface IERC2309Upgradeable { /** * @dev Emitted when the tokens from `fromTokenId` to `toTokenId` are transferred from `fromAddress` to `toAddress`. */ event ConsecutiveTransfer( uint256 indexed fromTokenId, uint256 toTokenId, address indexed fromAddress, address indexed toAddress ); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol) pragma solidity ^0.8.0; import "./math/MathUpgradeable.sol"; /** * @dev String operations. */ library StringsUpgradeable { bytes16 private constant _SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = MathUpgradeable.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), _SYMBOLS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, MathUpgradeable.log256(value) + 1); } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.17; import {Initializable} from "openzeppelin-upgradeable/proxy/utils/Initializable.sol"; import {ERC165Upgradeable} from "openzeppelin-upgradeable/utils/introspection/ERC165Upgradeable.sol"; import {IEIP2981} from "../../royalties/IEIP2981.sol"; /*////////////////////////////////////////////////////////////////////////// Custom Errors //////////////////////////////////////////////////////////////////////////*/ /// @dev error if the recipient is set to address(0) error ZeroAddressError(); /// @dev error if the royalty percentage is greater than to 100% error MaxRoyaltyError(); /*////////////////////////////////////////////////////////////////////////// EIP2981TL //////////////////////////////////////////////////////////////////////////*/ /// @title EIP2981TLUpgradeable.sol /// @notice abstract contract to define a default royalty spec /// while allowing for specific token overrides /// @dev follows EIP-2981 (https://eips.ethereum.org/EIPS/eip-2981) /// @author transientlabs.xyz /// @custom:version 2.2.2 abstract contract EIP2981TLUpgradeable is IEIP2981, Initializable, ERC165Upgradeable { /*////////////////////////////////////////////////////////////////////////// Royalty Struct //////////////////////////////////////////////////////////////////////////*/ struct RoyaltySpec { address recipient; uint256 percentage; } /*////////////////////////////////////////////////////////////////////////// State Variables //////////////////////////////////////////////////////////////////////////*/ address private _defaultRecipient; uint256 private _defaultPercentage; mapping(uint256 => RoyaltySpec) private _tokenOverrides; /*////////////////////////////////////////////////////////////////////////// Initializer //////////////////////////////////////////////////////////////////////////*/ /// @notice function to initialize the contract /// @param defaultRecipient - the default royalty payout address /// @param defaultPercentage - the deafult royalty percentage, out of 10,000 function __EIP2981TL_init(address defaultRecipient, uint256 defaultPercentage) internal onlyInitializing { __EIP2981TL_init_unchained(defaultRecipient, defaultPercentage); } /// @notice unchained function to initialize the contract /// @param defaultRecipient - the default royalty payout address /// @param defaultPercentage - the deafult royalty percentage, out of 10,000 function __EIP2981TL_init_unchained(address defaultRecipient, uint256 defaultPercentage) internal onlyInitializing { _setDefaultRoyaltyInfo(defaultRecipient, defaultPercentage); } /*////////////////////////////////////////////////////////////////////////// Royalty Changing Functions //////////////////////////////////////////////////////////////////////////*/ /// @notice function to set default royalty info /// @param newRecipient - the new default royalty payout address /// @param newPercentage - the new default royalty percentage, out of 10,000 function _setDefaultRoyaltyInfo(address newRecipient, uint256 newPercentage) internal { if (newRecipient == address(0)) revert ZeroAddressError(); if (newPercentage > 10_000) revert MaxRoyaltyError(); _defaultRecipient = newRecipient; _defaultPercentage = newPercentage; } /// @notice function to override royalty spec on a specific token /// @param tokenId - the token id to override royalty for /// @param newRecipient - the new royalty payout address /// @param newPercentage - the new royalty percentage, out of 10,000 function _overrideTokenRoyaltyInfo(uint256 tokenId, address newRecipient, uint256 newPercentage) internal { if (newRecipient == address(0)) revert ZeroAddressError(); if (newPercentage > 10_000) revert MaxRoyaltyError(); _tokenOverrides[tokenId].recipient = newRecipient; _tokenOverrides[tokenId].percentage = newPercentage; } /*////////////////////////////////////////////////////////////////////////// Royalty Info //////////////////////////////////////////////////////////////////////////*/ /// @inheritdoc IEIP2981 function royaltyInfo(uint256 tokenId, uint256 salePrice) external view returns (address receiver, uint256 royaltyAmount) { address recipient = _defaultRecipient; uint256 percentage = _defaultPercentage; if (_tokenOverrides[tokenId].recipient != address(0)) { recipient = _tokenOverrides[tokenId].recipient; percentage = _tokenOverrides[tokenId].percentage; } return (recipient, salePrice / 10_000 * percentage); // divide first to avoid overflow } /*////////////////////////////////////////////////////////////////////////// ERC-165 Override //////////////////////////////////////////////////////////////////////////*/ /// @inheritdoc ERC165Upgradeable function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165Upgradeable) returns (bool) { return interfaceId == type(IEIP2981).interfaceId || ERC165Upgradeable.supportsInterface(interfaceId); } /*////////////////////////////////////////////////////////////////////////// External View Functions //////////////////////////////////////////////////////////////////////////*/ /// @notice Query the default royalty receiver and percentage. /// @return Tuple containing the default royalty recipient and percentage out of 10_000 function getDefaultRoyaltyRecipientAndPercentage() external view returns (address, uint256) { return (_defaultRecipient, _defaultPercentage); } /*////////////////////////////////////////////////////////////////////////// Upgradeability Gap //////////////////////////////////////////////////////////////////////////*/ /// @dev gap variable - see https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps uint256[50] private _gap; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.17; import {Initializable} from "openzeppelin-upgradeable/proxy/utils/Initializable.sol"; import {EnumerableSetUpgradeable} from "openzeppelin-upgradeable/utils/structs/EnumerableSetUpgradeable.sol"; import {OwnableUpgradeable} from "openzeppelin-upgradeable/access/OwnableUpgradeable.sol"; /*////////////////////////////////////////////////////////////////////////// Custom Errors //////////////////////////////////////////////////////////////////////////*/ /// @dev does not have specified role error NotSpecifiedRole(bytes32 role); /// @dev is not specified role or owner error NotRoleOrOwner(bytes32 role); /*////////////////////////////////////////////////////////////////////////// OwnableAccessControlUpgradeable //////////////////////////////////////////////////////////////////////////*/ /// @title OwnableAccessControl.sol /// @notice single owner, flexible access control mechanics /// @dev can easily be extended by inheriting and applying additional roles /// @dev by default, only the owner can grant roles but by inheriting, but you /// may allow other roles to grant roles by using the internal helper. /// @author transientlabs.xyz /// @custom:version 2.2.2 abstract contract OwnableAccessControlUpgradeable is Initializable, OwnableUpgradeable { /*////////////////////////////////////////////////////////////////////////// State Variables //////////////////////////////////////////////////////////////////////////*/ using EnumerableSetUpgradeable for EnumerableSetUpgradeable.AddressSet; uint256 private _c; // counter to be able to revoke all priviledges mapping(uint256 => mapping(bytes32 => mapping(address => bool))) private _roleStatus; mapping(uint256 => mapping(bytes32 => EnumerableSetUpgradeable.AddressSet)) private _roleMembers; /*////////////////////////////////////////////////////////////////////////// Events //////////////////////////////////////////////////////////////////////////*/ /// @param from - address that authorized the role change /// @param user - the address who's role has been changed /// @param approved - boolean indicating the user's status in role /// @param role - the bytes32 role created in the inheriting contract event RoleChange(address indexed from, address indexed user, bool indexed approved, bytes32 role); /// @param from - address that authorized the revoke event AllRolesRevoked(address indexed from); /*////////////////////////////////////////////////////////////////////////// Modifiers //////////////////////////////////////////////////////////////////////////*/ modifier onlyRole(bytes32 role) { if (!hasRole(role, msg.sender)) { revert NotSpecifiedRole(role); } _; } modifier onlyRoleOrOwner(bytes32 role) { if (!hasRole(role, msg.sender) && owner() != msg.sender) { revert NotRoleOrOwner(role); } _; } /*////////////////////////////////////////////////////////////////////////// Initializer //////////////////////////////////////////////////////////////////////////*/ /// @param initOwner - the address of the initial owner function __OwnableAccessControl_init(address initOwner) internal onlyInitializing { __Ownable_init(); _transferOwnership(initOwner); __OwnableAccessControl_init_unchained(); } function __OwnableAccessControl_init_unchained() internal onlyInitializing {} /*////////////////////////////////////////////////////////////////////////// External Role Functions //////////////////////////////////////////////////////////////////////////*/ /// @notice function to revoke all roles currently present /// @dev increments the `_c` variables /// @dev requires owner privileges function revokeAllRoles() external onlyOwner { _c++; emit AllRolesRevoked(msg.sender); } /// @notice function to renounce role /// @param role - bytes32 role created in inheriting contracts function renounceRole(bytes32 role) external { address[] memory members = new address[](1); members[0] = msg.sender; _setRole(role, members, false); } /// @notice function to grant/revoke a role to an address /// @dev requires owner to call this function but this may be further /// extended using the internal helper function in inheriting contracts /// @param role - bytes32 role created in inheriting contracts /// @param roleMembers - list of addresses that should have roles attached to them based on `status` /// @param status - bool whether to remove or add `roleMembers` to the `role` function setRole(bytes32 role, address[] memory roleMembers, bool status) external onlyOwner { _setRole(role, roleMembers, status); } /*////////////////////////////////////////////////////////////////////////// External View Functions //////////////////////////////////////////////////////////////////////////*/ /// @notice function to see if an address is the owner /// @param role - bytes32 role created in inheriting contracts /// @param potentialRoleMember - address to check for role membership function hasRole(bytes32 role, address potentialRoleMember) public view returns (bool) { return _roleStatus[_c][role][potentialRoleMember]; } /// @notice function to get role members /// @param role - bytes32 role created in inheriting contracts function getRoleMembers(bytes32 role) public view returns (address[] memory) { return _roleMembers[_c][role].values(); } /*////////////////////////////////////////////////////////////////////////// Internal Helper Functions //////////////////////////////////////////////////////////////////////////*/ /// @notice helper function to set addresses for a role /// @param role - bytes32 role created in inheriting contracts /// @param roleMembers - list of addresses that should have roles attached to them based on `status` /// @param status - bool whether to remove or add `roleMembers` to the `role` function _setRole(bytes32 role, address[] memory roleMembers, bool status) internal { for (uint256 i = 0; i < roleMembers.length; i++) { _roleStatus[_c][role][roleMembers[i]] = status; if (status) { _roleMembers[_c][role].add(roleMembers[i]); } else { _roleMembers[_c][role].remove(roleMembers[i]); } emit RoleChange(msg.sender, roleMembers[i], status, role); } } /*////////////////////////////////////////////////////////////////////////// Upgradeability Gap //////////////////////////////////////////////////////////////////////////*/ /// @dev gap variable - see https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps uint256[50] private _gap; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.17; import {Initializable} from "openzeppelin-upgradeable/proxy/utils/Initializable.sol"; import {ERC165Upgradeable} from "openzeppelin-upgradeable/utils/introspection/ERC165Upgradeable.sol"; import { IStory, StoryNotEnabled, TokenDoesNotExist, NotTokenOwner, NotTokenCreator, NotStoryAdmin } from "../IStory.sol"; /*////////////////////////////////////////////////////////////////////////// Story Contract //////////////////////////////////////////////////////////////////////////*/ /// @title Story Contract /// @dev upgradeable, inheritable abstract contract implementing the Story Contract interface /// @author transientlabs.xyz /// @custom:version 4.0.2 abstract contract StoryContractUpgradeable is Initializable, IStory, ERC165Upgradeable { /*////////////////////////////////////////////////////////////////////////// State Variables //////////////////////////////////////////////////////////////////////////*/ bool public storyEnabled; /*////////////////////////////////////////////////////////////////////////// Modifiers //////////////////////////////////////////////////////////////////////////*/ modifier storyMustBeEnabled() { if (!storyEnabled) revert StoryNotEnabled(); _; } /*////////////////////////////////////////////////////////////////////////// Initializer //////////////////////////////////////////////////////////////////////////*/ /// @param enabled - a bool to enable or disable Story addition function __StoryContractUpgradeable_init(bool enabled) internal { __StoryContractUpgradeable_init_unchained(enabled); } /// @param enabled - a bool to enable or disable Story addition function __StoryContractUpgradeable_init_unchained(bool enabled) internal { storyEnabled = enabled; } /*////////////////////////////////////////////////////////////////////////// Story Functions //////////////////////////////////////////////////////////////////////////*/ /// @dev function to set story enabled/disabled /// @dev requires story admin /// @param enabled - a boolean setting to enable or disable Story additions function setStoryEnabled(bool enabled) external { if (!_isStoryAdmin(msg.sender)) revert NotStoryAdmin(); storyEnabled = enabled; } /// @inheritdoc IStory function addCreatorStory(uint256 tokenId, string calldata creatorName, string calldata story) external storyMustBeEnabled { if (!_tokenExists(tokenId)) revert TokenDoesNotExist(); if (!_isCreator(msg.sender, tokenId)) revert NotTokenCreator(); emit CreatorStory(tokenId, msg.sender, creatorName, story); } /// @inheritdoc IStory function addStory(uint256 tokenId, string calldata collectorName, string calldata story) external storyMustBeEnabled { if (!_tokenExists(tokenId)) revert TokenDoesNotExist(); if (!_isTokenOwner(msg.sender, tokenId)) revert NotTokenOwner(); emit Story(tokenId, msg.sender, collectorName, story); } /*////////////////////////////////////////////////////////////////////////// Hooks //////////////////////////////////////////////////////////////////////////*/ /// @dev function to allow access to enabling/disabling story /// @param potentialAdmin - the address to check for admin priviledges function _isStoryAdmin(address potentialAdmin) internal view virtual returns (bool); /// @dev function to check if a token exists on the token contract /// @param tokenId - the token id to check for existence function _tokenExists(uint256 tokenId) internal view virtual returns (bool); /// @dev function to check ownership of a token /// @param potentialOwner - the address to check for ownership of `tokenId` /// @param tokenId - the token id to check ownership against function _isTokenOwner(address potentialOwner, uint256 tokenId) internal view virtual returns (bool); /// @dev function to check creatorship of a token /// @param potentialCreator - the address to check creatorship of `tokenId` /// @param tokenId - the token id to check creatorship against function _isCreator(address potentialCreator, uint256 tokenId) internal view virtual returns (bool); /*////////////////////////////////////////////////////////////////////////// Overrides //////////////////////////////////////////////////////////////////////////*/ /// @inheritdoc ERC165Upgradeable function supportsInterface(bytes4 interfaceId) public view virtual override (ERC165Upgradeable) returns (bool) { return interfaceId == type(IStory).interfaceId || ERC165Upgradeable.supportsInterface(interfaceId); } /*////////////////////////////////////////////////////////////////////////// Upgradeability Gap //////////////////////////////////////////////////////////////////////////*/ /// @dev gap variable - see https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps uint256[50] private _gap; }
// SPDX-License-Identifier: MIT pragma solidity 0.8.19; import {Initializable} from "openzeppelin-upgradeable/proxy/utils/Initializable.sol"; import {BlockedOperator, Unauthorized, IBlockList} from "./IBlockList.sol"; import {IBlockListRegistry} from "./IBlockListRegistry.sol"; /// @title BlockList /// @author transientlabs.xyz /// @notice abstract contract that can be inherited to block /// approvals from non-royalty paying marketplaces /// @custom:version 4.0.0 abstract contract BlockListUpgradeable is Initializable, IBlockList { /*////////////////////////////////////////////////////////////////////////// Public State Variables //////////////////////////////////////////////////////////////////////////*/ IBlockListRegistry public blockListRegistry; /*////////////////////////////////////////////////////////////////////////// Events //////////////////////////////////////////////////////////////////////////*/ event BlockListRegistryUpdated(address indexed caller, address indexed oldRegistry, address indexed newRegistry); /*////////////////////////////////////////////////////////////////////////// Modifiers //////////////////////////////////////////////////////////////////////////*/ /// @dev modifier that can be applied to approval functions in order to block listings on marketplaces modifier notBlocked(address operator) { if (getBlockListStatus(operator)) { revert BlockedOperator(); } _; } /*////////////////////////////////////////////////////////////////////////// Initializer //////////////////////////////////////////////////////////////////////////*/ /// @param blockListRegistryAddr - the initial BlockList Registry Address function __BlockList_init(address blockListRegistryAddr) internal onlyInitializing { __BlockList_init_unchained(blockListRegistryAddr); } /// @param blockListRegistryAddr - the initial BlockList Registry Address function __BlockList_init_unchained(address blockListRegistryAddr) internal onlyInitializing { blockListRegistry = IBlockListRegistry(blockListRegistryAddr); emit BlockListRegistryUpdated(msg.sender, address(0), blockListRegistryAddr); } /*////////////////////////////////////////////////////////////////////////// Admin Functions //////////////////////////////////////////////////////////////////////////*/ /// @notice function to transfer ownership of the blockList /// @dev requires blockList owner /// @dev can be transferred to the ZERO_ADDRESS if desired /// @dev BE VERY CAREFUL USING THIS /// @param newBlockListRegistry - the address of the new BlockList registry function updateBlockListRegistry(address newBlockListRegistry) public { if (!isBlockListAdmin(msg.sender)) revert Unauthorized(); address oldRegistry = address(blockListRegistry); blockListRegistry = IBlockListRegistry(newBlockListRegistry); emit BlockListRegistryUpdated(msg.sender, oldRegistry, newBlockListRegistry); } /*////////////////////////////////////////////////////////////////////////// Public Read Functions //////////////////////////////////////////////////////////////////////////*/ /// @inheritdoc IBlockList function getBlockListStatus(address operator) public view override returns (bool) { if (address(blockListRegistry).code.length == 0) return false; try blockListRegistry.getBlockListStatus(operator) returns (bool isBlocked) { return isBlocked; } catch { return false; } } /// @notice Abstract function to determine if the operator is a blocklist admin. /// @param potentialAdmin - the potential admin address to check function isBlockListAdmin(address potentialAdmin) public view virtual returns (bool); /*////////////////////////////////////////////////////////////////////////// Upgradeability Gap //////////////////////////////////////////////////////////////////////////*/ /// @dev gap variable - see https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps uint256[50] private _gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library AddressUpgradeable { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://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 functionCallWithValue(target, data, 0, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165Upgradeable.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721Upgradeable is IERC165Upgradeable { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721 * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must * understand this adds an external call which potentially creates a reentrancy vulnerability. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721ReceiverUpgradeable { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721Upgradeable.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721MetadataUpgradeable is IERC721Upgradeable { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; import "../proxy/utils/Initializable.sol"; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract ContextUpgradeable is Initializable { function __Context_init() internal onlyInitializing { } function __Context_init_unchained() internal onlyInitializing { } function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[50] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165Upgradeable.sol"; import "../../proxy/utils/Initializable.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165Upgradeable is Initializable, IERC165Upgradeable { function __ERC165_init() internal onlyInitializing { } function __ERC165_init_unchained() internal onlyInitializing { } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165Upgradeable).interfaceId; } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[50] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol) pragma solidity ^0.8.0; /** * @dev Standard math utilities missing in the Solidity language. */ library MathUpgradeable { enum Rounding { Down, // Toward negative infinity Up, // Toward infinity Zero // Toward zero } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds up instead * of rounding down. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) * with further edits by Uniswap Labs also under MIT license. */ function mulDiv( uint256 x, uint256 y, uint256 denominator ) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod0 := mul(x, y) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. require(denominator > prod1); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1. // See https://cs.stackexchange.com/q/138556/92363. // Does not overflow because the denominator cannot be zero at this stage in the function. uint256 twos = denominator & (~denominator + 1); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works // in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv( uint256 x, uint256 y, uint256 denominator, Rounding rounding ) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (rounding == Rounding.Up && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2, rounded down, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10, rounded down, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10**64) { value /= 10**64; result += 64; } if (value >= 10**32) { value /= 10**32; result += 32; } if (value >= 10**16) { value /= 10**16; result += 16; } if (value >= 10**8) { value /= 10**8; result += 8; } if (value >= 10**4) { value /= 10**4; result += 4; } if (value >= 10**2) { value /= 10**2; result += 2; } if (value >= 10**1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0); } } /** * @dev Return the log in base 256, rounded down, of a positive value. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0); } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.17; /// /// @dev Interface for the NFT Royalty Standard /// interface IEIP2981 { /// ERC165 bytes to add to interface array - set in parent contract /// implementing this standard /// /// bytes4(keccak256("royaltyInfo(uint256,uint256)")) == 0x2a55205a /// @notice Called with the sale price to determine how much royalty // is owed and to whom. /// @param tokenId - the NFT asset queried for royalty information /// @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 function royaltyInfo(uint256 tokenId, uint256 salePrice) external view returns (address receiver, uint256 royaltyAmount); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/structs/EnumerableSet.sol) // This file was procedurally generated from scripts/generate/templates/EnumerableSet.js. pragma solidity ^0.8.0; /** * @dev Library for managing * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive * types. * * Sets have the following properties: * * - Elements are added, removed, and checked for existence in constant time * (O(1)). * - Elements are enumerated in O(n). No guarantees are made on the ordering. * * ``` * contract Example { * // Add the library methods * using EnumerableSet for EnumerableSet.AddressSet; * * // Declare a set state variable * EnumerableSet.AddressSet private mySet; * } * ``` * * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`) * and `uint256` (`UintSet`) are supported. * * [WARNING] * ==== * Trying to delete such a structure from storage will likely result in data corruption, rendering the structure * unusable. * See https://github.com/ethereum/solidity/pull/11843[ethereum/solidity#11843] for more info. * * In order to clean an EnumerableSet, you can either remove all elements one by one or create a fresh instance using an * array of EnumerableSet. * ==== */ library EnumerableSetUpgradeable { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Set type with // bytes32 values. // The Set implementation uses private functions, and user-facing // implementations (such as AddressSet) are just wrappers around the // underlying Set. // This means that we can only create new EnumerableSets for types that fit // in bytes32. struct Set { // Storage of set values bytes32[] _values; // Position of the value in the `values` array, plus 1 because index 0 // means a value is not in the set. mapping(bytes32 => uint256) _indexes; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function _add(Set storage set, bytes32 value) private returns (bool) { if (!_contains(set, value)) { set._values.push(value); // The value is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value set._indexes[value] = set._values.length; return true; } else { return false; } } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function _remove(Set storage set, bytes32 value) private returns (bool) { // We read and store the value's index to prevent multiple reads from the same storage slot uint256 valueIndex = set._indexes[value]; if (valueIndex != 0) { // Equivalent to contains(set, value) // To delete an element from the _values array in O(1), we swap the element to delete with the last one in // the array, and then remove the last element (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = valueIndex - 1; uint256 lastIndex = set._values.length - 1; if (lastIndex != toDeleteIndex) { bytes32 lastValue = set._values[lastIndex]; // Move the last value to the index where the value to delete is set._values[toDeleteIndex] = lastValue; // Update the index for the moved value set._indexes[lastValue] = valueIndex; // Replace lastValue's index to valueIndex } // Delete the slot where the moved value was stored set._values.pop(); // Delete the index for the deleted slot delete set._indexes[value]; return true; } else { return false; } } /** * @dev Returns true if the value is in the set. O(1). */ function _contains(Set storage set, bytes32 value) private view returns (bool) { return set._indexes[value] != 0; } /** * @dev Returns the number of values on the set. O(1). */ function _length(Set storage set) private view returns (uint256) { return set._values.length; } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Set storage set, uint256 index) private view returns (bytes32) { return set._values[index]; } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function _values(Set storage set) private view returns (bytes32[] memory) { return set._values; } // Bytes32Set struct Bytes32Set { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _add(set._inner, value); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _remove(set._inner, value); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) { return _contains(set._inner, value); } /** * @dev Returns the number of values in the set. O(1). */ function length(Bytes32Set storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) { return _at(set._inner, index); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(Bytes32Set storage set) internal view returns (bytes32[] memory) { bytes32[] memory store = _values(set._inner); bytes32[] memory result; /// @solidity memory-safe-assembly assembly { result := store } return result; } // AddressSet struct AddressSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(AddressSet storage set, address value) internal returns (bool) { return _add(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(AddressSet storage set, address value) internal returns (bool) { return _remove(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(AddressSet storage set, address value) internal view returns (bool) { return _contains(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns the number of values in the set. O(1). */ function length(AddressSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(AddressSet storage set, uint256 index) internal view returns (address) { return address(uint160(uint256(_at(set._inner, index)))); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(AddressSet storage set) internal view returns (address[] memory) { bytes32[] memory store = _values(set._inner); address[] memory result; /// @solidity memory-safe-assembly assembly { result := store } return result; } // UintSet struct UintSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(UintSet storage set, uint256 value) internal returns (bool) { return _add(set._inner, bytes32(value)); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(UintSet storage set, uint256 value) internal returns (bool) { return _remove(set._inner, bytes32(value)); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(UintSet storage set, uint256 value) internal view returns (bool) { return _contains(set._inner, bytes32(value)); } /** * @dev Returns the number of values in the set. O(1). */ function length(UintSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintSet storage set, uint256 index) internal view returns (uint256) { return uint256(_at(set._inner, index)); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(UintSet storage set) internal view returns (uint256[] memory) { bytes32[] memory store = _values(set._inner); uint256[] memory result; /// @solidity memory-safe-assembly assembly { result := store } return result; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/ContextUpgradeable.sol"; import "../proxy/utils/Initializable.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract OwnableUpgradeable is Initializable, ContextUpgradeable { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ function __Ownable_init() internal onlyInitializing { __Ownable_init_unchained(); } function __Ownable_init_unchained() internal onlyInitializing { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions 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 { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } /** * @dev This empty reserved space is put in place to allow future versions to add new * variables without shifting down storage in the inheritance chain. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps */ uint256[49] private __gap; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.17; /*////////////////////////////////////////////////////////////////////////// Custom Errors //////////////////////////////////////////////////////////////////////////*/ /// @dev story additions are not enabled error StoryNotEnabled(); /// @dev token does not exist error TokenDoesNotExist(); /// @dev caller is not the token owner error NotTokenOwner(); /// @dev caller is not the token creator error NotTokenCreator(); /// @dev caller is not a story admin error NotStoryAdmin(); /*////////////////////////////////////////////////////////////////////////// IStory //////////////////////////////////////////////////////////////////////////*/ /// @title Story Contract Interface /// @author transientlabs.xyz /// @custom:version 4.0.2 interface IStory { /*////////////////////////////////////////////////////////////////////////// Events //////////////////////////////////////////////////////////////////////////*/ /// @notice event describing a creator story getting added to a token /// @dev this events stores creator stories on chain in the event log /// @param tokenId - the token id to which the story is attached /// @param creatorAddress - the address of the creator of the token /// @param creatorName - string representation of the creator's name /// @param story - the story written and attached to the token id event CreatorStory(uint256 indexed tokenId, address indexed creatorAddress, string creatorName, string story); /// @notice event describing a collector story getting added to a token /// @dev this events stores collector stories on chain in the event log /// @param tokenId - the token id to which the story is attached /// @param collectorAddress - the address of the collector of the token /// @param collectorName - string representation of the collectors's name /// @param story - the story written and attached to the token id event Story(uint256 indexed tokenId, address indexed collectorAddress, string collectorName, string story); /*////////////////////////////////////////////////////////////////////////// Story Functions //////////////////////////////////////////////////////////////////////////*/ /// @notice function to let the creator add a story to any token they have created /// @dev depending on the implementation, this function may be restricted in various ways, such as /// limiting the number of times the creator may write a story. /// @dev this function MUST emit the CreatorStory event each time it is called /// @dev this function MUST implement logic to restrict access to only the creator /// @dev this function MUST revert if a story is written to a non-existent token /// @param tokenId - the token id to which the story is attached /// @param creatorName - string representation of the creator's name /// @param story - the story written and attached to the token id function addCreatorStory(uint256 tokenId, string calldata creatorName, string calldata story) external; /// @notice function to let collectors add a story to any token they own /// @dev depending on the implementation, this function may be restricted in various ways, such as /// limiting the number of times a collector may write a story. /// @dev this function MUST emit the Story event each time it is called /// @dev this function MUST implement logic to restrict access to only the owner of the token /// @dev this function MUST revert if a story is written to a non-existent token /// @param tokenId - the token id to which the story is attached /// @param collectorName - string representation of the collectors's name /// @param story - the story written and attached to the token id function addStory(uint256 tokenId, string calldata collectorName, string calldata story) external; }
// SPDX-License-Identifier: MIT pragma solidity 0.8.19; /*////////////////////////////////////////////////////////////////////////// Custom Errors //////////////////////////////////////////////////////////////////////////*/ /// @dev blocked operator error error BlockedOperator(); /// @dev unauthorized to call fn method error Unauthorized(); /*////////////////////////////////////////////////////////////////////////// IBlockList //////////////////////////////////////////////////////////////////////////*/ /// @title IBlockList /// @notice interface for the BlockList Contract /// @author transientlabs.xyz /// @custom:version 4.0.0 interface IBlockList { /// @notice function to get blocklist status with True meaning that the operator is blocked /// @dev must return false if the blocklist registry is an EOA or an incompatible contract, true/false if compatible /// @param operator - operator to check against for blocking function getBlockListStatus(address operator) external view returns (bool); }
// SPDX-License-Identifier: MIT pragma solidity 0.8.19; /// @title BlockList Registry /// @notice interface for the BlockListRegistry Contract /// @author transientlabs.xyz /// @custom:version 4.0.0 interface IBlockListRegistry { /*////////////////////////////////////////////////////////////////////////// Events //////////////////////////////////////////////////////////////////////////*/ event BlockListStatusChange(address indexed user, address indexed operator, bool indexed status); event BlockListCleared(address indexed user); /*////////////////////////////////////////////////////////////////////////// Public Read Functions //////////////////////////////////////////////////////////////////////////*/ /// @notice function to get blocklist status with True meaning that the operator is blocked function getBlockListStatus(address operator) external view returns (bool); /*////////////////////////////////////////////////////////////////////////// Public Write Functions //////////////////////////////////////////////////////////////////////////*/ /// @notice function to set the block list status for multiple operators /// @dev must be called by the blockList owner function setBlockListStatus(address[] calldata operators, bool status) external; /// @notice function to clear the block list status /// @dev must be called by the blockList owner function clearBlockList() external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165Upgradeable { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "remappings": [ "blocklist/=lib/blocklist/src/", "ds-test/=lib/forge-std/lib/ds-test/src/", "forge-std/=lib/forge-std/src/", "openzeppelin-contracts-upgradeable/=lib/openzeppelin-contracts-upgradeable/", "openzeppelin-contracts/=lib/openzeppelin-contracts/", "openzeppelin-upgradeable/=lib/openzeppelin-contracts-upgradeable/contracts/", "openzeppelin/=lib/openzeppelin-contracts/contracts/", "sstore2/=lib/sstore2/contracts/", "story-contract/=lib/story-contract/src/", "tl-blocklist/=lib/blocklist/src/", "tl-creator-contracts/=src/", "tl-sol-tools/=lib/tl-sol-tools/src/", "tl-story/=lib/story-contract/src/" ], "optimizer": { "enabled": true, "runs": 20000 }, "metadata": { "useLiteralContent": false, "bytecodeHash": "ipfs", "appendCBOR": true }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "evmVersion": "paris", "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"bool","name":"disable","type":"bool"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AirdropTooFewAddresses","type":"error"},{"inputs":[],"name":"BatchSizeTooSmall","type":"error"},{"inputs":[],"name":"BlockedOperator","type":"error"},{"inputs":[],"name":"CallerNotApprovedOrOwner","type":"error"},{"inputs":[],"name":"CallerNotTokenOwner","type":"error"},{"inputs":[],"name":"EmptyTokenURI","type":"error"},{"inputs":[],"name":"MaxRoyaltyError","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"NoTokenUriUpdateAvailable","type":"error"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"NotRoleOrOwner","type":"error"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"NotSpecifiedRole","type":"error"},{"inputs":[],"name":"NotStoryAdmin","type":"error"},{"inputs":[],"name":"NotTokenCreator","type":"error"},{"inputs":[],"name":"NotTokenOwner","type":"error"},{"inputs":[],"name":"StoryNotEnabled","type":"error"},{"inputs":[],"name":"TokenDoesNotExist","type":"error"},{"inputs":[],"name":"TokenDoesntExist","type":"error"},{"inputs":[],"name":"Unauthorized","type":"error"},{"inputs":[],"name":"ZeroAddressError","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"}],"name":"AllRolesRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"}],"name":"BatchMetadataUpdate","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"caller","type":"address"},{"indexed":true,"internalType":"address","name":"oldRegistry","type":"address"},{"indexed":true,"internalType":"address","name":"newRegistry","type":"address"}],"name":"BlockListRegistryUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"fromAddress","type":"address"},{"indexed":true,"internalType":"address","name":"toAddress","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"creatorAddress","type":"address"},{"indexed":false,"internalType":"string","name":"creatorName","type":"string"},{"indexed":false,"internalType":"string","name":"story","type":"string"}],"name":"CreatorStory","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"version","type":"uint8"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"MetadataUpdate","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"bool","name":"approved","type":"bool"},{"indexed":false,"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"RoleChange","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"collectorAddress","type":"address"},{"indexed":false,"internalType":"string","name":"collectorName","type":"string"},{"indexed":false,"internalType":"string","name":"story","type":"string"}],"name":"Story","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":true,"internalType":"enum ERC721TL.SynergyAction","name":"action","type":"uint8"},{"indexed":false,"internalType":"string","name":"uri","type":"string"}],"name":"SynergyStatusChange","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"APPROVED_MINT_CONTRACT","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"VERSION","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"acceptTokenUriUpdate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"creatorName","type":"string"},{"internalType":"string","name":"story","type":"string"}],"name":"addCreatorStory","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"collectorName","type":"string"},{"internalType":"string","name":"story","type":"string"}],"name":"addStory","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"string","name":"baseUri","type":"string"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"numTokens","type":"uint256"},{"internalType":"string","name":"baseUri","type":"string"}],"name":"batchMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"numTokens","type":"uint256"},{"internalType":"string","name":"baseUri","type":"string"}],"name":"batchMintUltra","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"blockListRegistry","outputs":[{"internalType":"contract IBlockListRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"string","name":"uri","type":"string"}],"name":"externalMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"getBlockListStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getDefaultRoyaltyRecipientAndPercentage","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMembers","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"potentialRoleMember","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"address","name":"defaultRoyaltyRecipient","type":"address"},{"internalType":"uint256","name":"defaultRoyaltyPercentage","type":"uint256"},{"internalType":"address","name":"initOwner","type":"address"},{"internalType":"address[]","name":"admins","type":"address[]"},{"internalType":"bool","name":"enableStory","type":"bool"},{"internalType":"address","name":"blockListRegistry","type":"address"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"potentialAdmin","type":"address"}],"name":"isBlockListAdmin","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"string","name":"uri","type":"string"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"string","name":"uri","type":"string"},{"internalType":"address","name":"royaltyAddress","type":"address"},{"internalType":"uint256","name":"royaltyPercent","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"newUri","type":"string"}],"name":"proposeNewTokenUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"rejectTokenUriUpdate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revokeAllRoles","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"minters","type":"address[]"},{"internalType":"bool","name":"status","type":"bool"}],"name":"setApprovedMintContracts","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newRecipient","type":"address"},{"internalType":"uint256","name":"newPercentage","type":"uint256"}],"name":"setDefaultRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address[]","name":"roleMembers","type":"address[]"},{"internalType":"bool","name":"status","type":"bool"}],"name":"setRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"setStoryEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"newRecipient","type":"address"},{"internalType":"uint256","name":"newPercentage","type":"uint256"}],"name":"setTokenRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"storyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newBlockListRegistry","type":"address"}],"name":"updateBlockListRegistry","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b50604051620054bc380380620054bc83398101604081905262000034916200010e565b80156200004557620000456200004c565b5062000139565b600054610100900460ff1615620000b95760405162461bcd60e51b815260206004820152602760248201527f496e697469616c697a61626c653a20636f6e747261637420697320696e697469604482015266616c697a696e6760c81b606482015260840160405180910390fd5b60005460ff90811610156200010c576000805460ff191660ff9081179091556040519081527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15b565b6000602082840312156200012157600080fd5b815180151581146200013257600080fd5b9392505050565b61537380620001496000396000f3fe608060405234801561001057600080fd5b506004361061032b5760003560e01c80636c6ad242116101b2578063a25a3393116100f9578063d0def521116100a2578063da14cbbc1161007c578063da14cbbc1461071a578063e985e9c51461072d578063f2fde38b14610769578063ffa1ad741461077c57600080fd5b8063d0def521146106e1578063d4bf502a146106f4578063d8d045b41461070757600080fd5b8063b3400ca8116100d3578063b3400ca8146106a8578063b88d4fde146106bb578063c87b56dd146106ce57600080fd5b8063a25a339314610661578063a3246ad314610675578063aef5a5491461069557600080fd5b80638da5cb5b1161015b5780639713c807116101355780639713c80714610628578063a00939f61461063b578063a22cb4651461064e57600080fd5b80638da5cb5b146105cb57806391d14854146105dc57806395d89b411461062057600080fd5b806375b238fc1161018c57806375b238fc1461057a5780637e6cc542146105a15780638bb9c5bf146105b857600080fd5b80636c6ad2421461054c57806370a082311461055f578063715018a61461057257600080fd5b806333aa4fb31161027657806351dc02f21161021f5780635b23e3ce116101f95780635b23e3ce146105135780636352211e1461052657806365a209351461053957600080fd5b806351dc02f2146104da57806356000f77146104ed5780635771ee771461050057600080fd5b806342842e0e1161025057806342842e0e146104a657806342966c68146104b95780634a597065146104cc57600080fd5b806333aa4fb31461047857806339ae37c0146104805780633f2bc9661461049357600080fd5b80631fbd2402116102d857806324f029c3116102b257806324f029c3146104205780632a55205a14610433578063334980a51461046557600080fd5b80631fbd2402146103d35780631ff7f0bc146103e657806323b872dd1461040d57600080fd5b8063095ea7b311610309578063095ea7b3146103985780631258e887146103ad57806318160ddd146103c057600080fd5b806301ffc9a71461033057806306fdde0314610358578063081812fc1461036d575b600080fd5b61034361033e366004614483565b6107b8565b60405190151581526020015b60405180910390f35b610360610833565b60405161034f919061450e565b61038061037b366004614521565b6108c5565b6040516001600160a01b03909116815260200161034f565b6103ab6103a6366004614551565b6108ec565b005b6103ab6103bb36600461457b565b61093c565b610199545b60405190815260200161034f565b6103ab6103e136600461474a565b6109e8565b6103c57ff0178e81e3689af48153edf0e1b2d669fe2786ab9e21fdecf3e3771c70330af581565b6103ab61041b36600461481f565b610beb565b6103ab61042e36600461485b565b610c72565b610446610441366004614878565b610ce3565b604080516001600160a01b03909316835260208301919091520161034f565b61034361047336600461457b565b610d5b565b6103ab610e29565b6103ab61048e366004614921565b610e73565b6103436104a136600461457b565b61111f565b6103ab6104b436600461481f565b61114e565b6103ab6104c7366004614521565b611169565b610133546103439060ff1681565b6103ab6104e836600461498d565b6111ec565b6103ab6104fb3660046149e4565b6112fb565b6103ab61050e366004614521565b611406565b6103ab6105213660046149e4565b611582565b610380610534366004614521565b61167e565b6103ab610547366004614521565b6116e2565b6103ab61055a366004614a5e565b6118a2565b6103c561056d36600461457b565b6119a1565b6103ab611a3b565b6103c57fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c2177581565b6104466097546098546001600160a01b0390911691565b6103ab6105c6366004614521565b611a4f565b60cc546001600160a01b0316610380565b6103436105ea366004614ab1565b60fe54600090815260ff6020818152604080842086855282528084206001600160a01b0386168552909152909120541692915050565b610360611ab5565b6103ab610636366004614add565b611ac4565b6103ab610649366004614b02565b611ad7565b6103ab61065c366004614b50565b611dc5565b61016654610380906001600160a01b031681565b610688610683366004614521565b611e10565b60405161034f9190614b87565b6103ab6106a3366004614b02565b611e39565b6103ab6106b6366004614bd4565b612123565b6103ab6106c9366004614c07565b612324565b6103606106dc366004614521565b6123ac565b6103ab6106ef366004614a5e565b6124a1565b6103ab610702366004614c83565b61254b565b6103ab610715366004614551565b61255e565b6103ab610728366004614cd3565b612570565b61034361073b366004614d40565b6001600160a01b039182166000908152606a6020908152604080832093909416825291909152205460ff1690565b6103ab61077736600461457b565b6126ad565b6103606040518060400160405280600681526020017f322e31302e31000000000000000000000000000000000000000000000000000081525081565b60006107c38261273d565b806107d257506107d282612820565b806107e157506107e1826128b7565b8061082d57507fffffffff0000000000000000000000000000000000000000000000000000000082167f4906490600000000000000000000000000000000000000000000000000000000145b92915050565b60606065805461084290614d6a565b80601f016020809104026020016040519081016040528092919081815260200182805461086e90614d6a565b80156108bb5780601f10610890576101008083540402835291602001916108bb565b820191906000526020600020905b81548152906001019060200180831161089e57829003601f168201915b5050505050905090565b60006108d08261294e565b506000908152606960205260409020546001600160a01b031690565b816108f681610d5b565b1561092d576040517fe0574fb800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61093783836129a3565b505050565b6109453361111f565b61097b576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61016680546001600160a01b038381167fffffffffffffffffffffffff00000000000000000000000000000000000000008316811790935560405191169190829033907ff6026fd4b2ac82ff1a70c6ad48ae392a9ebb9864f0df50089a32683980dd5f3f90600090a45050565b600054610100900460ff1615808015610a085750600054600160ff909116105b80610a225750303b158015610a22575060005460ff166001145b610a995760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a656400000000000000000000000000000000000060648201526084015b60405180910390fd5b600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011790558015610af757600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff166101001790555b610b018989612acf565b610b0b8787612b56565b610b1485612bdd565b610b488361013380547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001682151517905550565b610b5182612c73565b610b7d7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775856001612cf9565b8015610be057600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15b505050505050505050565b610bf53382612e86565b610c675760405162461bcd60e51b815260206004820152602d60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201527f72206f7220617070726f766564000000000000000000000000000000000000006064820152608401610a90565b610937838383612f04565b610c7b33613163565b610cb1576040517f4701b18c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61013380547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b609754609854600084815260996020526040812054909283926001600160a01b039182169290911615610d35575050600084815260996020526040902080546001909101546001600160a01b03909116905b8181610d4361271088614dec565b610d4d9190614e27565b9350935050505b9250929050565b610166546000906001600160a01b03163b8103610d7a57506000919050565b610166546040517f334980a50000000000000000000000000000000000000000000000000000000081526001600160a01b0384811660048301529091169063334980a590602401602060405180830381865afa925050508015610e18575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201909252610e1591810190614e3e565b60015b61082d57506000919050565b919050565b610e316131e6565b60fe8054906000610e4183614e5b565b909155505060405133907fdf1eaea754aea6dc7d083377ed7366dd7405e3fb0f16ddfb9448770520e4427990600090a2565b60fe54600090815260ff602081815260408084207fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c217758086529083528185203386529092529092205416158015610ee3575033610ed760cc546001600160a01b031690565b6001600160a01b031614155b15610f1d576040517f76c1743100000000000000000000000000000000000000000000000000000000815260048101829052602401610a90565b6000829003610f58576040517f17314b6100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6002841015610f93576040517f8015753900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000610199546001610fa59190614e93565b905060006001610fb58784614e93565b610fbf9190614ea6565b9050868690506101996000828254610fd79190614e93565b9250508190555061019d604051806080016040528060006001600160a01b0316815260200184815260200183815260200187878080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920182905250939094525050835460018082018655948252602091829020845160049092020180547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0390921691909117815590830151938101939093555060408101516002830155606081015190919060038201906110bc9082614eff565b50505060005b86811015611115576111038888838181106110df576110df615019565b90506020020160208101906110f4919061457b565b6110fe8386614e93565b613240565b8061110d81614e5b565b9150506110c2565b5050505050505050565b600061113360cc546001600160a01b031690565b6001600160a01b0316826001600160a01b0316149050919050565b61093783838360405180602001604052806000815250612324565b6111733382612e86565b6111a9576040517fc9c1cf1b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6111b2816133c5565b600090815261019a6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b60fe54600090815260ff602081815260408084207fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775808652908352818520338652909252909220541615801561125c57503361125060cc546001600160a01b031690565b6001600160a01b031614155b15611296576040517f76c1743100000000000000000000000000000000000000000000000000000000815260048101829052602401610a90565b6112f57ff0178e81e3689af48153edf0e1b2d669fe2786ab9e21fdecf3e3771c70330af5858580806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250879250612cf9915050565b50505050565b6101335460ff16611338576040517fc3d4cd7900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61134185613490565b611377576040517fceea21b600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611381338661349b565b6113b7576040517f57deb26a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336001600160a01b0316857f5c0564b4237730adb947143019acb5addfdbf1be3ad1edf72e24a8f9d02fd2c1868686866040516113f79493929190615091565b60405180910390a35050505050565b336114108261167e565b6001600160a01b031614611450576040517fb23b68b700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600081815261019b60205260408120805461146a90614d6a565b80601f016020809104026020016040519081016040528092919081815260200182805461149690614d6a565b80156114e35780601f106114b8576101008083540402835291602001916114e3565b820191906000526020600020905b8154815290600101906020018083116114c657829003601f168201915b505050505090508051600003611525576040517f863027cf00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082815261019b6020526040812061153d91614407565b6002604080516020808252600090820152849133917f150eb29d770d531a41e193b95d5b3ee85bf5d788969e59bcc83c5e28eec0214791015b60405180910390a45050565b6101335460ff166115bf576040517fc3d4cd7900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6115c885613490565b6115fe576040517fceea21b600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6116083386613521565b61163e576040517f59dc379f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336001600160a01b0316857f40ebea9c3c7603a5d233a0bec01e483338737b6bed01bed2ac09ccbaa3d4b7ac868686866040516113f79493929190615091565b60008061168a83613545565b90506001600160a01b03811661082d5760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e20494400000000000000006044820152606401610a90565b336116ec8261167e565b6001600160a01b03161461172c576040517fb23b68b700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600081815261019b60205260408120805461174690614d6a565b80601f016020809104026020016040519081016040528092919081815260200182805461177290614d6a565b80156117bf5780601f10611794576101008083540402835291602001916117bf565b820191906000526020600020905b8154815290600101906020018083116117a257829003601f168201915b505050505090508051600003611801576040517f863027cf00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082815261019c6020526040902061181a8282614eff565b50600082815261019b6020526040812061183391614407565b6040518281527ff8e1a15aba9398e019f0b49df1a4fde98ee17ae345cb5f6b5e2c27f5033e8ce79060200160405180910390a1600182336001600160a01b03167f150eb29d770d531a41e193b95d5b3ee85bf5d788969e59bcc83c5e28eec0214784604051611576919061450e565b60fe54600090815260ff602081815260408084207ff0178e81e3689af48153edf0e1b2d669fe2786ab9e21fdecf3e3771c70330af58086529083528185203386529092529092205416611924576040517fee074e7400000000000000000000000000000000000000000000000000000000815260048101829052602401610a90565b600082900361195f576040517f17314b6100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610199805490600061197083614e5b565b909155505061019954600090815261019c602052604090206119938385836150b8565b506112f58461019954613240565b60006001600160a01b038216611a1f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f74206120766160448201527f6c6964206f776e657200000000000000000000000000000000000000000000006064820152608401610a90565b506001600160a01b031660009081526068602052604090205490565b611a436131e6565b611a4d60006135b3565b565b604080516001808252818301909252600091602080830190803683370190505090503381600081518110611a8557611a85615019565b60200260200101906001600160a01b031690816001600160a01b031681525050611ab182826000612cf9565b5050565b60606066805461084290614d6a565b611acc6131e6565b61093783838361361d565b60fe54600090815260ff602081815260408084207fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c217758086529083528185203386529092529092205416158015611b47575033611b3b60cc546001600160a01b031690565b6001600160a01b031614155b15611b81576040517f76c1743100000000000000000000000000000000000000000000000000000000815260048101829052602401610a90565b6001600160a01b038516611bc1576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000829003611bfc576040517f17314b6100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6002841015611c37576040517f26ce41c100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000610199546001611c499190614e93565b905060006001611c598784614e93565b611c639190614ea6565b9050856101996000828254611c789190614e93565b9250508190555061019d6040518060800160405280896001600160a01b0316815260200184815260200183815260200187878080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920182905250939094525050835460018082018655948252602091829020845160049092020180547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b039092169190911781559083015193810193909355506040810151600283015560608101519091906003820190611d5c9082614eff565b505050611d6987876136e4565b815b611d76826001614e93565b8110156111155760405181906001600160a01b038a16906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611dbe81614e5b565b9050611d6b565b81611dcf81610d5b565b15611e06576040517fe0574fb800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6109378383613715565b60fe54600090815261010060209081526040808320848452909152902060609061082d90613720565b60fe54600090815260ff602081815260408084207fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c217758086529083528185203386529092529092205416158015611ea9575033611e9d60cc546001600160a01b031690565b6001600160a01b031614155b15611ee3576040517f76c1743100000000000000000000000000000000000000000000000000000000815260048101829052602401610a90565b6001600160a01b038516611f23576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000829003611f5e576040517f17314b6100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6002841015611f99576040517f26ce41c100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000610199546001611fab9190614e93565b905060006001611fbb8784614e93565b611fc59190614ea6565b9050856101996000828254611fda9190614e93565b9250508190555061019d6040518060800160405280896001600160a01b0316815260200184815260200183815260200187878080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920182905250939094525050835460018082018655948252602091829020845160049092020180547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0390921691909117815590830151938101939093555060408101516002830155606081015190919060038201906120be9082614eff565b5050506120cb87876136e4565b866001600160a01b031660006001600160a01b0316837fdeaa91b6123d068f5821d0fb0678463d1a8a6079fe8af5de3ce5e896dcf9133d8460405161211291815260200190565b60405180910390a450505050505050565b60fe54600090815260ff602081815260408084207fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775808652908352818520338652909252909220541615801561219357503361218760cc546001600160a01b031690565b6001600160a01b031614155b156121cd576040517f76c1743100000000000000000000000000000000000000000000000000000000815260048101829052602401610a90565b6121d68461372d565b61220c576040517feb7d192800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000829003612247576040517f17314b6100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60cc546001600160a01b031661225c8561167e565b6001600160a01b0316036122bd57600084815261019c602052604090206122848385836150b8565b506040518481527ff8e1a15aba9398e019f0b49df1a4fde98ee17ae345cb5f6b5e2c27f5033e8ce79060200160405180910390a16112f5565b600084815261019b602052604090206122d78385836150b8565b50600084336001600160a01b03167f150eb29d770d531a41e193b95d5b3ee85bf5d788969e59bcc83c5e28eec0214786866040516123169291906151d3565b60405180910390a450505050565b61232e3383612e86565b6123a05760405162461bcd60e51b815260206004820152602d60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201527f72206f7220617070726f766564000000000000000000000000000000000000006064820152608401610a90565b6112f58484848461374a565b60606123b78261372d565b6123ed576040517feb7d192800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082815261019c60205260408120805461240790614d6a565b80601f016020809104026020016040519081016040528092919081815260200182805461243390614d6a565b80156124805780601f1061245557610100808354040283529160200191612480565b820191906000526020600020905b81548152906001019060200180831161246357829003601f168201915b50505050509050805160000361082d57612499836137d3565b949350505050565b60fe54600090815260ff602081815260408084207fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775808652908352818520338652909252909220541615801561251157503361250560cc546001600160a01b031690565b6001600160a01b031614155b15611924576040517f76c1743100000000000000000000000000000000000000000000000000000000815260048101829052602401610a90565b6125536131e6565b610937838383612cf9565b6125666131e6565b611ab18282613935565b60fe54600090815260ff602081815260408084207fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c2177580865290835281852033865290925290922054161580156125e05750336125d460cc546001600160a01b031690565b6001600160a01b031614155b1561261a576040517f76c1743100000000000000000000000000000000000000000000000000000000815260048101829052602401610a90565b6000849003612655576040517f17314b6100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610199805490600061266683614e5b565b909155505061019954600090815261019c602052604090206126898587836150b8565b5061269861019954848461361d565b6126a58661019954613240565b505050505050565b6126b56131e6565b6001600160a01b0381166127315760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610a90565b61273a816135b3565b50565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd0000000000000000000000000000000000000000000000000000000014806127d057507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061082d57507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff0000000000000000000000000000000000000000000000000000000083161461082d565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f2a55205a00000000000000000000000000000000000000000000000000000000148061082d57507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff0000000000000000000000000000000000000000000000000000000083161461082d565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f0d23ecb900000000000000000000000000000000000000000000000000000000148061082d57507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff0000000000000000000000000000000000000000000000000000000083161461082d565b6129578161372d565b61273a5760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e20494400000000000000006044820152606401610a90565b60006129ae8261167e565b9050806001600160a01b0316836001600160a01b031603612a375760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610a90565b336001600160a01b0382161480612a535750612a53813361073b565b612ac55760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c0000006064820152608401610a90565b61093783836139ef565b600054610100900460ff16612b4c5760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e670000000000000000000000000000000000000000006064820152608401610a90565b611ab18282613a75565b600054610100900460ff16612bd35760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e670000000000000000000000000000000000000000006064820152608401610a90565b611ab18282613b0b565b600054610100900460ff16612c5a5760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e670000000000000000000000000000000000000000006064820152608401610a90565b612c62613b88565b612c6b816135b3565b61273a613c0d565b600054610100900460ff16612cf05760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e670000000000000000000000000000000000000000006064820152608401610a90565b61273a81613c8a565b60005b82518110156112f55760fe54600090815260ff6020908152604080832087845290915281208451849290869085908110612d3857612d38615019565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a81548160ff0219169083151502179055508115612dc657612dc0838281518110612d9257612d92615019565b60209081029190910181015160fe546000908152610100835260408082208983529093529190912090613d6e565b50612e0b565b612e09838281518110612ddb57612ddb615019565b60209081029190910181015160fe546000908152610100835260408082208983529093529190912090613d83565b505b811515838281518110612e2057612e20615019565b60200260200101516001600160a01b0316336001600160a01b03167fc9f6f69b3c19bd2b7eb8273129bbca5e3db0e3be63ca9903e140122a5bbb556e87604051612e6c91815260200190565b60405180910390a480612e7e81614e5b565b915050612cfc565b600080612e928361167e565b9050806001600160a01b0316846001600160a01b03161480612ed957506001600160a01b038082166000908152606a602090815260408083209388168352929052205460ff165b806124995750836001600160a01b0316612ef2846108c5565b6001600160a01b031614949350505050565b826001600160a01b0316612f178261167e565b6001600160a01b031614612f935760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201527f6f776e65720000000000000000000000000000000000000000000000000000006064820152608401610a90565b6001600160a01b03821661300e5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610a90565b826001600160a01b03166130218261167e565b6001600160a01b03161461309d5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201527f6f776e65720000000000000000000000000000000000000000000000000000006064820152608401610a90565b600081815260696020908152604080832080547fffffffffffffffffffffffff00000000000000000000000000000000000000009081169091556001600160a01b038781168086526068855283862080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff01905590871680865283862080546001019055868652606790945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600061317760cc546001600160a01b031690565b6001600160a01b0316826001600160a01b0316148061082d575060fe54600090815260ff602081815260408084207fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775855282528084206001600160a01b0387168552909152909120541661082d565b60cc546001600160a01b03163314611a4d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a90565b6001600160a01b0382166132965760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610a90565b61329f8161372d565b156132ec5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610a90565b6132f58161372d565b156133425760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610a90565b6001600160a01b038216600081815260686020908152604080832080546001019055848352606790915280822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006133d08261167e565b90506133db8261167e565b600083815260696020908152604080832080547fffffffffffffffffffffffff00000000000000000000000000000000000000009081169091556001600160a01b0385168085526068845282852080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0190558785526067909352818420805490911690555192935084927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600061082d8261372d565b60006134af60cc546001600160a01b031690565b6001600160a01b0316836001600160a01b0316148061351a575060fe54600090815260ff602081815260408084207fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775855282528084206001600160a01b038816855290915290912054165b9392505050565b60008061352d8361167e565b6001600160a01b039081169085161491505092915050565b600081815261019a602052604081205460ff161561356557506000919050565b6000821180156135785750610199548211155b156135ab576000828152606760205260409020546001600160a01b03168061082d576135a3836137d3565b509392505050565b506000919050565b60cc80546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03821661365d576040517f3efa09af00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612710811115613699576040517fdc65bdeb00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60009283526099602052604090922080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b039290921691909117815560010155565b6001600160a01b0382166000908152606860205260408120805483929061370c908490614e93565b90915550505050565b611ab1338383613d98565b6060600061351a83613e84565b60008061373983613545565b6001600160a01b0316141592915050565b613755848484612f04565b61376184848484613ee0565b6112f55760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610a90565b6000606060005b61019d548110156138555761019d81815481106137f9576137f9615019565b906000526020600020906004020160010154841015801561383f575061019d818154811061382957613829615019565b9060005260206000209060040201600201548411155b613855578061384d81614e5b565b9150506137da565b61019d54811061387b576000604051806020016040528060008152509250925050915091565b600061019d828154811061389157613891615019565b90600052602060002090600402016003016138db61019d84815481106138b9576138b9615019565b906000526020600020906004020160010154876138d69190614ea6565b61409f565b6040516020016138ec9291906151e7565b604051602081830303815290604052905061019d828154811061391157613911615019565b60009182526020909120600490910201546001600160a01b03169590945092505050565b6001600160a01b038216613975576040517f3efa09af00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6127108111156139b1576040517fdc65bdeb00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b609780547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b039390931692909217909155609855565b600081815260696020526040902080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0384169081179091558190613a3c8261167e565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600054610100900460ff16613af25760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e670000000000000000000000000000000000000000006064820152608401610a90565b6065613afe8382614eff565b5060666109378282614eff565b600054610100900460ff166125665760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e670000000000000000000000000000000000000000006064820152608401610a90565b600054610100900460ff16613c055760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e670000000000000000000000000000000000000000006064820152608401610a90565b611a4d61415d565b600054610100900460ff16611a4d5760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e670000000000000000000000000000000000000000006064820152608401610a90565b600054610100900460ff16613d075760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e670000000000000000000000000000000000000000006064820152608401610a90565b61016680547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b03831690811790915560405160009033907ff6026fd4b2ac82ff1a70c6ad48ae392a9ebb9864f0df50089a32683980dd5f3f908390a450565b600061351a836001600160a01b0384166141e3565b600061351a836001600160a01b038416614232565b816001600160a01b0316836001600160a01b031603613df95760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610a90565b6001600160a01b038381166000818152606a602090815260408083209487168084529482529182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b606081600001805480602002602001604051908101604052809291908181526020018280548015613ed457602002820191906000526020600020905b815481526020019060010190808311613ec0575b50505050509050919050565b60006001600160a01b0384163b15614094576040517f150b7a020000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063150b7a0290613f3d9033908990889088906004016152b5565b6020604051808303816000875af1925050508015613f96575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201909252613f93918101906152f1565b60015b614049573d808015613fc4576040519150601f19603f3d011682016040523d82523d6000602084013e613fc9565b606091505b5080516000036140415760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610a90565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050612499565b506001949350505050565b606060006140ac83614325565b600101905060008167ffffffffffffffff8111156140cc576140cc614596565b6040519080825280601f01601f1916602001820160405280156140f6576020820181803683370190505b5090508181016020015b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff017f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a850494508461410057509392505050565b600054610100900460ff166141da5760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e670000000000000000000000000000000000000000006064820152608401610a90565b611a4d336135b3565b600081815260018301602052604081205461422a5750815460018181018455600084815260208082209093018490558454848252828601909352604090209190915561082d565b50600061082d565b6000818152600183016020526040812054801561431b576000614256600183614ea6565b855490915060009061426a90600190614ea6565b90508181146142cf57600086600001828154811061428a5761428a615019565b90600052602060002001549050808760000184815481106142ad576142ad615019565b6000918252602080832090910192909255918252600188019052604090208390555b85548690806142e0576142e061530e565b60019003818190600052602060002001600090559055856001016000868152602001908152602001600020600090556001935050505061082d565b600091505061082d565b6000807a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000831061436e577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000830492506040015b6d04ee2d6d415b85acef8100000000831061439a576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc1000083106143b857662386f26fc10000830492506010015b6305f5e10083106143d0576305f5e100830492506008015b61271083106143e457612710830492506004015b606483106143f6576064830492506002015b600a831061082d5760010192915050565b50805461441390614d6a565b6000825580601f10614423575050565b601f01602090049060005260206000209081019061273a91905b80821115614451576000815560010161443d565b5090565b7fffffffff000000000000000000000000000000000000000000000000000000008116811461273a57600080fd5b60006020828403121561449557600080fd5b813561351a81614455565b60005b838110156144bb5781810151838201526020016144a3565b50506000910152565b600081518084526144dc8160208601602086016144a0565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b60208152600061351a60208301846144c4565b60006020828403121561453357600080fd5b5035919050565b80356001600160a01b0381168114610e2457600080fd5b6000806040838503121561456457600080fd5b61456d8361453a565b946020939093013593505050565b60006020828403121561458d57600080fd5b61351a8261453a565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016810167ffffffffffffffff8111828210171561460c5761460c614596565b604052919050565b600067ffffffffffffffff83111561462e5761462e614596565b61465f60207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f860116016145c5565b905082815283838301111561467357600080fd5b828260208301376000602084830101529392505050565b600082601f83011261469b57600080fd5b61351a83833560208501614614565b600082601f8301126146bb57600080fd5b8135602067ffffffffffffffff8211156146d7576146d7614596565b8160051b6146e68282016145c5565b928352848101820192828101908785111561470057600080fd5b83870192505b84831015614726576147178361453a565b82529183019190830190614706565b979650505050505050565b801515811461273a57600080fd5b8035610e2481614731565b600080600080600080600080610100898b03121561476757600080fd5b883567ffffffffffffffff8082111561477f57600080fd5b61478b8c838d0161468a565b995060208b01359150808211156147a157600080fd5b6147ad8c838d0161468a565b98506147bb60408c0161453a565b975060608b013596506147d060808c0161453a565b955060a08b01359150808211156147e657600080fd5b506147f38b828c016146aa565b93505061480260c08a0161473f565b915061481060e08a0161453a565b90509295985092959890939650565b60008060006060848603121561483457600080fd5b61483d8461453a565b925061484b6020850161453a565b9150604084013590509250925092565b60006020828403121561486d57600080fd5b813561351a81614731565b6000806040838503121561488b57600080fd5b50508035926020909101359150565b60008083601f8401126148ac57600080fd5b50813567ffffffffffffffff8111156148c457600080fd5b6020830191508360208260051b8501011115610d5457600080fd5b60008083601f8401126148f157600080fd5b50813567ffffffffffffffff81111561490957600080fd5b602083019150836020828501011115610d5457600080fd5b6000806000806040858703121561493757600080fd5b843567ffffffffffffffff8082111561494f57600080fd5b61495b8883890161489a565b9096509450602087013591508082111561497457600080fd5b50614981878288016148df565b95989497509550505050565b6000806000604084860312156149a257600080fd5b833567ffffffffffffffff8111156149b957600080fd5b6149c58682870161489a565b90945092505060208401356149d981614731565b809150509250925092565b6000806000806000606086880312156149fc57600080fd5b85359450602086013567ffffffffffffffff80821115614a1b57600080fd5b614a2789838a016148df565b90965094506040880135915080821115614a4057600080fd5b50614a4d888289016148df565b969995985093965092949392505050565b600080600060408486031215614a7357600080fd5b614a7c8461453a565b9250602084013567ffffffffffffffff811115614a9857600080fd5b614aa4868287016148df565b9497909650939450505050565b60008060408385031215614ac457600080fd5b82359150614ad46020840161453a565b90509250929050565b600080600060608486031215614af257600080fd5b8335925061484b6020850161453a565b60008060008060608587031215614b1857600080fd5b614b218561453a565b935060208501359250604085013567ffffffffffffffff811115614b4457600080fd5b614981878288016148df565b60008060408385031215614b6357600080fd5b614b6c8361453a565b91506020830135614b7c81614731565b809150509250929050565b6020808252825182820181905260009190848201906040850190845b81811015614bc85783516001600160a01b031683529284019291840191600101614ba3565b50909695505050505050565b600080600060408486031215614be957600080fd5b83359250602084013567ffffffffffffffff811115614a9857600080fd5b60008060008060808587031215614c1d57600080fd5b614c268561453a565b9350614c346020860161453a565b925060408501359150606085013567ffffffffffffffff811115614c5757600080fd5b8501601f81018713614c6857600080fd5b614c7787823560208401614614565b91505092959194509250565b600080600060608486031215614c9857600080fd5b83359250602084013567ffffffffffffffff811115614cb657600080fd5b614cc2868287016146aa565b92505060408401356149d981614731565b600080600080600060808688031215614ceb57600080fd5b614cf48661453a565b9450602086013567ffffffffffffffff811115614d1057600080fd5b614d1c888289016148df565b9095509350614d2f90506040870161453a565b949793965091946060013592915050565b60008060408385031215614d5357600080fd5b614d5c8361453a565b9150614ad46020840161453a565b600181811c90821680614d7e57607f821691505b602082108103614db7577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600082614e22577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b808202811582820484141761082d5761082d614dbd565b600060208284031215614e5057600080fd5b815161351a81614731565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614e8c57614e8c614dbd565b5060010190565b8082018082111561082d5761082d614dbd565b8181038181111561082d5761082d614dbd565b601f82111561093757600081815260208120601f850160051c81016020861015614ee05750805b601f850160051c820191505b818110156126a557828155600101614eec565b815167ffffffffffffffff811115614f1957614f19614596565b614f2d81614f278454614d6a565b84614eb9565b602080601f831160018114614f805760008415614f4a5750858301515b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600386901b1c1916600185901b1785556126a5565b6000858152602081207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08616915b82811015614fcd57888601518255948401946001909101908401614fae565b508582101561500957878501517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600388901b60f8161c191681555b5050505050600190811b01905550565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b8183528181602085013750600060208284010152600060207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f840116840101905092915050565b6040815260006150a5604083018688615048565b8281036020840152614726818587615048565b67ffffffffffffffff8311156150d0576150d0614596565b6150e4836150de8354614d6a565b83614eb9565b6000601f84116001811461513657600085156151005750838201355b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600387901b1c1916600186901b1783556151cc565b6000838152602090207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0861690835b828110156151855786850135825560209485019460019092019101615165565b50868210156151c0577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60f88860031b161c19848701351681555b505060018560011b0183555b5050505050565b602081526000612499602083018486615048565b60008084546151f581614d6a565b6001828116801561520d57600181146152405761526f565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff008416875282151583028701945061526f565b8860005260208060002060005b858110156152665781548a82015290840190820161524d565b50505082870194505b507f2f000000000000000000000000000000000000000000000000000000000000008452865192506152a78382860160208a016144a0565b919092010195945050505050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526152e760808301846144c4565b9695505050505050565b60006020828403121561530357600080fd5b815161351a81614455565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea2646970667358221220872f8ac21712f4bffeed998ffac52f11403ed0e83c338e2db37ca551f5b8585464736f6c634300081300330000000000000000000000000000000000000000000000000000000000000001
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061032b5760003560e01c80636c6ad242116101b2578063a25a3393116100f9578063d0def521116100a2578063da14cbbc1161007c578063da14cbbc1461071a578063e985e9c51461072d578063f2fde38b14610769578063ffa1ad741461077c57600080fd5b8063d0def521146106e1578063d4bf502a146106f4578063d8d045b41461070757600080fd5b8063b3400ca8116100d3578063b3400ca8146106a8578063b88d4fde146106bb578063c87b56dd146106ce57600080fd5b8063a25a339314610661578063a3246ad314610675578063aef5a5491461069557600080fd5b80638da5cb5b1161015b5780639713c807116101355780639713c80714610628578063a00939f61461063b578063a22cb4651461064e57600080fd5b80638da5cb5b146105cb57806391d14854146105dc57806395d89b411461062057600080fd5b806375b238fc1161018c57806375b238fc1461057a5780637e6cc542146105a15780638bb9c5bf146105b857600080fd5b80636c6ad2421461054c57806370a082311461055f578063715018a61461057257600080fd5b806333aa4fb31161027657806351dc02f21161021f5780635b23e3ce116101f95780635b23e3ce146105135780636352211e1461052657806365a209351461053957600080fd5b806351dc02f2146104da57806356000f77146104ed5780635771ee771461050057600080fd5b806342842e0e1161025057806342842e0e146104a657806342966c68146104b95780634a597065146104cc57600080fd5b806333aa4fb31461047857806339ae37c0146104805780633f2bc9661461049357600080fd5b80631fbd2402116102d857806324f029c3116102b257806324f029c3146104205780632a55205a14610433578063334980a51461046557600080fd5b80631fbd2402146103d35780631ff7f0bc146103e657806323b872dd1461040d57600080fd5b8063095ea7b311610309578063095ea7b3146103985780631258e887146103ad57806318160ddd146103c057600080fd5b806301ffc9a71461033057806306fdde0314610358578063081812fc1461036d575b600080fd5b61034361033e366004614483565b6107b8565b60405190151581526020015b60405180910390f35b610360610833565b60405161034f919061450e565b61038061037b366004614521565b6108c5565b6040516001600160a01b03909116815260200161034f565b6103ab6103a6366004614551565b6108ec565b005b6103ab6103bb36600461457b565b61093c565b610199545b60405190815260200161034f565b6103ab6103e136600461474a565b6109e8565b6103c57ff0178e81e3689af48153edf0e1b2d669fe2786ab9e21fdecf3e3771c70330af581565b6103ab61041b36600461481f565b610beb565b6103ab61042e36600461485b565b610c72565b610446610441366004614878565b610ce3565b604080516001600160a01b03909316835260208301919091520161034f565b61034361047336600461457b565b610d5b565b6103ab610e29565b6103ab61048e366004614921565b610e73565b6103436104a136600461457b565b61111f565b6103ab6104b436600461481f565b61114e565b6103ab6104c7366004614521565b611169565b610133546103439060ff1681565b6103ab6104e836600461498d565b6111ec565b6103ab6104fb3660046149e4565b6112fb565b6103ab61050e366004614521565b611406565b6103ab6105213660046149e4565b611582565b610380610534366004614521565b61167e565b6103ab610547366004614521565b6116e2565b6103ab61055a366004614a5e565b6118a2565b6103c561056d36600461457b565b6119a1565b6103ab611a3b565b6103c57fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c2177581565b6104466097546098546001600160a01b0390911691565b6103ab6105c6366004614521565b611a4f565b60cc546001600160a01b0316610380565b6103436105ea366004614ab1565b60fe54600090815260ff6020818152604080842086855282528084206001600160a01b0386168552909152909120541692915050565b610360611ab5565b6103ab610636366004614add565b611ac4565b6103ab610649366004614b02565b611ad7565b6103ab61065c366004614b50565b611dc5565b61016654610380906001600160a01b031681565b610688610683366004614521565b611e10565b60405161034f9190614b87565b6103ab6106a3366004614b02565b611e39565b6103ab6106b6366004614bd4565b612123565b6103ab6106c9366004614c07565b612324565b6103606106dc366004614521565b6123ac565b6103ab6106ef366004614a5e565b6124a1565b6103ab610702366004614c83565b61254b565b6103ab610715366004614551565b61255e565b6103ab610728366004614cd3565b612570565b61034361073b366004614d40565b6001600160a01b039182166000908152606a6020908152604080832093909416825291909152205460ff1690565b6103ab61077736600461457b565b6126ad565b6103606040518060400160405280600681526020017f322e31302e31000000000000000000000000000000000000000000000000000081525081565b60006107c38261273d565b806107d257506107d282612820565b806107e157506107e1826128b7565b8061082d57507fffffffff0000000000000000000000000000000000000000000000000000000082167f4906490600000000000000000000000000000000000000000000000000000000145b92915050565b60606065805461084290614d6a565b80601f016020809104026020016040519081016040528092919081815260200182805461086e90614d6a565b80156108bb5780601f10610890576101008083540402835291602001916108bb565b820191906000526020600020905b81548152906001019060200180831161089e57829003601f168201915b5050505050905090565b60006108d08261294e565b506000908152606960205260409020546001600160a01b031690565b816108f681610d5b565b1561092d576040517fe0574fb800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61093783836129a3565b505050565b6109453361111f565b61097b576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61016680546001600160a01b038381167fffffffffffffffffffffffff00000000000000000000000000000000000000008316811790935560405191169190829033907ff6026fd4b2ac82ff1a70c6ad48ae392a9ebb9864f0df50089a32683980dd5f3f90600090a45050565b600054610100900460ff1615808015610a085750600054600160ff909116105b80610a225750303b158015610a22575060005460ff166001145b610a995760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a656400000000000000000000000000000000000060648201526084015b60405180910390fd5b600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011790558015610af757600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff166101001790555b610b018989612acf565b610b0b8787612b56565b610b1485612bdd565b610b488361013380547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001682151517905550565b610b5182612c73565b610b7d7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775856001612cf9565b8015610be057600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff169055604051600181527f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb38474024989060200160405180910390a15b505050505050505050565b610bf53382612e86565b610c675760405162461bcd60e51b815260206004820152602d60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201527f72206f7220617070726f766564000000000000000000000000000000000000006064820152608401610a90565b610937838383612f04565b610c7b33613163565b610cb1576040517f4701b18c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61013380547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b609754609854600084815260996020526040812054909283926001600160a01b039182169290911615610d35575050600084815260996020526040902080546001909101546001600160a01b03909116905b8181610d4361271088614dec565b610d4d9190614e27565b9350935050505b9250929050565b610166546000906001600160a01b03163b8103610d7a57506000919050565b610166546040517f334980a50000000000000000000000000000000000000000000000000000000081526001600160a01b0384811660048301529091169063334980a590602401602060405180830381865afa925050508015610e18575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201909252610e1591810190614e3e565b60015b61082d57506000919050565b919050565b610e316131e6565b60fe8054906000610e4183614e5b565b909155505060405133907fdf1eaea754aea6dc7d083377ed7366dd7405e3fb0f16ddfb9448770520e4427990600090a2565b60fe54600090815260ff602081815260408084207fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c217758086529083528185203386529092529092205416158015610ee3575033610ed760cc546001600160a01b031690565b6001600160a01b031614155b15610f1d576040517f76c1743100000000000000000000000000000000000000000000000000000000815260048101829052602401610a90565b6000829003610f58576040517f17314b6100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6002841015610f93576040517f8015753900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000610199546001610fa59190614e93565b905060006001610fb58784614e93565b610fbf9190614ea6565b9050868690506101996000828254610fd79190614e93565b9250508190555061019d604051806080016040528060006001600160a01b0316815260200184815260200183815260200187878080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920182905250939094525050835460018082018655948252602091829020845160049092020180547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0390921691909117815590830151938101939093555060408101516002830155606081015190919060038201906110bc9082614eff565b50505060005b86811015611115576111038888838181106110df576110df615019565b90506020020160208101906110f4919061457b565b6110fe8386614e93565b613240565b8061110d81614e5b565b9150506110c2565b5050505050505050565b600061113360cc546001600160a01b031690565b6001600160a01b0316826001600160a01b0316149050919050565b61093783838360405180602001604052806000815250612324565b6111733382612e86565b6111a9576040517fc9c1cf1b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6111b2816133c5565b600090815261019a6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b60fe54600090815260ff602081815260408084207fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775808652908352818520338652909252909220541615801561125c57503361125060cc546001600160a01b031690565b6001600160a01b031614155b15611296576040517f76c1743100000000000000000000000000000000000000000000000000000000815260048101829052602401610a90565b6112f57ff0178e81e3689af48153edf0e1b2d669fe2786ab9e21fdecf3e3771c70330af5858580806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250879250612cf9915050565b50505050565b6101335460ff16611338576040517fc3d4cd7900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61134185613490565b611377576040517fceea21b600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611381338661349b565b6113b7576040517f57deb26a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336001600160a01b0316857f5c0564b4237730adb947143019acb5addfdbf1be3ad1edf72e24a8f9d02fd2c1868686866040516113f79493929190615091565b60405180910390a35050505050565b336114108261167e565b6001600160a01b031614611450576040517fb23b68b700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600081815261019b60205260408120805461146a90614d6a565b80601f016020809104026020016040519081016040528092919081815260200182805461149690614d6a565b80156114e35780601f106114b8576101008083540402835291602001916114e3565b820191906000526020600020905b8154815290600101906020018083116114c657829003601f168201915b505050505090508051600003611525576040517f863027cf00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082815261019b6020526040812061153d91614407565b6002604080516020808252600090820152849133917f150eb29d770d531a41e193b95d5b3ee85bf5d788969e59bcc83c5e28eec0214791015b60405180910390a45050565b6101335460ff166115bf576040517fc3d4cd7900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6115c885613490565b6115fe576040517fceea21b600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6116083386613521565b61163e576040517f59dc379f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336001600160a01b0316857f40ebea9c3c7603a5d233a0bec01e483338737b6bed01bed2ac09ccbaa3d4b7ac868686866040516113f79493929190615091565b60008061168a83613545565b90506001600160a01b03811661082d5760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e20494400000000000000006044820152606401610a90565b336116ec8261167e565b6001600160a01b03161461172c576040517fb23b68b700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600081815261019b60205260408120805461174690614d6a565b80601f016020809104026020016040519081016040528092919081815260200182805461177290614d6a565b80156117bf5780601f10611794576101008083540402835291602001916117bf565b820191906000526020600020905b8154815290600101906020018083116117a257829003601f168201915b505050505090508051600003611801576040517f863027cf00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082815261019c6020526040902061181a8282614eff565b50600082815261019b6020526040812061183391614407565b6040518281527ff8e1a15aba9398e019f0b49df1a4fde98ee17ae345cb5f6b5e2c27f5033e8ce79060200160405180910390a1600182336001600160a01b03167f150eb29d770d531a41e193b95d5b3ee85bf5d788969e59bcc83c5e28eec0214784604051611576919061450e565b60fe54600090815260ff602081815260408084207ff0178e81e3689af48153edf0e1b2d669fe2786ab9e21fdecf3e3771c70330af58086529083528185203386529092529092205416611924576040517fee074e7400000000000000000000000000000000000000000000000000000000815260048101829052602401610a90565b600082900361195f576040517f17314b6100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610199805490600061197083614e5b565b909155505061019954600090815261019c602052604090206119938385836150b8565b506112f58461019954613240565b60006001600160a01b038216611a1f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f74206120766160448201527f6c6964206f776e657200000000000000000000000000000000000000000000006064820152608401610a90565b506001600160a01b031660009081526068602052604090205490565b611a436131e6565b611a4d60006135b3565b565b604080516001808252818301909252600091602080830190803683370190505090503381600081518110611a8557611a85615019565b60200260200101906001600160a01b031690816001600160a01b031681525050611ab182826000612cf9565b5050565b60606066805461084290614d6a565b611acc6131e6565b61093783838361361d565b60fe54600090815260ff602081815260408084207fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c217758086529083528185203386529092529092205416158015611b47575033611b3b60cc546001600160a01b031690565b6001600160a01b031614155b15611b81576040517f76c1743100000000000000000000000000000000000000000000000000000000815260048101829052602401610a90565b6001600160a01b038516611bc1576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000829003611bfc576040517f17314b6100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6002841015611c37576040517f26ce41c100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000610199546001611c499190614e93565b905060006001611c598784614e93565b611c639190614ea6565b9050856101996000828254611c789190614e93565b9250508190555061019d6040518060800160405280896001600160a01b0316815260200184815260200183815260200187878080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920182905250939094525050835460018082018655948252602091829020845160049092020180547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b039092169190911781559083015193810193909355506040810151600283015560608101519091906003820190611d5c9082614eff565b505050611d6987876136e4565b815b611d76826001614e93565b8110156111155760405181906001600160a01b038a16906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611dbe81614e5b565b9050611d6b565b81611dcf81610d5b565b15611e06576040517fe0574fb800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6109378383613715565b60fe54600090815261010060209081526040808320848452909152902060609061082d90613720565b60fe54600090815260ff602081815260408084207fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c217758086529083528185203386529092529092205416158015611ea9575033611e9d60cc546001600160a01b031690565b6001600160a01b031614155b15611ee3576040517f76c1743100000000000000000000000000000000000000000000000000000000815260048101829052602401610a90565b6001600160a01b038516611f23576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000829003611f5e576040517f17314b6100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6002841015611f99576040517f26ce41c100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000610199546001611fab9190614e93565b905060006001611fbb8784614e93565b611fc59190614ea6565b9050856101996000828254611fda9190614e93565b9250508190555061019d6040518060800160405280896001600160a01b0316815260200184815260200183815260200187878080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920182905250939094525050835460018082018655948252602091829020845160049092020180547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0390921691909117815590830151938101939093555060408101516002830155606081015190919060038201906120be9082614eff565b5050506120cb87876136e4565b866001600160a01b031660006001600160a01b0316837fdeaa91b6123d068f5821d0fb0678463d1a8a6079fe8af5de3ce5e896dcf9133d8460405161211291815260200190565b60405180910390a450505050505050565b60fe54600090815260ff602081815260408084207fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775808652908352818520338652909252909220541615801561219357503361218760cc546001600160a01b031690565b6001600160a01b031614155b156121cd576040517f76c1743100000000000000000000000000000000000000000000000000000000815260048101829052602401610a90565b6121d68461372d565b61220c576040517feb7d192800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000829003612247576040517f17314b6100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60cc546001600160a01b031661225c8561167e565b6001600160a01b0316036122bd57600084815261019c602052604090206122848385836150b8565b506040518481527ff8e1a15aba9398e019f0b49df1a4fde98ee17ae345cb5f6b5e2c27f5033e8ce79060200160405180910390a16112f5565b600084815261019b602052604090206122d78385836150b8565b50600084336001600160a01b03167f150eb29d770d531a41e193b95d5b3ee85bf5d788969e59bcc83c5e28eec0214786866040516123169291906151d3565b60405180910390a450505050565b61232e3383612e86565b6123a05760405162461bcd60e51b815260206004820152602d60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201527f72206f7220617070726f766564000000000000000000000000000000000000006064820152608401610a90565b6112f58484848461374a565b60606123b78261372d565b6123ed576040517feb7d192800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600082815261019c60205260408120805461240790614d6a565b80601f016020809104026020016040519081016040528092919081815260200182805461243390614d6a565b80156124805780601f1061245557610100808354040283529160200191612480565b820191906000526020600020905b81548152906001019060200180831161246357829003601f168201915b50505050509050805160000361082d57612499836137d3565b949350505050565b60fe54600090815260ff602081815260408084207fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775808652908352818520338652909252909220541615801561251157503361250560cc546001600160a01b031690565b6001600160a01b031614155b15611924576040517f76c1743100000000000000000000000000000000000000000000000000000000815260048101829052602401610a90565b6125536131e6565b610937838383612cf9565b6125666131e6565b611ab18282613935565b60fe54600090815260ff602081815260408084207fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c2177580865290835281852033865290925290922054161580156125e05750336125d460cc546001600160a01b031690565b6001600160a01b031614155b1561261a576040517f76c1743100000000000000000000000000000000000000000000000000000000815260048101829052602401610a90565b6000849003612655576040517f17314b6100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610199805490600061266683614e5b565b909155505061019954600090815261019c602052604090206126898587836150b8565b5061269861019954848461361d565b6126a58661019954613240565b505050505050565b6126b56131e6565b6001600160a01b0381166127315760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610a90565b61273a816135b3565b50565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd0000000000000000000000000000000000000000000000000000000014806127d057507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061082d57507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff0000000000000000000000000000000000000000000000000000000083161461082d565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f2a55205a00000000000000000000000000000000000000000000000000000000148061082d57507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff0000000000000000000000000000000000000000000000000000000083161461082d565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f0d23ecb900000000000000000000000000000000000000000000000000000000148061082d57507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff0000000000000000000000000000000000000000000000000000000083161461082d565b6129578161372d565b61273a5760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e20494400000000000000006044820152606401610a90565b60006129ae8261167e565b9050806001600160a01b0316836001600160a01b031603612a375760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610a90565b336001600160a01b0382161480612a535750612a53813361073b565b612ac55760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c0000006064820152608401610a90565b61093783836139ef565b600054610100900460ff16612b4c5760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e670000000000000000000000000000000000000000006064820152608401610a90565b611ab18282613a75565b600054610100900460ff16612bd35760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e670000000000000000000000000000000000000000006064820152608401610a90565b611ab18282613b0b565b600054610100900460ff16612c5a5760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e670000000000000000000000000000000000000000006064820152608401610a90565b612c62613b88565b612c6b816135b3565b61273a613c0d565b600054610100900460ff16612cf05760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e670000000000000000000000000000000000000000006064820152608401610a90565b61273a81613c8a565b60005b82518110156112f55760fe54600090815260ff6020908152604080832087845290915281208451849290869085908110612d3857612d38615019565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a81548160ff0219169083151502179055508115612dc657612dc0838281518110612d9257612d92615019565b60209081029190910181015160fe546000908152610100835260408082208983529093529190912090613d6e565b50612e0b565b612e09838281518110612ddb57612ddb615019565b60209081029190910181015160fe546000908152610100835260408082208983529093529190912090613d83565b505b811515838281518110612e2057612e20615019565b60200260200101516001600160a01b0316336001600160a01b03167fc9f6f69b3c19bd2b7eb8273129bbca5e3db0e3be63ca9903e140122a5bbb556e87604051612e6c91815260200190565b60405180910390a480612e7e81614e5b565b915050612cfc565b600080612e928361167e565b9050806001600160a01b0316846001600160a01b03161480612ed957506001600160a01b038082166000908152606a602090815260408083209388168352929052205460ff165b806124995750836001600160a01b0316612ef2846108c5565b6001600160a01b031614949350505050565b826001600160a01b0316612f178261167e565b6001600160a01b031614612f935760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201527f6f776e65720000000000000000000000000000000000000000000000000000006064820152608401610a90565b6001600160a01b03821661300e5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610a90565b826001600160a01b03166130218261167e565b6001600160a01b03161461309d5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201527f6f776e65720000000000000000000000000000000000000000000000000000006064820152608401610a90565b600081815260696020908152604080832080547fffffffffffffffffffffffff00000000000000000000000000000000000000009081169091556001600160a01b038781168086526068855283862080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff01905590871680865283862080546001019055868652606790945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600061317760cc546001600160a01b031690565b6001600160a01b0316826001600160a01b0316148061082d575060fe54600090815260ff602081815260408084207fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775855282528084206001600160a01b0387168552909152909120541661082d565b60cc546001600160a01b03163314611a4d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a90565b6001600160a01b0382166132965760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610a90565b61329f8161372d565b156132ec5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610a90565b6132f58161372d565b156133425760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610a90565b6001600160a01b038216600081815260686020908152604080832080546001019055848352606790915280822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006133d08261167e565b90506133db8261167e565b600083815260696020908152604080832080547fffffffffffffffffffffffff00000000000000000000000000000000000000009081169091556001600160a01b0385168085526068845282852080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0190558785526067909352818420805490911690555192935084927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600061082d8261372d565b60006134af60cc546001600160a01b031690565b6001600160a01b0316836001600160a01b0316148061351a575060fe54600090815260ff602081815260408084207fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775855282528084206001600160a01b038816855290915290912054165b9392505050565b60008061352d8361167e565b6001600160a01b039081169085161491505092915050565b600081815261019a602052604081205460ff161561356557506000919050565b6000821180156135785750610199548211155b156135ab576000828152606760205260409020546001600160a01b03168061082d576135a3836137d3565b509392505050565b506000919050565b60cc80546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03821661365d576040517f3efa09af00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612710811115613699576040517fdc65bdeb00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60009283526099602052604090922080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b039290921691909117815560010155565b6001600160a01b0382166000908152606860205260408120805483929061370c908490614e93565b90915550505050565b611ab1338383613d98565b6060600061351a83613e84565b60008061373983613545565b6001600160a01b0316141592915050565b613755848484612f04565b61376184848484613ee0565b6112f55760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610a90565b6000606060005b61019d548110156138555761019d81815481106137f9576137f9615019565b906000526020600020906004020160010154841015801561383f575061019d818154811061382957613829615019565b9060005260206000209060040201600201548411155b613855578061384d81614e5b565b9150506137da565b61019d54811061387b576000604051806020016040528060008152509250925050915091565b600061019d828154811061389157613891615019565b90600052602060002090600402016003016138db61019d84815481106138b9576138b9615019565b906000526020600020906004020160010154876138d69190614ea6565b61409f565b6040516020016138ec9291906151e7565b604051602081830303815290604052905061019d828154811061391157613911615019565b60009182526020909120600490910201546001600160a01b03169590945092505050565b6001600160a01b038216613975576040517f3efa09af00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6127108111156139b1576040517fdc65bdeb00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b609780547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b039390931692909217909155609855565b600081815260696020526040902080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0384169081179091558190613a3c8261167e565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600054610100900460ff16613af25760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e670000000000000000000000000000000000000000006064820152608401610a90565b6065613afe8382614eff565b5060666109378282614eff565b600054610100900460ff166125665760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e670000000000000000000000000000000000000000006064820152608401610a90565b600054610100900460ff16613c055760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e670000000000000000000000000000000000000000006064820152608401610a90565b611a4d61415d565b600054610100900460ff16611a4d5760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e670000000000000000000000000000000000000000006064820152608401610a90565b600054610100900460ff16613d075760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e670000000000000000000000000000000000000000006064820152608401610a90565b61016680547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b03831690811790915560405160009033907ff6026fd4b2ac82ff1a70c6ad48ae392a9ebb9864f0df50089a32683980dd5f3f908390a450565b600061351a836001600160a01b0384166141e3565b600061351a836001600160a01b038416614232565b816001600160a01b0316836001600160a01b031603613df95760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610a90565b6001600160a01b038381166000818152606a602090815260408083209487168084529482529182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b606081600001805480602002602001604051908101604052809291908181526020018280548015613ed457602002820191906000526020600020905b815481526020019060010190808311613ec0575b50505050509050919050565b60006001600160a01b0384163b15614094576040517f150b7a020000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063150b7a0290613f3d9033908990889088906004016152b5565b6020604051808303816000875af1925050508015613f96575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201909252613f93918101906152f1565b60015b614049573d808015613fc4576040519150601f19603f3d011682016040523d82523d6000602084013e613fc9565b606091505b5080516000036140415760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610a90565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050612499565b506001949350505050565b606060006140ac83614325565b600101905060008167ffffffffffffffff8111156140cc576140cc614596565b6040519080825280601f01601f1916602001820160405280156140f6576020820181803683370190505b5090508181016020015b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff017f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a850494508461410057509392505050565b600054610100900460ff166141da5760405162461bcd60e51b815260206004820152602b60248201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960448201527f6e697469616c697a696e670000000000000000000000000000000000000000006064820152608401610a90565b611a4d336135b3565b600081815260018301602052604081205461422a5750815460018181018455600084815260208082209093018490558454848252828601909352604090209190915561082d565b50600061082d565b6000818152600183016020526040812054801561431b576000614256600183614ea6565b855490915060009061426a90600190614ea6565b90508181146142cf57600086600001828154811061428a5761428a615019565b90600052602060002001549050808760000184815481106142ad576142ad615019565b6000918252602080832090910192909255918252600188019052604090208390555b85548690806142e0576142e061530e565b60019003818190600052602060002001600090559055856001016000868152602001908152602001600020600090556001935050505061082d565b600091505061082d565b6000807a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000831061436e577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000830492506040015b6d04ee2d6d415b85acef8100000000831061439a576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc1000083106143b857662386f26fc10000830492506010015b6305f5e10083106143d0576305f5e100830492506008015b61271083106143e457612710830492506004015b606483106143f6576064830492506002015b600a831061082d5760010192915050565b50805461441390614d6a565b6000825580601f10614423575050565b601f01602090049060005260206000209081019061273a91905b80821115614451576000815560010161443d565b5090565b7fffffffff000000000000000000000000000000000000000000000000000000008116811461273a57600080fd5b60006020828403121561449557600080fd5b813561351a81614455565b60005b838110156144bb5781810151838201526020016144a3565b50506000910152565b600081518084526144dc8160208601602086016144a0565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b60208152600061351a60208301846144c4565b60006020828403121561453357600080fd5b5035919050565b80356001600160a01b0381168114610e2457600080fd5b6000806040838503121561456457600080fd5b61456d8361453a565b946020939093013593505050565b60006020828403121561458d57600080fd5b61351a8261453a565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016810167ffffffffffffffff8111828210171561460c5761460c614596565b604052919050565b600067ffffffffffffffff83111561462e5761462e614596565b61465f60207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f860116016145c5565b905082815283838301111561467357600080fd5b828260208301376000602084830101529392505050565b600082601f83011261469b57600080fd5b61351a83833560208501614614565b600082601f8301126146bb57600080fd5b8135602067ffffffffffffffff8211156146d7576146d7614596565b8160051b6146e68282016145c5565b928352848101820192828101908785111561470057600080fd5b83870192505b84831015614726576147178361453a565b82529183019190830190614706565b979650505050505050565b801515811461273a57600080fd5b8035610e2481614731565b600080600080600080600080610100898b03121561476757600080fd5b883567ffffffffffffffff8082111561477f57600080fd5b61478b8c838d0161468a565b995060208b01359150808211156147a157600080fd5b6147ad8c838d0161468a565b98506147bb60408c0161453a565b975060608b013596506147d060808c0161453a565b955060a08b01359150808211156147e657600080fd5b506147f38b828c016146aa565b93505061480260c08a0161473f565b915061481060e08a0161453a565b90509295985092959890939650565b60008060006060848603121561483457600080fd5b61483d8461453a565b925061484b6020850161453a565b9150604084013590509250925092565b60006020828403121561486d57600080fd5b813561351a81614731565b6000806040838503121561488b57600080fd5b50508035926020909101359150565b60008083601f8401126148ac57600080fd5b50813567ffffffffffffffff8111156148c457600080fd5b6020830191508360208260051b8501011115610d5457600080fd5b60008083601f8401126148f157600080fd5b50813567ffffffffffffffff81111561490957600080fd5b602083019150836020828501011115610d5457600080fd5b6000806000806040858703121561493757600080fd5b843567ffffffffffffffff8082111561494f57600080fd5b61495b8883890161489a565b9096509450602087013591508082111561497457600080fd5b50614981878288016148df565b95989497509550505050565b6000806000604084860312156149a257600080fd5b833567ffffffffffffffff8111156149b957600080fd5b6149c58682870161489a565b90945092505060208401356149d981614731565b809150509250925092565b6000806000806000606086880312156149fc57600080fd5b85359450602086013567ffffffffffffffff80821115614a1b57600080fd5b614a2789838a016148df565b90965094506040880135915080821115614a4057600080fd5b50614a4d888289016148df565b969995985093965092949392505050565b600080600060408486031215614a7357600080fd5b614a7c8461453a565b9250602084013567ffffffffffffffff811115614a9857600080fd5b614aa4868287016148df565b9497909650939450505050565b60008060408385031215614ac457600080fd5b82359150614ad46020840161453a565b90509250929050565b600080600060608486031215614af257600080fd5b8335925061484b6020850161453a565b60008060008060608587031215614b1857600080fd5b614b218561453a565b935060208501359250604085013567ffffffffffffffff811115614b4457600080fd5b614981878288016148df565b60008060408385031215614b6357600080fd5b614b6c8361453a565b91506020830135614b7c81614731565b809150509250929050565b6020808252825182820181905260009190848201906040850190845b81811015614bc85783516001600160a01b031683529284019291840191600101614ba3565b50909695505050505050565b600080600060408486031215614be957600080fd5b83359250602084013567ffffffffffffffff811115614a9857600080fd5b60008060008060808587031215614c1d57600080fd5b614c268561453a565b9350614c346020860161453a565b925060408501359150606085013567ffffffffffffffff811115614c5757600080fd5b8501601f81018713614c6857600080fd5b614c7787823560208401614614565b91505092959194509250565b600080600060608486031215614c9857600080fd5b83359250602084013567ffffffffffffffff811115614cb657600080fd5b614cc2868287016146aa565b92505060408401356149d981614731565b600080600080600060808688031215614ceb57600080fd5b614cf48661453a565b9450602086013567ffffffffffffffff811115614d1057600080fd5b614d1c888289016148df565b9095509350614d2f90506040870161453a565b949793965091946060013592915050565b60008060408385031215614d5357600080fd5b614d5c8361453a565b9150614ad46020840161453a565b600181811c90821680614d7e57607f821691505b602082108103614db7577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600082614e22577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b808202811582820484141761082d5761082d614dbd565b600060208284031215614e5057600080fd5b815161351a81614731565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614e8c57614e8c614dbd565b5060010190565b8082018082111561082d5761082d614dbd565b8181038181111561082d5761082d614dbd565b601f82111561093757600081815260208120601f850160051c81016020861015614ee05750805b601f850160051c820191505b818110156126a557828155600101614eec565b815167ffffffffffffffff811115614f1957614f19614596565b614f2d81614f278454614d6a565b84614eb9565b602080601f831160018114614f805760008415614f4a5750858301515b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600386901b1c1916600185901b1785556126a5565b6000858152602081207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08616915b82811015614fcd57888601518255948401946001909101908401614fae565b508582101561500957878501517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600388901b60f8161c191681555b5050505050600190811b01905550565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b8183528181602085013750600060208284010152600060207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f840116840101905092915050565b6040815260006150a5604083018688615048565b8281036020840152614726818587615048565b67ffffffffffffffff8311156150d0576150d0614596565b6150e4836150de8354614d6a565b83614eb9565b6000601f84116001811461513657600085156151005750838201355b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600387901b1c1916600186901b1783556151cc565b6000838152602090207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0861690835b828110156151855786850135825560209485019460019092019101615165565b50868210156151c0577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60f88860031b161c19848701351681555b505060018560011b0183555b5050505050565b602081526000612499602083018486615048565b60008084546151f581614d6a565b6001828116801561520d57600181146152405761526f565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff008416875282151583028701945061526f565b8860005260208060002060005b858110156152665781548a82015290840190820161524d565b50505082870194505b507f2f000000000000000000000000000000000000000000000000000000000000008452865192506152a78382860160208a016144a0565b919092010195945050505050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526152e760808301846144c4565b9695505050505050565b60006020828403121561530357600080fd5b815161351a81614455565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea2646970667358221220872f8ac21712f4bffeed998ffac52f11403ed0e83c338e2db37ca551f5b8585464736f6c63430008130033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000001
-----Decoded View---------------
Arg [0] : disable (bool): True
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000001
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.