Source Code
Overview
ETH Balance
0 ETH
ETH Value
$0.00| Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
|---|---|---|---|---|---|---|---|---|---|
Latest 25 internal transactions (View All)
| Parent Transaction Hash | Block | From | To | |||
|---|---|---|---|---|---|---|
| 14527697 | 1279 days ago | 0 ETH | ||||
| 14527671 | 1279 days ago | 0 ETH | ||||
| 14527669 | 1279 days ago | 0 ETH | ||||
| 14527509 | 1279 days ago | 0 ETH | ||||
| 14527507 | 1279 days ago | 0 ETH | ||||
| 14527421 | 1279 days ago | 0 ETH | ||||
| 14527387 | 1279 days ago | 0 ETH | ||||
| 14527367 | 1279 days ago | 0 ETH | ||||
| 14527171 | 1279 days ago | 0 ETH | ||||
| 14526990 | 1279 days ago | 0 ETH | ||||
| 14526965 | 1279 days ago | 0 ETH | ||||
| 14526886 | 1279 days ago | 0 ETH | ||||
| 14526682 | 1279 days ago | 0 ETH | ||||
| 14526620 | 1279 days ago | 0 ETH | ||||
| 14526591 | 1279 days ago | 0 ETH | ||||
| 14526424 | 1279 days ago | 0 ETH | ||||
| 14526322 | 1279 days ago | 0 ETH | ||||
| 14526316 | 1279 days ago | 0 ETH | ||||
| 14526233 | 1279 days ago | 0 ETH | ||||
| 14526201 | 1279 days ago | 0 ETH | ||||
| 14526105 | 1279 days ago | 0 ETH | ||||
| 14526078 | 1279 days ago | 0 ETH | ||||
| 14526034 | 1279 days ago | 0 ETH | ||||
| 14526005 | 1279 days ago | 0 ETH | ||||
| 14525990 | 1279 days ago | 0 ETH |
Cross-Chain Transactions
Loading...
Loading
Contract Name:
TreasureMarketplace
Compiler Version
v0.8.12+commit.f00d7308
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT
pragma solidity 0.8.12;
import '@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol';
import '@openzeppelin/contracts-upgradeable/access/AccessControlEnumerableUpgradeable.sol';
import '@openzeppelin/contracts-upgradeable/interfaces/IERC165Upgradeable.sol';
import '@openzeppelin/contracts-upgradeable/token/ERC1155/IERC1155Upgradeable.sol';
import '@openzeppelin/contracts-upgradeable/token/ERC721/IERC721Upgradeable.sol';
import '@openzeppelin/contracts-upgradeable/token/ERC20/IERC20Upgradeable.sol';
import '@openzeppelin/contracts-upgradeable/token/ERC20/utils/SafeERC20Upgradeable.sol';
import "@openzeppelin/contracts-upgradeable/security/ReentrancyGuardUpgradeable.sol";
import "@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol";
/// @title Treasure NFT marketplace
/// @notice This contract allows you to buy and sell NFTs from token contracts that are approved by the contract owner.
/// Please note that this contract is upgradeable. In the event of a compromised ProxyAdmin contract owner,
/// collectable tokens and payments may be at risk. To prevent this, the ProxyAdmin is owned by a multi-sig
/// governed by the TreasureDAO council.
/// @dev This contract does not store any tokens at any time, it's only collects details "the sale" and approvals
/// from both parties and preforms non-custodial transaction by transfering NFT from owner to buying and payment
/// token from buying to NFT owner.
contract TreasureMarketplace is AccessControlEnumerableUpgradeable, PausableUpgradeable, ReentrancyGuardUpgradeable {
using SafeERC20Upgradeable for IERC20Upgradeable;
struct Listing {
/// @dev number of tokens for sale (1 if ERC-721 token is active for sale)
uint64 quantity;
/// @dev price per token sold, i.e. extended sale price equals this times quantity purchased
uint128 pricePerItem;
/// @dev timestamp after which the listing is invalid
uint64 expirationTime;
}
struct CollectionOwnerFee {
/// @dev the fee, out of 10,000, that this collection owner will be given for each sale
uint32 fee;
/// @dev the recipient of the collection specific fee
address recipient;
}
enum TokenApprovalStatus {NOT_APPROVED, ERC_721_APPROVED, ERC_1155_APPROVED}
/// @notice TREASURE_MARKETPLACE_ADMIN_ROLE role hash
bytes32 public constant TREASURE_MARKETPLACE_ADMIN_ROLE = keccak256("TREASURE_MARKETPLACE_ADMIN_ROLE");
/// @notice ERC165 interface signatures
bytes4 private constant INTERFACE_ID_ERC721 = 0x80ac58cd;
bytes4 private constant INTERFACE_ID_ERC1155 = 0xd9b67a26;
/// @notice the denominator for portion calculation, i.e. how many basis points are in 100%
uint256 public constant BASIS_POINTS = 10000;
/// @notice the maximum fee which the owner may set (in units of basis points)
uint256 public constant MAX_FEE = 1500;
/// @notice the maximum fee which the collection owner may set
uint256 public constant MAX_COLLECTION_FEE = 750;
/// @notice the minimum price for which any item can be sold
uint256 public constant MIN_PRICE = 1e9;
/// @notice which token is used for marketplace sales and fee payments
IERC20Upgradeable public paymentToken;
/// @notice fee portion (in basis points) for each sale, (e.g. a value of 100 is 100/10000 = 1%). This is the fee if no collection owner fee is set.
uint256 public fee;
/// @notice address that receives fees
address public feeReceipient;
/// @notice mapping for listings, maps: nftAddress => tokenId => offeror
mapping(address => mapping(uint256 => mapping(address => Listing))) public listings;
/// @notice NFTs which the owner has approved to be sold on the marketplace, maps: nftAddress => status
mapping(address => TokenApprovalStatus) public tokenApprovals;
/// @notice fee portion (in basis points) for each sale. This is used if a separate fee has been set for the collection owner.
uint256 public feeWithCollectionOwner;
/// @notice Maps the collection address to the fees which the collection owner collects. Some collections may not have a seperate fee, such as those owned by the Treasure DAO.
mapping(address => CollectionOwnerFee) public collectionToCollectionOwnerFee;
/// @notice The fee portion was updated
/// @param fee new fee amount (in units of basis points)
event UpdateFee(uint256 fee);
/// @notice The fee portion was updated for collections that have a collection owner.
/// @param fee new fee amount (in units of basis points)
event UpdateFeeWithCollectionOwner(uint256 fee);
/// @notice A collection's fees have changed
/// @param _collection The collection
/// @param _recipient The recipient of the fees. If the address is 0, the collection fees for this collection have been removed.
/// @param _fee The fee amount (in units of basis points)
event UpdateCollectionOwnerFee(address _collection, address _recipient, uint256 _fee);
/// @notice The fee recipient was updated
/// @param feeRecipient the new recipient to get fees
event UpdateFeeRecipient(address feeRecipient);
/// @notice The approval status for a token was updated
/// @param nft which token contract was updated
/// @param status the new status
event TokenApprovalStatusUpdated(address nft, TokenApprovalStatus status);
/// @notice An item was listed for sale
/// @param seller the offeror of the item
/// @param nftAddress which token contract holds the offered token
/// @param tokenId the identifier for the offered token
/// @param quantity how many of this token identifier are offered (or 1 for a ERC-721 token)
/// @param pricePerItem the price (in units of the paymentToken) for each token offered
/// @param expirationTime UNIX timestamp after when this listing expires
event ItemListed(
address seller,
address nftAddress,
uint256 tokenId,
uint64 quantity,
uint128 pricePerItem,
uint64 expirationTime
);
/// @notice An item listing was updated
/// @param seller the offeror of the item
/// @param nftAddress which token contract holds the offered token
/// @param tokenId the identifier for the offered token
/// @param quantity how many of this token identifier are offered (or 1 for a ERC-721 token)
/// @param pricePerItem the price (in units of the paymentToken) for each token offered
/// @param expirationTime UNIX timestamp after when this listing expires
event ItemUpdated(
address seller,
address nftAddress,
uint256 tokenId,
uint64 quantity,
uint128 pricePerItem,
uint64 expirationTime
);
/// @notice An item is no longer listed for sale
/// @param seller former offeror of the item
/// @param nftAddress which token contract holds the formerly offered token
/// @param tokenId the identifier for the formerly offered token
event ItemCanceled(address indexed seller, address indexed nftAddress, uint256 indexed tokenId);
/// @notice A listed item was sold
/// @param seller the offeror of the item
/// @param buyer the buyer of the item
/// @param nftAddress which token contract holds the sold token
/// @param tokenId the identifier for the sold token
/// @param quantity how many of this token identifier where sold (or 1 for a ERC-721 token)
/// @param pricePerItem the price (in units of the paymentToken) for each token sold
event ItemSold(
address seller,
address buyer,
address nftAddress,
uint256 tokenId,
uint64 quantity,
uint128 pricePerItem
);
/// @custom:oz-upgrades-unsafe-allow constructor
constructor() initializer {}
/// @notice Perform initial contract setup
/// @dev The initializer modifier ensures this is only called once, the owner should confirm this was properly
/// performed before publishing this contract address.
/// @param _initialFee fee to be paid on each sale, in basis points
/// @param _initialFeeRecipient wallet to collets fees
/// @param _initialPaymentToken address of the token that is used for settlement
function initialize(
uint256 _initialFee,
address _initialFeeRecipient,
IERC20Upgradeable _initialPaymentToken
)
external
initializer
{
require(address(_initialPaymentToken) != address(0), "TreasureMarketplace: cannot set address(0)");
__AccessControl_init_unchained();
__Pausable_init_unchained();
__ReentrancyGuard_init_unchained();
_setRoleAdmin(TREASURE_MARKETPLACE_ADMIN_ROLE, TREASURE_MARKETPLACE_ADMIN_ROLE);
_grantRole(TREASURE_MARKETPLACE_ADMIN_ROLE, msg.sender);
setFee(_initialFee, _initialFee);
setFeeRecipient(_initialFeeRecipient);
paymentToken = _initialPaymentToken;
}
/// @notice Creates an item listing. You must authorize this marketplace with your item's token contract to list.
/// @param _nftAddress which token contract holds the offered token
/// @param _tokenId the identifier for the offered token
/// @param _quantity how many of this token identifier are offered (or 1 for a ERC-721 token)
/// @param _pricePerItem the price (in units of the paymentToken) for each token offered
/// @param _expirationTime UNIX timestamp after when this listing expires
function createListing(
address _nftAddress,
uint256 _tokenId,
uint64 _quantity,
uint128 _pricePerItem,
uint64 _expirationTime
)
external
nonReentrant
whenNotPaused
{
require(listings[_nftAddress][_tokenId][_msgSender()].quantity == 0, "TreasureMarketplace: already listed");
_createListingWithoutEvent(_nftAddress, _tokenId, _quantity, _pricePerItem, _expirationTime);
emit ItemListed(
_msgSender(),
_nftAddress,
_tokenId,
_quantity,
_pricePerItem,
_expirationTime
);
}
/// @notice Updates an item listing
/// @param _nftAddress which token contract holds the offered token
/// @param _tokenId the identifier for the offered token
/// @param _newQuantity how many of this token identifier are offered (or 1 for a ERC-721 token)
/// @param _newPricePerItem the price (in units of the paymentToken) for each token offered
/// @param _newExpirationTime UNIX timestamp after when this listing expires
function updateListing(
address _nftAddress,
uint256 _tokenId,
uint64 _newQuantity,
uint128 _newPricePerItem,
uint64 _newExpirationTime
)
external
nonReentrant
whenNotPaused
{
require(listings[_nftAddress][_tokenId][_msgSender()].quantity > 0, "TreasureMarketplace: not listed item");
_createListingWithoutEvent(_nftAddress, _tokenId, _newQuantity, _newPricePerItem, _newExpirationTime);
emit ItemUpdated(
_msgSender(),
_nftAddress,
_tokenId,
_newQuantity,
_newPricePerItem,
_newExpirationTime
);
}
/// @notice Performs the listing and does not emit the event
/// @param _nftAddress which token contract holds the offered token
/// @param _tokenId the identifier for the offered token
/// @param _quantity how many of this token identifier are offered (or 1 for a ERC-721 token)
/// @param _pricePerItem the price (in units of the paymentToken) for each token offered
/// @param _expirationTime UNIX timestamp after when this listing expires
function _createListingWithoutEvent(
address _nftAddress,
uint256 _tokenId,
uint64 _quantity,
uint128 _pricePerItem,
uint64 _expirationTime
)
internal
{
require(_expirationTime > block.timestamp, "TreasureMarketplace: invalid expiration time");
require(_pricePerItem >= MIN_PRICE, "TreasureMarketplace: below min price");
if (tokenApprovals[_nftAddress] == TokenApprovalStatus.ERC_721_APPROVED) {
IERC721Upgradeable nft = IERC721Upgradeable(_nftAddress);
require(nft.ownerOf(_tokenId) == _msgSender(), "TreasureMarketplace: not owning item");
require(nft.isApprovedForAll(_msgSender(), address(this)), "TreasureMarketplace: item not approved");
require(_quantity == 1, "TreasureMarketplace: cannot list multiple ERC721");
} else if (tokenApprovals[_nftAddress] == TokenApprovalStatus.ERC_1155_APPROVED) {
IERC1155Upgradeable nft = IERC1155Upgradeable(_nftAddress);
require(nft.balanceOf(_msgSender(), _tokenId) >= _quantity, "TreasureMarketplace: must hold enough nfts");
require(nft.isApprovedForAll(_msgSender(), address(this)), "TreasureMarketplace: item not approved");
require(_quantity > 0, "TreasureMarketplace: nothing to list");
} else {
revert("TreasureMarketplace: token is not approved for trading");
}
listings[_nftAddress][_tokenId][_msgSender()] = Listing(
_quantity,
_pricePerItem,
_expirationTime
);
}
/// @notice Remove an item listing
/// @param _nftAddress which token contract holds the offered token
/// @param _tokenId the identifier for the offered token
function cancelListing(address _nftAddress, uint256 _tokenId)
external
nonReentrant
{
delete (listings[_nftAddress][_tokenId][_msgSender()]);
emit ItemCanceled(_msgSender(), _nftAddress, _tokenId);
}
/// @notice Buy a listed item. You must authorize this marketplace with your payment token to completed the buy.
/// @param _nftAddress which token contract holds the offered token
/// @param _tokenId the identifier for the token to be bought
/// @param _owner current owner of the item(s) to be bought
/// @param _quantity how many of this token identifier to be bought (or 1 for a ERC-721 token)
/// @param _maxPricePerItem the maximum price (in units of the paymentToken) for each token offered
function buyItem(
address _nftAddress,
uint256 _tokenId,
address _owner,
uint64 _quantity,
uint128 _maxPricePerItem
)
external
nonReentrant
whenNotPaused
{
// Validate buy order
require(_msgSender() != _owner, "TreasureMarketplace: Cannot buy your own item");
require(_quantity > 0, "TreasureMarketplace: Nothing to buy");
// Validate listing
Listing memory listedItem = listings[_nftAddress][_tokenId][_owner];
require(listedItem.quantity > 0, "TreasureMarketplace: not listed item");
require(listedItem.expirationTime >= block.timestamp, "TreasureMarketplace: listing expired");
require(listedItem.pricePerItem > 0, "TreasureMarketplace: listing price invalid");
require(listedItem.quantity >= _quantity, "TreasureMarketplace: not enough quantity");
require(listedItem.pricePerItem <= _maxPricePerItem, "TreasureMarketplace: price increased");
// Transfer NFT to buyer, also validates owner owns it, and token is approved for trading
if (tokenApprovals[_nftAddress] == TokenApprovalStatus.ERC_721_APPROVED) {
require(_quantity == 1, "TreasureMarketplace: Cannot buy multiple ERC721");
IERC721Upgradeable(_nftAddress).safeTransferFrom(_owner, _msgSender(), _tokenId);
} else if (tokenApprovals[_nftAddress] == TokenApprovalStatus.ERC_1155_APPROVED) {
IERC1155Upgradeable(_nftAddress).safeTransferFrom(_owner, _msgSender(), _tokenId, _quantity, bytes(""));
} else {
revert("TreasureMarketplace: token is not approved for trading");
}
_payFeesAndSeller(listedItem, _quantity, _nftAddress, _owner);
// Announce sale
emit ItemSold(
_owner,
_msgSender(),
_nftAddress,
_tokenId,
_quantity,
listedItem.pricePerItem // this is deleted below in "Deplete or cancel listing"
);
// Deplete or cancel listing
if (listedItem.quantity == _quantity) {
delete listings[_nftAddress][_tokenId][_owner];
} else {
listings[_nftAddress][_tokenId][_owner].quantity -= _quantity;
}
}
/// @dev pays the fees to the marketplace fee recipient, the collection recipient if one exists, and to the seller of the item.
/// @param _listedItem the item that is being purchased
/// @param _quantity the quantity of the item being purchased
/// @param _collectionAddress the collection to which this item belongs
/// @param _seller the seller of the item
function _payFeesAndSeller(Listing memory _listedItem, uint256 _quantity, address _collectionAddress, address _seller) private {
// Handle purchase price payment
uint256 _totalPrice = _listedItem.pricePerItem * _quantity;
address _collectionFeeRecipient = collectionToCollectionOwnerFee[_collectionAddress].recipient;
uint256 _protocolFee;
uint256 _collectionFee;
if(_collectionFeeRecipient != address(0)) {
_protocolFee = feeWithCollectionOwner;
_collectionFee = collectionToCollectionOwnerFee[_collectionAddress].fee;
} else {
_protocolFee = fee;
_collectionFee = 0;
}
uint256 _protocolFeeAmount = _totalPrice * _protocolFee / BASIS_POINTS;
uint256 _collectionFeeAmount = _totalPrice * _collectionFee / BASIS_POINTS;
if(_protocolFeeAmount > 0) {
paymentToken.safeTransferFrom(_msgSender(), feeReceipient, _protocolFeeAmount);
}
if(_collectionFeeAmount > 0) {
paymentToken.safeTransferFrom(_msgSender(), _collectionFeeRecipient, _collectionFeeAmount);
}
// Transfer rest to seller
paymentToken.safeTransferFrom(_msgSender(), _seller, _totalPrice - _protocolFeeAmount - _collectionFeeAmount);
}
// Owner administration ////////////////////////////////////////////////////////////////////////////////////////////
/// @notice Updates the fee amount which is collected during sales, for both collections with and without owner specific fees.
/// @dev This is callable only by the owner. Both fees may not exceed MAX_FEE
/// @param _newFee the updated fee amount is basis points
function setFee(uint256 _newFee, uint256 _newFeeWithCollectionOwner) public onlyRole(TREASURE_MARKETPLACE_ADMIN_ROLE) {
require(_newFee <= MAX_FEE && _newFeeWithCollectionOwner <= MAX_FEE, "TreasureMarketplace: max fee");
fee = _newFee;
feeWithCollectionOwner = _newFeeWithCollectionOwner;
emit UpdateFee(_newFee);
emit UpdateFeeWithCollectionOwner(_newFeeWithCollectionOwner);
}
/// @notice Updates the fee amount which is collected during sales fro a specific collection
/// @dev This is callable only by the owner
/// @param _collectionAddress The collection in question. This must be whitelisted.
/// @param _collectionOwnerFee The fee and recipient for the collection. If the 0 address is passed as the recipient, collection specific fees will not be collected.
function setCollectionOwnerFee(address _collectionAddress, CollectionOwnerFee calldata _collectionOwnerFee) external onlyRole(TREASURE_MARKETPLACE_ADMIN_ROLE) {
require(tokenApprovals[_collectionAddress] == TokenApprovalStatus.ERC_1155_APPROVED
|| tokenApprovals[_collectionAddress] == TokenApprovalStatus.ERC_721_APPROVED, "TreasureMarketplace: Collection is not approved");
require(_collectionOwnerFee.fee <= MAX_COLLECTION_FEE, "TreasureMarketplace: Collection fee too high");
// The collection recipient can be the 0 address, meaning we will treat this as a collection with no collection owner fee.
collectionToCollectionOwnerFee[_collectionAddress] = _collectionOwnerFee;
emit UpdateCollectionOwnerFee(_collectionAddress, _collectionOwnerFee.recipient, _collectionOwnerFee.fee);
}
/// @notice Updates the fee recipient which receives fees during sales
/// @dev This is callable only by the owner.
/// @param _newFeeRecipient the wallet to receive fees
function setFeeRecipient(address _newFeeRecipient) public onlyRole(TREASURE_MARKETPLACE_ADMIN_ROLE) {
require(_newFeeRecipient != address(0), "TreasureMarketplace: cannot set 0x0 address");
feeReceipient = _newFeeRecipient;
emit UpdateFeeRecipient(_newFeeRecipient);
}
/// @notice Sets a token as an approved kind of NFT or as ineligible for trading
/// @dev This is callable only by the owner.
/// @param _nft address of the NFT to be approved
/// @param _status the kind of NFT approved, or NOT_APPROVED to remove approval
function setTokenApprovalStatus(address _nft, TokenApprovalStatus _status) external onlyRole(TREASURE_MARKETPLACE_ADMIN_ROLE) {
if (_status == TokenApprovalStatus.ERC_721_APPROVED) {
require(IERC165Upgradeable(_nft).supportsInterface(INTERFACE_ID_ERC721), "TreasureMarketplace: not an ERC721 contract");
} else if (_status == TokenApprovalStatus.ERC_1155_APPROVED) {
require(IERC165Upgradeable(_nft).supportsInterface(INTERFACE_ID_ERC1155), "TreasureMarketplace: not an ERC1155 contract");
}
tokenApprovals[_nft] = _status;
emit TokenApprovalStatusUpdated(_nft, _status);
}
/// @notice Pauses the marketplace, creatisgn and executing listings is paused
/// @dev This is callable only by the owner. Canceling listings is not paused.
function pause() external onlyRole(TREASURE_MARKETPLACE_ADMIN_ROLE) {
_pause();
}
/// @notice Unpauses the marketplace, all functionality is restored
/// @dev This is callable only by the owner.
function unpause() external onlyRole(TREASURE_MARKETPLACE_ADMIN_ROLE) {
_unpause();
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
/**
* @dev This empty reserved space is put in place to allow future versions to add new
* variables without shifting down storage in the inheritance chain.
* See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
*/
uint256[49] private __gap;
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (access/AccessControlEnumerable.sol)
pragma solidity ^0.8.0;
import "./IAccessControlEnumerableUpgradeable.sol";
import "./AccessControlUpgradeable.sol";
import "../utils/structs/EnumerableSetUpgradeable.sol";
import "../proxy/utils/Initializable.sol";
/**
* @dev Extension of {AccessControl} that allows enumerating the members of each role.
*/
abstract contract AccessControlEnumerableUpgradeable is Initializable, IAccessControlEnumerableUpgradeable, AccessControlUpgradeable {
function __AccessControlEnumerable_init() internal onlyInitializing {
}
function __AccessControlEnumerable_init_unchained() internal onlyInitializing {
}
using EnumerableSetUpgradeable for EnumerableSetUpgradeable.AddressSet;
mapping(bytes32 => EnumerableSetUpgradeable.AddressSet) private _roleMembers;
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
return interfaceId == type(IAccessControlEnumerableUpgradeable).interfaceId || super.supportsInterface(interfaceId);
}
/**
* @dev Returns one of the accounts that have `role`. `index` must be a
* value between 0 and {getRoleMemberCount}, non-inclusive.
*
* Role bearers are not sorted in any particular way, and their ordering may
* change at any point.
*
* WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure
* you perform all queries on the same block. See the following
* https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post]
* for more information.
*/
function getRoleMember(bytes32 role, uint256 index) public view virtual override returns (address) {
return _roleMembers[role].at(index);
}
/**
* @dev Returns the number of accounts that have `role`. Can be used
* together with {getRoleMember} to enumerate all bearers of a role.
*/
function getRoleMemberCount(bytes32 role) public view virtual override returns (uint256) {
return _roleMembers[role].length();
}
/**
* @dev Overload {_grantRole} to track enumerable memberships
*/
function _grantRole(bytes32 role, address account) internal virtual override {
super._grantRole(role, account);
_roleMembers[role].add(account);
}
/**
* @dev Overload {_revokeRole} to track enumerable memberships
*/
function _revokeRole(bytes32 role, address account) internal virtual override {
super._revokeRole(role, account);
_roleMembers[role].remove(account);
}
/**
* @dev This empty reserved space is put in place to allow future versions to add new
* variables without shifting down storage in the inheritance chain.
* See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
*/
uint256[49] private __gap;
}// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (interfaces/IERC165.sol) pragma solidity ^0.8.0; import "../utils/introspection/IERC165Upgradeable.sol";
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC1155/IERC1155.sol)
pragma solidity ^0.8.0;
import "../../utils/introspection/IERC165Upgradeable.sol";
/**
* @dev Required interface of an ERC1155 compliant contract, as defined in the
* https://eips.ethereum.org/EIPS/eip-1155[EIP].
*
* _Available since v3.1._
*/
interface IERC1155Upgradeable is IERC165Upgradeable {
/**
* @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`.
*/
event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value);
/**
* @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all
* transfers.
*/
event TransferBatch(
address indexed operator,
address indexed from,
address indexed to,
uint256[] ids,
uint256[] values
);
/**
* @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to
* `approved`.
*/
event ApprovalForAll(address indexed account, address indexed operator, bool approved);
/**
* @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI.
*
* If an {URI} event was emitted for `id`, the standard
* https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value
* returned by {IERC1155MetadataURI-uri}.
*/
event URI(string value, uint256 indexed id);
/**
* @dev Returns the amount of tokens of token type `id` owned by `account`.
*
* Requirements:
*
* - `account` cannot be the zero address.
*/
function balanceOf(address account, uint256 id) external view returns (uint256);
/**
* @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}.
*
* Requirements:
*
* - `accounts` and `ids` must have the same length.
*/
function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids)
external
view
returns (uint256[] memory);
/**
* @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`,
*
* Emits an {ApprovalForAll} event.
*
* Requirements:
*
* - `operator` cannot be the caller.
*/
function setApprovalForAll(address operator, bool approved) external;
/**
* @dev Returns true if `operator` is approved to transfer ``account``'s tokens.
*
* See {setApprovalForAll}.
*/
function isApprovedForAll(address account, address operator) external view returns (bool);
/**
* @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
*
* Emits a {TransferSingle} event.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - If the caller is not `from`, it must be have been approved to spend ``from``'s tokens via {setApprovalForAll}.
* - `from` must have a balance of tokens of type `id` of at least `amount`.
* - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
* acceptance magic value.
*/
function safeTransferFrom(
address from,
address to,
uint256 id,
uint256 amount,
bytes calldata data
) external;
/**
* @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}.
*
* Emits a {TransferBatch} event.
*
* Requirements:
*
* - `ids` and `amounts` must have the same length.
* - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
* acceptance magic value.
*/
function safeBatchTransferFrom(
address from,
address to,
uint256[] calldata ids,
uint256[] calldata amounts,
bytes calldata data
) external;
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Transfers `tokenId` token from `from` to `to`.
*
* WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Gives permission to `to` to transfer `tokenId` token to another account.
* The approval is cleared when the token is transferred.
*
* Only a single account can be approved at a time, so approving the zero address clears previous approvals.
*
* Requirements:
*
* - The caller must own the token or be an approved operator.
* - `tokenId` must exist.
*
* Emits an {Approval} event.
*/
function approve(address to, uint256 tokenId) external;
/**
* @dev Returns the account approved for `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function getApproved(uint256 tokenId) external view returns (address operator);
/**
* @dev Approve or remove `operator` as an operator for the caller.
* Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
*
* Requirements:
*
* - The `operator` cannot be the caller.
*
* Emits an {ApprovalForAll} event.
*/
function setApprovalForAll(address operator, bool _approved) external;
/**
* @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
*
* See {setApprovalForAll}
*/
function isApprovedForAll(address owner, address operator) external view returns (bool);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes calldata data
) external;
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20Upgradeable {
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `to`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address to, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `from` to `to` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 amount
) external returns (bool);
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol)
pragma solidity ^0.8.0;
import "../IERC20Upgradeable.sol";
import "../../../utils/AddressUpgradeable.sol";
/**
* @title SafeERC20
* @dev Wrappers around ERC20 operations that throw on failure (when the token
* contract returns false). Tokens that return no value (and instead revert or
* throw on failure) are also supported, non-reverting calls are assumed to be
* successful.
* To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
* which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
*/
library SafeERC20Upgradeable {
using AddressUpgradeable for address;
function safeTransfer(
IERC20Upgradeable token,
address to,
uint256 value
) internal {
_callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
}
function safeTransferFrom(
IERC20Upgradeable token,
address from,
address to,
uint256 value
) internal {
_callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
}
/**
* @dev Deprecated. This function has issues similar to the ones found in
* {IERC20-approve}, and its usage is discouraged.
*
* Whenever possible, use {safeIncreaseAllowance} and
* {safeDecreaseAllowance} instead.
*/
function safeApprove(
IERC20Upgradeable token,
address spender,
uint256 value
) internal {
// safeApprove should only be called when setting an initial allowance,
// or when resetting it to zero. To increase and decrease it, use
// 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
require(
(value == 0) || (token.allowance(address(this), spender) == 0),
"SafeERC20: approve from non-zero to non-zero allowance"
);
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
}
function safeIncreaseAllowance(
IERC20Upgradeable token,
address spender,
uint256 value
) internal {
uint256 newAllowance = token.allowance(address(this), spender) + value;
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
}
function safeDecreaseAllowance(
IERC20Upgradeable token,
address spender,
uint256 value
) internal {
unchecked {
uint256 oldAllowance = token.allowance(address(this), spender);
require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
uint256 newAllowance = oldAllowance - value;
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
}
}
/**
* @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
* on the return value: the return value is optional (but if data is returned, it must not be false).
* @param token The token targeted by the call.
* @param data The call data (encoded using abi.encode or one of its variants).
*/
function _callOptionalReturn(IERC20Upgradeable token, bytes memory data) private {
// We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
// we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
// the target address contains contract code and also asserts for success in the low-level call.
bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
if (returndata.length > 0) {
// Return data is optional
require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)
pragma solidity ^0.8.0;
import "../proxy/utils/Initializable.sol";
/**
* @dev Contract module that helps prevent reentrant calls to a function.
*
* Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
* available, which can be applied to functions to make sure there are no nested
* (reentrant) calls to them.
*
* Note that because there is a single `nonReentrant` guard, functions marked as
* `nonReentrant` may not call one another. This can be worked around by making
* those functions `private`, and then adding `external` `nonReentrant` entry
* points to them.
*
* TIP: If you would like to learn more about reentrancy and alternative ways
* to protect against it, check out our blog post
* https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
*/
abstract contract ReentrancyGuardUpgradeable is Initializable {
// Booleans are more expensive than uint256 or any type that takes up a full
// word because each write operation emits an extra SLOAD to first read the
// slot's contents, replace the bits taken up by the boolean, and then write
// back. This is the compiler's defense against contract upgrades and
// pointer aliasing, and it cannot be disabled.
// The values being non-zero value makes deployment a bit more expensive,
// but in exchange the refund on every call to nonReentrant will be lower in
// amount. Since refunds are capped to a percentage of the total
// transaction's gas, it is best to keep them low in cases like this one, to
// increase the likelihood of the full refund coming into effect.
uint256 private constant _NOT_ENTERED = 1;
uint256 private constant _ENTERED = 2;
uint256 private _status;
function __ReentrancyGuard_init() internal onlyInitializing {
__ReentrancyGuard_init_unchained();
}
function __ReentrancyGuard_init_unchained() internal onlyInitializing {
_status = _NOT_ENTERED;
}
/**
* @dev Prevents a contract from calling itself, directly or indirectly.
* Calling a `nonReentrant` function from another `nonReentrant`
* function is not supported. It is possible to prevent this from happening
* by making the `nonReentrant` function external, and making it call a
* `private` function that does the actual work.
*/
modifier nonReentrant() {
// On the first call to nonReentrant, _notEntered will be true
require(_status != _ENTERED, "ReentrancyGuard: reentrant call");
// Any calls to nonReentrant after this point will fail
_status = _ENTERED;
_;
// By storing the original value once again, a refund is triggered (see
// https://eips.ethereum.org/EIPS/eip-2200)
_status = _NOT_ENTERED;
}
/**
* @dev This empty reserved space is put in place to allow future versions to add new
* variables without shifting down storage in the inheritance chain.
* See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
*/
uint256[49] private __gap;
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/Pausable.sol)
pragma solidity ^0.8.0;
import "../utils/ContextUpgradeable.sol";
import "../proxy/utils/Initializable.sol";
/**
* @dev Contract module which allows children to implement an emergency stop
* mechanism that can be triggered by an authorized account.
*
* This module is used through inheritance. It will make available the
* modifiers `whenNotPaused` and `whenPaused`, which can be applied to
* the functions of your contract. Note that they will not be pausable by
* simply including this module, only once the modifiers are put in place.
*/
abstract contract PausableUpgradeable is Initializable, ContextUpgradeable {
/**
* @dev Emitted when the pause is triggered by `account`.
*/
event Paused(address account);
/**
* @dev Emitted when the pause is lifted by `account`.
*/
event Unpaused(address account);
bool private _paused;
/**
* @dev Initializes the contract in unpaused state.
*/
function __Pausable_init() internal onlyInitializing {
__Pausable_init_unchained();
}
function __Pausable_init_unchained() internal onlyInitializing {
_paused = false;
}
/**
* @dev Returns true if the contract is paused, and false otherwise.
*/
function paused() public view virtual returns (bool) {
return _paused;
}
/**
* @dev Modifier to make a function callable only when the contract is not paused.
*
* Requirements:
*
* - The contract must not be paused.
*/
modifier whenNotPaused() {
require(!paused(), "Pausable: paused");
_;
}
/**
* @dev Modifier to make a function callable only when the contract is paused.
*
* Requirements:
*
* - The contract must be paused.
*/
modifier whenPaused() {
require(paused(), "Pausable: not paused");
_;
}
/**
* @dev Triggers stopped state.
*
* Requirements:
*
* - The contract must not be paused.
*/
function _pause() internal virtual whenNotPaused {
_paused = true;
emit Paused(_msgSender());
}
/**
* @dev Returns to normal state.
*
* Requirements:
*
* - The contract must be paused.
*/
function _unpause() internal virtual whenPaused {
_paused = false;
emit Unpaused(_msgSender());
}
/**
* @dev This empty reserved space is put in place to allow future versions to add new
* variables without shifting down storage in the inheritance chain.
* See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
*/
uint256[49] private __gap;
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts 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 (last updated v4.5.0) (proxy/utils/Initializable.sol)
pragma solidity ^0.8.0;
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.
*
* 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 initialize the implementation contract, you can either invoke the
* initializer manually, or you can include a constructor to automatically mark it as initialized when it is deployed:
*
* [.hljs-theme-light.nopadding]
* ```
* /// @custom:oz-upgrades-unsafe-allow constructor
* constructor() initializer {}
* ```
* ====
*/
abstract contract Initializable {
/**
* @dev Indicates that the contract has been initialized.
*/
bool private _initialized;
/**
* @dev Indicates that the contract is in the process of being initialized.
*/
bool private _initializing;
/**
* @dev Modifier to protect an initializer function from being invoked twice.
*/
modifier initializer() {
// If the contract is initializing we ignore whether _initialized is set in order to support multiple
// inheritance patterns, but we only do this in the context of a constructor, because in other contexts the
// contract may have been reentered.
require(_initializing ? _isConstructor() : !_initialized, "Initializable: contract is already initialized");
bool isTopLevelCall = !_initializing;
if (isTopLevelCall) {
_initializing = true;
_initialized = true;
}
_;
if (isTopLevelCall) {
_initializing = false;
}
}
/**
* @dev Modifier to protect an initialization function so that it can only be invoked by functions with the
* {initializer} modifier, directly or indirectly.
*/
modifier onlyInitializing() {
require(_initializing, "Initializable: contract is not initializing");
_;
}
function _isConstructor() private view returns (bool) {
return !AddressUpgradeable.isContract(address(this));
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.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 functionCall(target, data, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value
) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
require(isContract(target), "Address: call to non-contract");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
require(isContract(target), "Address: static call to non-contract");
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/IAccessControlEnumerable.sol)
pragma solidity ^0.8.0;
import "./IAccessControlUpgradeable.sol";
/**
* @dev External interface of AccessControlEnumerable declared to support ERC165 detection.
*/
interface IAccessControlEnumerableUpgradeable is IAccessControlUpgradeable {
/**
* @dev Returns one of the accounts that have `role`. `index` must be a
* value between 0 and {getRoleMemberCount}, non-inclusive.
*
* Role bearers are not sorted in any particular way, and their ordering may
* change at any point.
*
* WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure
* you perform all queries on the same block. See the following
* https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post]
* for more information.
*/
function getRoleMember(bytes32 role, uint256 index) external view returns (address);
/**
* @dev Returns the number of accounts that have `role`. Can be used
* together with {getRoleMember} to enumerate all bearers of a role.
*/
function getRoleMemberCount(bytes32 role) external view returns (uint256);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (access/AccessControl.sol)
pragma solidity ^0.8.0;
import "./IAccessControlUpgradeable.sol";
import "../utils/ContextUpgradeable.sol";
import "../utils/StringsUpgradeable.sol";
import "../utils/introspection/ERC165Upgradeable.sol";
import "../proxy/utils/Initializable.sol";
/**
* @dev Contract module that allows children to implement role-based access
* control mechanisms. This is a lightweight version that doesn't allow enumerating role
* members except through off-chain means by accessing the contract event logs. Some
* applications may benefit from on-chain enumerability, for those cases see
* {AccessControlEnumerable}.
*
* Roles are referred to by their `bytes32` identifier. These should be exposed
* in the external API and be unique. The best way to achieve this is by
* using `public constant` hash digests:
*
* ```
* bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
* ```
*
* Roles can be used to represent a set of permissions. To restrict access to a
* function call, use {hasRole}:
*
* ```
* function foo() public {
* require(hasRole(MY_ROLE, msg.sender));
* ...
* }
* ```
*
* Roles can be granted and revoked dynamically via the {grantRole} and
* {revokeRole} functions. Each role has an associated admin role, and only
* accounts that have a role's admin role can call {grantRole} and {revokeRole}.
*
* By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
* that only accounts with this role will be able to grant or revoke other
* roles. More complex role relationships can be created by using
* {_setRoleAdmin}.
*
* WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
* grant and revoke this role. Extra precautions should be taken to secure
* accounts that have been granted it.
*/
abstract contract AccessControlUpgradeable is Initializable, ContextUpgradeable, IAccessControlUpgradeable, ERC165Upgradeable {
function __AccessControl_init() internal onlyInitializing {
}
function __AccessControl_init_unchained() internal onlyInitializing {
}
struct RoleData {
mapping(address => bool) members;
bytes32 adminRole;
}
mapping(bytes32 => RoleData) private _roles;
bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;
/**
* @dev Modifier that checks that an account has a specific role. Reverts
* with a standardized message including the required role.
*
* The format of the revert reason is given by the following regular expression:
*
* /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
*
* _Available since v4.1._
*/
modifier onlyRole(bytes32 role) {
_checkRole(role, _msgSender());
_;
}
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
return interfaceId == type(IAccessControlUpgradeable).interfaceId || super.supportsInterface(interfaceId);
}
/**
* @dev Returns `true` if `account` has been granted `role`.
*/
function hasRole(bytes32 role, address account) public view virtual override returns (bool) {
return _roles[role].members[account];
}
/**
* @dev Revert with a standard message if `account` is missing `role`.
*
* The format of the revert reason is given by the following regular expression:
*
* /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
*/
function _checkRole(bytes32 role, address account) internal view virtual {
if (!hasRole(role, account)) {
revert(
string(
abi.encodePacked(
"AccessControl: account ",
StringsUpgradeable.toHexString(uint160(account), 20),
" is missing role ",
StringsUpgradeable.toHexString(uint256(role), 32)
)
)
);
}
}
/**
* @dev Returns the admin role that controls `role`. See {grantRole} and
* {revokeRole}.
*
* To change a role's admin, use {_setRoleAdmin}.
*/
function getRoleAdmin(bytes32 role) public view virtual override returns (bytes32) {
return _roles[role].adminRole;
}
/**
* @dev Grants `role` to `account`.
*
* If `account` had not been already granted `role`, emits a {RoleGranted}
* event.
*
* Requirements:
*
* - the caller must have ``role``'s admin role.
*/
function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
_grantRole(role, account);
}
/**
* @dev Revokes `role` from `account`.
*
* If `account` had been granted `role`, emits a {RoleRevoked} event.
*
* Requirements:
*
* - the caller must have ``role``'s admin role.
*/
function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
_revokeRole(role, account);
}
/**
* @dev Revokes `role` from the calling account.
*
* Roles are often managed via {grantRole} and {revokeRole}: this function's
* purpose is to provide a mechanism for accounts to lose their privileges
* if they are compromised (such as when a trusted device is misplaced).
*
* If the calling account had been revoked `role`, emits a {RoleRevoked}
* event.
*
* Requirements:
*
* - the caller must be `account`.
*/
function renounceRole(bytes32 role, address account) public virtual override {
require(account == _msgSender(), "AccessControl: can only renounce roles for self");
_revokeRole(role, account);
}
/**
* @dev Grants `role` to `account`.
*
* If `account` had not been already granted `role`, emits a {RoleGranted}
* event. Note that unlike {grantRole}, this function doesn't perform any
* checks on the calling account.
*
* [WARNING]
* ====
* This function should only be called from the constructor when setting
* up the initial roles for the system.
*
* Using this function in any other way is effectively circumventing the admin
* system imposed by {AccessControl}.
* ====
*
* NOTE: This function is deprecated in favor of {_grantRole}.
*/
function _setupRole(bytes32 role, address account) internal virtual {
_grantRole(role, account);
}
/**
* @dev Sets `adminRole` as ``role``'s admin role.
*
* Emits a {RoleAdminChanged} event.
*/
function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
bytes32 previousAdminRole = getRoleAdmin(role);
_roles[role].adminRole = adminRole;
emit RoleAdminChanged(role, previousAdminRole, adminRole);
}
/**
* @dev Grants `role` to `account`.
*
* Internal function without access restriction.
*/
function _grantRole(bytes32 role, address account) internal virtual {
if (!hasRole(role, account)) {
_roles[role].members[account] = true;
emit RoleGranted(role, account, _msgSender());
}
}
/**
* @dev Revokes `role` from `account`.
*
* Internal function without access restriction.
*/
function _revokeRole(bytes32 role, address account) internal virtual {
if (hasRole(role, account)) {
_roles[role].members[account] = false;
emit RoleRevoked(role, account, _msgSender());
}
}
/**
* @dev This empty reserved space is put in place to allow future versions to add new
* variables without shifting down storage in the inheritance chain.
* See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
*/
uint256[49] private __gap;
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/structs/EnumerableSet.sol)
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.
*/
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) {
return _values(set._inner);
}
// 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;
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 on 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;
assembly {
result := store
}
return result;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol)
pragma solidity ^0.8.0;
/**
* @dev External interface of AccessControl declared to support ERC165 detection.
*/
interface IAccessControlUpgradeable {
/**
* @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
*
* `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
* {RoleAdminChanged} not being emitted signaling this.
*
* _Available since v3.1._
*/
event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);
/**
* @dev Emitted when `account` is granted `role`.
*
* `sender` is the account that originated the contract call, an admin role
* bearer except when using {AccessControl-_setupRole}.
*/
event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);
/**
* @dev Emitted when `account` is revoked `role`.
*
* `sender` is the account that originated the contract call:
* - if using `revokeRole`, it is the admin role bearer
* - if using `renounceRole`, it is the role bearer (i.e. `account`)
*/
event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);
/**
* @dev Returns `true` if `account` has been granted `role`.
*/
function hasRole(bytes32 role, address account) external view returns (bool);
/**
* @dev Returns the admin role that controls `role`. See {grantRole} and
* {revokeRole}.
*
* To change a role's admin, use {AccessControl-_setRoleAdmin}.
*/
function getRoleAdmin(bytes32 role) external view returns (bytes32);
/**
* @dev Grants `role` to `account`.
*
* If `account` had not been already granted `role`, emits a {RoleGranted}
* event.
*
* Requirements:
*
* - the caller must have ``role``'s admin role.
*/
function grantRole(bytes32 role, address account) external;
/**
* @dev Revokes `role` from `account`.
*
* If `account` had been granted `role`, emits a {RoleRevoked} event.
*
* Requirements:
*
* - the caller must have ``role``'s admin role.
*/
function revokeRole(bytes32 role, address account) external;
/**
* @dev Revokes `role` from the calling account.
*
* Roles are often managed via {grantRole} and {revokeRole}: this function's
* purpose is to provide a mechanism for accounts to lose their privileges
* if they are compromised (such as when a trusted device is misplaced).
*
* If the calling account had been granted `role`, emits a {RoleRevoked}
* event.
*
* Requirements:
*
* - the caller must be `account`.
*/
function renounceRole(bytes32 role, address account) external;
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)
pragma solidity ^0.8.0;
/**
* @dev String operations.
*/
library StringsUpgradeable {
bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
/**
* @dev Converts a `uint256` to its ASCII `string` decimal representation.
*/
function toString(uint256 value) internal pure returns (string memory) {
// Inspired by OraclizeAPI's implementation - MIT licence
// https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol
if (value == 0) {
return "0";
}
uint256 temp = value;
uint256 digits;
while (temp != 0) {
digits++;
temp /= 10;
}
bytes memory buffer = new bytes(digits);
while (value != 0) {
digits -= 1;
buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
value /= 10;
}
return string(buffer);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
*/
function toHexString(uint256 value) internal pure returns (string memory) {
if (value == 0) {
return "0x00";
}
uint256 temp = value;
uint256 length = 0;
while (temp != 0) {
length++;
temp >>= 8;
}
return toHexString(value, length);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
*/
function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
bytes memory buffer = new bytes(2 * length + 2);
buffer[0] = "0";
buffer[1] = "x";
for (uint256 i = 2 * length + 1; i > 1; --i) {
buffer[i] = _HEX_SYMBOLS[value & 0xf];
value >>= 4;
}
require(value == 0, "Strings: hex length insufficient");
return string(buffer);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)
pragma solidity ^0.8.0;
import "./IERC165Upgradeable.sol";
import "../../proxy/utils/Initializable.sol";
/**
* @dev Implementation of the {IERC165} interface.
*
* Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
* for the additional interface id that will be supported. For example:
*
* ```solidity
* function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
* return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
* }
* ```
*
* Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
*/
abstract contract ERC165Upgradeable is Initializable, IERC165Upgradeable {
function __ERC165_init() internal onlyInitializing {
}
function __ERC165_init_unchained() internal onlyInitializing {
}
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
return interfaceId == type(IERC165Upgradeable).interfaceId;
}
/**
* @dev This empty reserved space is put in place to allow future versions to add new
* variables without shifting down storage in the inheritance chain.
* See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
*/
uint256[50] private __gap;
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[EIP].
*
* Implementers can declare support of contract interfaces, which can then be
* queried by others ({ERC165Checker}).
*
* For an implementation, see {ERC165}.
*/
interface IERC165Upgradeable {
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
* to learn more about how these ids are created.
*
* This function call must use less than 30 000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}{
"optimizer": {
"enabled": true,
"runs": 200
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"metadata": {
"useLiteralContent": true
},
"libraries": {}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"seller","type":"address"},{"indexed":true,"internalType":"address","name":"nftAddress","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ItemCanceled","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"seller","type":"address"},{"indexed":false,"internalType":"address","name":"nftAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint64","name":"quantity","type":"uint64"},{"indexed":false,"internalType":"uint128","name":"pricePerItem","type":"uint128"},{"indexed":false,"internalType":"uint64","name":"expirationTime","type":"uint64"}],"name":"ItemListed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"seller","type":"address"},{"indexed":false,"internalType":"address","name":"buyer","type":"address"},{"indexed":false,"internalType":"address","name":"nftAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint64","name":"quantity","type":"uint64"},{"indexed":false,"internalType":"uint128","name":"pricePerItem","type":"uint128"}],"name":"ItemSold","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"seller","type":"address"},{"indexed":false,"internalType":"address","name":"nftAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint64","name":"quantity","type":"uint64"},{"indexed":false,"internalType":"uint128","name":"pricePerItem","type":"uint128"},{"indexed":false,"internalType":"uint64","name":"expirationTime","type":"uint64"}],"name":"ItemUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"nft","type":"address"},{"indexed":false,"internalType":"enum TreasureMarketplace.TokenApprovalStatus","name":"status","type":"uint8"}],"name":"TokenApprovalStatusUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_collection","type":"address"},{"indexed":false,"internalType":"address","name":"_recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"_fee","type":"uint256"}],"name":"UpdateCollectionOwnerFee","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"fee","type":"uint256"}],"name":"UpdateFee","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"feeRecipient","type":"address"}],"name":"UpdateFeeRecipient","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"fee","type":"uint256"}],"name":"UpdateFeeWithCollectionOwner","type":"event"},{"inputs":[],"name":"BASIS_POINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_COLLECTION_FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MIN_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TREASURE_MARKETPLACE_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_nftAddress","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"address","name":"_owner","type":"address"},{"internalType":"uint64","name":"_quantity","type":"uint64"},{"internalType":"uint128","name":"_maxPricePerItem","type":"uint128"}],"name":"buyItem","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_nftAddress","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"cancelListing","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"collectionToCollectionOwnerFee","outputs":[{"internalType":"uint32","name":"fee","type":"uint32"},{"internalType":"address","name":"recipient","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_nftAddress","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint64","name":"_quantity","type":"uint64"},{"internalType":"uint128","name":"_pricePerItem","type":"uint128"},{"internalType":"uint64","name":"_expirationTime","type":"uint64"}],"name":"createListing","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"fee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feeReceipient","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feeWithCollectionOwner","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_initialFee","type":"uint256"},{"internalType":"address","name":"_initialFeeRecipient","type":"address"},{"internalType":"contract IERC20Upgradeable","name":"_initialPaymentToken","type":"address"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"address","name":"","type":"address"}],"name":"listings","outputs":[{"internalType":"uint64","name":"quantity","type":"uint64"},{"internalType":"uint128","name":"pricePerItem","type":"uint128"},{"internalType":"uint64","name":"expirationTime","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paymentToken","outputs":[{"internalType":"contract IERC20Upgradeable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_collectionAddress","type":"address"},{"components":[{"internalType":"uint32","name":"fee","type":"uint32"},{"internalType":"address","name":"recipient","type":"address"}],"internalType":"struct TreasureMarketplace.CollectionOwnerFee","name":"_collectionOwnerFee","type":"tuple"}],"name":"setCollectionOwnerFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newFee","type":"uint256"},{"internalType":"uint256","name":"_newFeeWithCollectionOwner","type":"uint256"}],"name":"setFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newFeeRecipient","type":"address"}],"name":"setFeeRecipient","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_nft","type":"address"},{"internalType":"enum TreasureMarketplace.TokenApprovalStatus","name":"_status","type":"uint8"}],"name":"setTokenApprovalStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"tokenApprovals","outputs":[{"internalType":"enum TreasureMarketplace.TokenApprovalStatus","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_nftAddress","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint64","name":"_newQuantity","type":"uint64"},{"internalType":"uint128","name":"_newPricePerItem","type":"uint128"},{"internalType":"uint64","name":"_newExpirationTime","type":"uint64"}],"name":"updateListing","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
60806040523480156200001157600080fd5b50600054610100900460ff166200002f5760005460ff161562000039565b62000039620000de565b620000a15760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b606482015260840160405180910390fd5b600054610100900460ff16158015620000c4576000805461ffff19166101011790555b8015620000d7576000805461ff00191690555b506200010b565b6000620000f630620000fc60201b6200180c1760201c565b15905090565b6001600160a01b03163b151590565b613059806200011b6000396000f3fe608060405234801561001057600080fd5b50600436106101fb5760003560e01c80639010d07c1161011a578063ca15c873116100ad578063e1f1c4a71161007c578063e1f1c4a714610483578063e74b981b1461048c578063e76c17131461049f578063e8a5f200146104d0578063f4930d3e1461052e57600080fd5b8063ca15c87314610440578063d547741f14610453578063dc4bb22d14610466578063ddca3f431461047957600080fd5b8063ad9f20a6116100e9578063ad9f20a614610406578063b2ddee0614610411578063b4988fd014610424578063bc063e1a1461043757600080fd5b80639010d07c146103cf57806391d14854146103e25780639858bc9f146103f5578063a217fddf146103fe57600080fd5b8063452f44b3116101925780636bd3a64b116101615780636bd3a64b14610320578063764d63c7146103aa578063785a8678146103bd5780638456cb59146103c757600080fd5b8063452f44b3146102dc57806352f7c988146102ef5780635c975abb146103025780636943acce1461030d57600080fd5b80633013ce29116101ce5780633013ce291461028157806336568abe146102ad5780633740ebb3146102c05780633f4ba83a146102d457600080fd5b806301ffc9a71461020057806319d8943614610228578063248a9ca31461023d5780632f2ff15d1461026e575b600080fd5b61021361020e36600461287d565b610543565b60405190151581526020015b60405180910390f35b61023b6102363660046128bc565b61056e565b005b61026061024b3660046128fd565b60009081526065602052604090206001015490565b60405190815260200161021f565b61023b61027c366004612916565b61076e565b61012d54610295906001600160a01b031681565b6040516001600160a01b03909116815260200161021f565b61023b6102bb366004612916565b610799565b61012f54610295906001600160a01b031681565b61023b610817565b61023b6102ea366004612946565b61083b565b61023b6102fd366004612978565b610a98565b60c95460ff16610213565b61023b61031b3660046129cd565b610b80565b61037861032e366004612a2f565b6101306020908152600093845260408085208252928452828420905282529020546001600160401b03808216916001600160801b03600160401b82041691600160c01b9091041683565b604080516001600160401b0394851681526001600160801b03909316602084015292169181019190915260600161021f565b61023b6103b8366004612a71565b611231565b6102606101325481565b61023b611396565b6102956103dd366004612978565b6113b7565b6102136103f0366004612916565b6113d6565b6102606102ee81565b610260600081565b610260633b9aca0081565b61023b61041f366004612ac5565b611401565b61023b610432366004612af1565b611489565b6102606105dc81565b61026061044e3660046128fd565b611625565b61023b610461366004612916565b61163c565b61023b610474366004612a71565b611662565b61026061012e5481565b61026061271081565b61023b61049a366004612b28565b611733565b6104c36104ad366004612b28565b6101316020526000908152604090205460ff1681565b60405161021f9190612b7d565b61050a6104de366004612b28565b6101336020526000908152604090205463ffffffff81169064010000000090046001600160a01b031682565b6040805163ffffffff90931683526001600160a01b0390911660208301520161021f565b61026060008051602061300483398151915281565b60006001600160e01b03198216635a05180f60e01b148061056857506105688261181b565b92915050565b6000805160206130048339815191526105878133611850565b60026001600160a01b0384166000908152610131602052604090205460ff1660028111156105b7576105b7612b45565b14806105f0575060016001600160a01b0384166000908152610131602052604090205460ff1660028111156105ee576105ee612b45565b145b6106595760405162461bcd60e51b815260206004820152602f60248201527f54726561737572654d61726b6574706c6163653a20436f6c6c656374696f6e2060448201526e1a5cc81b9bdd08185c1c1c9bdd9959608a1b60648201526084015b60405180910390fd5b6102ee6106696020840184612b9d565b63ffffffff1611156106d25760405162461bcd60e51b815260206004820152602c60248201527f54726561737572654d61726b6574706c6163653a20436f6c6c656374696f6e2060448201526b0cccaca40e8dede40d0d2ced60a31b6064820152608401610650565b6001600160a01b03831660009081526101336020526040902082906106f78282612bba565b507f67fec56f6f9c18f46aafdc92ee08968b7cac01e9e5b3dbdd485415acf0e9773e90508361072c6040850160208601612b28565b6107396020860186612b9d565b604080516001600160a01b03948516815293909216602084015263ffffffff16908201526060015b60405180910390a1505050565b60008281526065602052604090206001015461078a8133611850565b61079483836118b4565b505050565b6001600160a01b03811633146108095760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610650565b61081382826118d6565b5050565b6000805160206130048339815191526108308133611850565b6108386118f8565b50565b6000805160206130048339815191526108548133611850565b600182600281111561086857610868612b45565b1415610942576040516301ffc9a760e01b81526380ac58cd60e01b60048201526001600160a01b038416906301ffc9a790602401602060405180830381865afa1580156108b9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108dd9190612c13565b61093d5760405162461bcd60e51b815260206004820152602b60248201527f54726561737572654d61726b6574706c6163653a206e6f7420616e204552433760448201526a0c8c4818dbdb9d1c9858dd60aa1b6064820152608401610650565b610a2c565b600282600281111561095657610956612b45565b1415610a2c576040516301ffc9a760e01b8152636cdb3d1360e11b60048201526001600160a01b038416906301ffc9a790602401602060405180830381865afa1580156109a7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109cb9190612c13565b610a2c5760405162461bcd60e51b815260206004820152602c60248201527f54726561737572654d61726b6574706c6163653a206e6f7420616e204552433160448201526b0c4d4d4818dbdb9d1c9858dd60a21b6064820152608401610650565b6001600160a01b038316600090815261013160205260409020805483919060ff19166001836002811115610a6257610a62612b45565b02179055507fca446620807f89a7a1b4e55f8d40d10825d760be101a4deba2ff4a67c8bca9518383604051610761929190612c35565b600080516020613004833981519152610ab18133611850565b6105dc8311158015610ac557506105dc8211155b610b115760405162461bcd60e51b815260206004820152601c60248201527f54726561737572654d61726b6574706c6163653a206d617820666565000000006044820152606401610650565b61012e8390556101328290556040518381527f38e229a7f3f9c329892d08eb37c4e91ccac6d12c798d394990ca4f56028ec2669060200160405180910390a16040518281527f32837ab65d8583d89ac1b66920de55975eb33cbc0fbf00f2123197ce3b62c63e90602001610761565b600260fb541415610ba35760405162461bcd60e51b815260040161065090612c52565b600260fb5560c95460ff1615610bcb5760405162461bcd60e51b815260040161065090612c89565b336001600160a01b0384161415610c3a5760405162461bcd60e51b815260206004820152602d60248201527f54726561737572654d61726b6574706c6163653a2043616e6e6f74206275792060448201526c796f7572206f776e206974656d60981b6064820152608401610650565b6000826001600160401b031611610c9f5760405162461bcd60e51b815260206004820152602360248201527f54726561737572654d61726b6574706c6163653a204e6f7468696e6720746f2060448201526262757960e81b6064820152608401610650565b6001600160a01b038086166000908152610130602090815260408083208884528252808320938716835292815290829020825160608101845290546001600160401b038082168084526001600160801b03600160401b84041694840194909452600160c01b9091041692810192909252610d2b5760405162461bcd60e51b815260040161065090612cb3565b4281604001516001600160401b03161015610d945760405162461bcd60e51b8152602060048201526024808201527f54726561737572654d61726b6574706c6163653a206c697374696e67206578706044820152631a5c995960e21b6064820152608401610650565b600081602001516001600160801b031611610e045760405162461bcd60e51b815260206004820152602a60248201527f54726561737572654d61726b6574706c6163653a206c697374696e672070726960448201526918d9481a5b9d985b1a5960b21b6064820152608401610650565b80516001600160401b0380851691161015610e725760405162461bcd60e51b815260206004820152602860248201527f54726561737572654d61726b6574706c6163653a206e6f7420656e6f756768206044820152677175616e7469747960c01b6064820152608401610650565b816001600160801b031681602001516001600160801b03161115610ee45760405162461bcd60e51b8152602060048201526024808201527f54726561737572654d61726b6574706c6163653a20707269636520696e637265604482015263185cd95960e21b6064820152608401610650565b60016001600160a01b0387166000908152610131602052604090205460ff166002811115610f1457610f14612b45565b1415610ff957826001600160401b0316600114610f8b5760405162461bcd60e51b815260206004820152602f60248201527f54726561737572654d61726b6574706c6163653a2043616e6e6f74206275792060448201526e6d756c7469706c652045524337323160881b6064820152608401610650565b604051632142170760e11b81526001600160a01b038581166004830152336024830152604482018790528716906342842e0e906064015b600060405180830381600087803b158015610fdc57600080fd5b505af1158015610ff0573d6000803e3d6000fd5b505050506110d6565b60026001600160a01b0387166000908152610131602052604090205460ff16600281111561102957611029612b45565b141561106f5760408051602081018252600081529051637921219560e11b81526001600160a01b0388169163f242432a91610fc291889133918b918a9190600401612d4f565b60405162461bcd60e51b815260206004820152603660248201527f54726561737572654d61726b6574706c6163653a20746f6b656e206973206e6f6044820152757420617070726f76656420666f722074726164696e6760501b6064820152608401610650565b6110eb81846001600160401b0316888761198b565b602081810151604080516001600160a01b038089168252339482019490945292891683820152606083018890526001600160401b03861660808401526001600160801b0390911660a0830152517f8f236686c9ab7948a1cc5985ed36b4de9780519f75380d5ea3ac498f9270e17f9181900360c00190a1826001600160401b031681600001516001600160401b031614156111b6576001600160a01b038087166000908152610130602090815260408083208984528252808320938816835292905290812055611224565b6001600160a01b038087166000908152610130602090815260408083208984528252808320938816835292905290812080548592906111ff9084906001600160401b0316612da7565b92506101000a8154816001600160401b0302191690836001600160401b031602179055505b5050600160fb5550505050565b600260fb5414156112545760405162461bcd60e51b815260040161065090612c52565b600260fb5560c95460ff161561127c5760405162461bcd60e51b815260040161065090612c89565b6001600160a01b03851660009081526101306020908152604080832087845282528083203384529091529020546001600160401b03161561130b5760405162461bcd60e51b815260206004820152602360248201527f54726561737572654d61726b6574706c6163653a20616c7265616479206c69736044820152621d195960ea1b6064820152608401610650565b6113188585858585611ac0565b7f83bf900e0d7defb9558918eb50503be072490d1437edf6aba38f0c5d940b0131335b604080516001600160a01b039283168152918816602083015281018690526001600160401b0380861660608301526001600160801b0385166080830152831660a082015260c00160405180910390a15050600160fb55505050565b6000805160206130048339815191526113af8133611850565b61083861206f565b60008281526097602052604081206113cf90836120c7565b9392505050565b60009182526065602090815260408084206001600160a01b0393909316845291905290205460ff1690565b600260fb5414156114245760405162461bcd60e51b815260040161065090612c52565b600260fb556001600160a01b0382166000818152610130602090815260408083208584528252808320338085529252808320839055518493927f9ba1a3cb55ce8d63d072a886f94d2a744f50cddf82128e897d0661f5ec62315891a45050600160fb55565b600054610100900460ff166114a45760005460ff16156114a8565b303b155b61150b5760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608401610650565b600054610100900460ff1615801561152d576000805461ffff19166101011790555b6001600160a01b0382166115965760405162461bcd60e51b815260206004820152602a60248201527f54726561737572654d61726b6574706c6163653a2063616e6e6f7420736574206044820152696164647265737328302960b01b6064820152608401610650565b61159e6120d3565b6115a66120fc565b6115ae61212f565b6115c66000805160206130048339815191528061215d565b6115de600080516020613004833981519152336118b4565b6115e88485610a98565b6115f183611733565b61012d80546001600160a01b0319166001600160a01b038416179055801561161f576000805461ff00191690555b50505050565b6000818152609760205260408120610568906121a8565b6000828152606560205260409020600101546116588133611850565b61079483836118d6565b600260fb5414156116855760405162461bcd60e51b815260040161065090612c52565b600260fb5560c95460ff16156116ad5760405162461bcd60e51b815260040161065090612c89565b6001600160a01b03851660009081526101306020908152604080832087845282528083203384529091529020546001600160401b03166116ff5760405162461bcd60e51b815260040161065090612cb3565b61170c8585858585611ac0565b7f99cef4217225de117fe8739e7620ea9ad6e284897615196f6013fcf54735d44e3361133b565b60008051602061300483398151915261174c8133611850565b6001600160a01b0382166117b65760405162461bcd60e51b815260206004820152602b60248201527f54726561737572654d61726b6574706c6163653a2063616e6e6f74207365742060448201526a307830206164647265737360a81b6064820152608401610650565b61012f80546001600160a01b0319166001600160a01b0384169081179091556040519081527f6632de8ab33c46549f7bb29f647ea0d751157b25fe6a14b1bcc7527cdfbeb79c9060200160405180910390a15050565b6001600160a01b03163b151590565b60006001600160e01b03198216637965db0b60e01b148061056857506301ffc9a760e01b6001600160e01b0319831614610568565b61185a82826113d6565b61081357611872816001600160a01b031660146121b2565b61187d8360206121b2565b60405160200161188e929190612dcf565b60408051601f198184030181529082905262461bcd60e51b825261065091600401612e44565b6118be828261234d565b600082815260976020526040902061079490826123d3565b6118e082826123e8565b6000828152609760205260409020610794908261244f565b60c95460ff166119415760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610650565b60c9805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b60008385602001516001600160801b03166119a69190612e57565b6001600160a01b03808516600090815261013360205260408120549293506401000000009092041690808215611a01575050610132546001600160a01b0385166000908152610133602052604090205463ffffffff16611a0a565b505061012e5460005b6000612710611a198487612e57565b611a239190612e76565b90506000612710611a348488612e57565b611a3e9190612e76565b90508115611a6657611a663361012f5461012d546001600160a01b0390811692911685612464565b8015611a8557611a853361012d546001600160a01b0316908784612464565b611ab4338883611a95868b612e98565b611a9f9190612e98565b61012d546001600160a01b0316929190612464565b50505050505050505050565b42816001600160401b031611611b2d5760405162461bcd60e51b815260206004820152602c60248201527f54726561737572654d61726b6574706c6163653a20696e76616c69642065787060448201526b69726174696f6e2074696d6560a01b6064820152608401610650565b633b9aca00826001600160801b03161015611b965760405162461bcd60e51b8152602060048201526024808201527f54726561737572654d61726b6574706c6163653a2062656c6f77206d696e20706044820152637269636560e01b6064820152608401610650565b60016001600160a01b0386166000908152610131602052604090205460ff166002811115611bc657611bc6612b45565b1415611daf5784336040516331a9108f60e11b8152600481018790526001600160a01b0391821691831690636352211e90602401602060405180830381865afa158015611c17573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c3b9190612eaf565b6001600160a01b031614611c9d5760405162461bcd60e51b8152602060048201526024808201527f54726561737572654d61726b6574706c6163653a206e6f74206f776e696e67206044820152636974656d60e01b6064820152608401610650565b6001600160a01b03811663e985e9c5336040516001600160e01b031960e084901b1681526001600160a01b039091166004820152306024820152604401602060405180830381865afa158015611cf7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d1b9190612c13565b611d375760405162461bcd60e51b815260040161065090612ecc565b836001600160401b0316600114611da95760405162461bcd60e51b815260206004820152603060248201527f54726561737572654d61726b6574706c6163653a2063616e6e6f74206c69737460448201526f206d756c7469706c652045524337323160801b6064820152608401610650565b50611fce565b60026001600160a01b0386166000908152610131602052604090205460ff166002811115611ddf57611ddf612b45565b141561106f57846001600160401b0384166001600160a01b03821662fdd58e336040516001600160e01b031960e084901b1681526001600160a01b03909116600482015260248101899052604401602060405180830381865afa158015611e4a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e6e9190612f12565b1015611ecf5760405162461bcd60e51b815260206004820152602a60248201527f54726561737572654d61726b6574706c6163653a206d75737420686f6c6420656044820152696e6f756768206e66747360b01b6064820152608401610650565b6001600160a01b03811663e985e9c5336040516001600160e01b031960e084901b1681526001600160a01b039091166004820152306024820152604401602060405180830381865afa158015611f29573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f4d9190612c13565b611f695760405162461bcd60e51b815260040161065090612ecc565b6000846001600160401b031611611da95760405162461bcd60e51b8152602060048201526024808201527f54726561737572654d61726b6574706c6163653a206e6f7468696e6720746f206044820152631b1a5cdd60e21b6064820152608401610650565b604080516060810182526001600160401b0394851681526001600160801b0393841660208083019182529386168284019081526001600160a01b039890981660009081526101308552838120978152968452828720338852909352942093518454915195518416600160c01b026001600160c01b0396909316600160401b026001600160c01b03199092169316929092179190911792909216919091179055565b60c95460ff16156120925760405162461bcd60e51b815260040161065090612c89565b60c9805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861196e3390565b60006113cf83836124be565b600054610100900460ff166120fa5760405162461bcd60e51b815260040161065090612f2b565b565b600054610100900460ff166121235760405162461bcd60e51b815260040161065090612f2b565b60c9805460ff19169055565b600054610100900460ff166121565760405162461bcd60e51b815260040161065090612f2b565b600160fb55565b600082815260656020526040808220600101805490849055905190918391839186917fbd79b86ffe0ab8e8776151514217cd7cacd52c909f66475c3af44e129f0b00ff9190a4505050565b6000610568825490565b606060006121c1836002612e57565b6121cc906002612f76565b6001600160401b038111156121e3576121e3612f8e565b6040519080825280601f01601f19166020018201604052801561220d576020820181803683370190505b509050600360fc1b8160008151811061222857612228612fa4565b60200101906001600160f81b031916908160001a905350600f60fb1b8160018151811061225757612257612fa4565b60200101906001600160f81b031916908160001a905350600061227b846002612e57565b612286906001612f76565b90505b60018111156122fe576f181899199a1a9b1b9c1cb0b131b232b360811b85600f16601081106122ba576122ba612fa4565b1a60f81b8282815181106122d0576122d0612fa4565b60200101906001600160f81b031916908160001a90535060049490941c936122f781612fba565b9050612289565b5083156113cf5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610650565b61235782826113d6565b6108135760008281526065602090815260408083206001600160a01b03851684529091529020805460ff1916600117905561238f3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b60006113cf836001600160a01b0384166124e8565b6123f282826113d6565b156108135760008281526065602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b60006113cf836001600160a01b038416612537565b604080516001600160a01b0385811660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b17905261161f90859061262a565b60008260000182815481106124d5576124d5612fa4565b9060005260206000200154905092915050565b600081815260018301602052604081205461252f57508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610568565b506000610568565b6000818152600183016020526040812054801561262057600061255b600183612e98565b855490915060009061256f90600190612e98565b90508181146125d457600086600001828154811061258f5761258f612fa4565b90600052602060002001549050808760000184815481106125b2576125b2612fa4565b6000918252602080832090910192909255918252600188019052604090208390555b85548690806125e5576125e5612fd1565b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050610568565b6000915050610568565b600061267f826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166126fc9092919063ffffffff16565b805190915015610794578080602001905181019061269d9190612c13565b6107945760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610650565b606061270b8484600085612713565b949350505050565b6060824710156127745760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610650565b6001600160a01b0385163b6127cb5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610650565b600080866001600160a01b031685876040516127e79190612fe7565b60006040518083038185875af1925050503d8060008114612824576040519150601f19603f3d011682016040523d82523d6000602084013e612829565b606091505b5091509150612839828286612844565b979650505050505050565b606083156128535750816113cf565b8251156128635782518084602001fd5b8160405162461bcd60e51b81526004016106509190612e44565b60006020828403121561288f57600080fd5b81356001600160e01b0319811681146113cf57600080fd5b6001600160a01b038116811461083857600080fd5b60008082840360608112156128d057600080fd5b83356128db816128a7565b92506040601f19820112156128ef57600080fd5b506020830190509250929050565b60006020828403121561290f57600080fd5b5035919050565b6000806040838503121561292957600080fd5b82359150602083013561293b816128a7565b809150509250929050565b6000806040838503121561295957600080fd5b8235612964816128a7565b915060208301356003811061293b57600080fd5b6000806040838503121561298b57600080fd5b50508035926020909101359150565b80356001600160401b03811681146129b157600080fd5b919050565b80356001600160801b03811681146129b157600080fd5b600080600080600060a086880312156129e557600080fd5b85356129f0816128a7565b9450602086013593506040860135612a07816128a7565b9250612a156060870161299a565b9150612a23608087016129b6565b90509295509295909350565b600080600060608486031215612a4457600080fd5b8335612a4f816128a7565b9250602084013591506040840135612a66816128a7565b809150509250925092565b600080600080600060a08688031215612a8957600080fd5b8535612a94816128a7565b945060208601359350612aa96040870161299a565b9250612ab7606087016129b6565b9150612a236080870161299a565b60008060408385031215612ad857600080fd5b8235612ae3816128a7565b946020939093013593505050565b600080600060608486031215612b0657600080fd5b833592506020840135612b18816128a7565b91506040840135612a66816128a7565b600060208284031215612b3a57600080fd5b81356113cf816128a7565b634e487b7160e01b600052602160045260246000fd5b60038110612b7957634e487b7160e01b600052602160045260246000fd5b9052565b602081016105688284612b5b565b63ffffffff8116811461083857600080fd5b600060208284031215612baf57600080fd5b81356113cf81612b8b565b8135612bc581612b8b565b63ffffffff8116905081548163ffffffff1982161783556020840135612bea816128a7565b6001600160c01b03199190911690911760209190911b640100000000600160c01b031617905550565b600060208284031215612c2557600080fd5b815180151581146113cf57600080fd5b6001600160a01b0383168152604081016113cf6020830184612b5b565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b60208082526024908201527f54726561737572654d61726b6574706c6163653a206e6f74206c6973746564206040820152636974656d60e01b606082015260800190565b60005b83811015612d12578181015183820152602001612cfa565b8381111561161f5750506000910152565b60008151808452612d3b816020860160208601612cf7565b601f01601f19169290920160200192915050565b6001600160a01b03868116825285166020820152604081018490526001600160401b038316606082015260a06080820181905260009061283990830184612d23565b634e487b7160e01b600052601160045260246000fd5b60006001600160401b0383811690831681811015612dc757612dc7612d91565b039392505050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351612e07816017850160208801612cf7565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351612e38816028840160208801612cf7565b01602801949350505050565b6020815260006113cf6020830184612d23565b6000816000190483118215151615612e7157612e71612d91565b500290565b600082612e9357634e487b7160e01b600052601260045260246000fd5b500490565b600082821015612eaa57612eaa612d91565b500390565b600060208284031215612ec157600080fd5b81516113cf816128a7565b60208082526026908201527f54726561737572654d61726b6574706c6163653a206974656d206e6f742061706040820152651c1c9bdd995960d21b606082015260800190565b600060208284031215612f2457600080fd5b5051919050565b6020808252602b908201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960408201526a6e697469616c697a696e6760a81b606082015260800190565b60008219821115612f8957612f89612d91565b500190565b634e487b7160e01b600052604160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b600081612fc957612fc9612d91565b506000190190565b634e487b7160e01b600052603160045260246000fd5b60008251612ff9818460208701612cf7565b919091019291505056fe34d5e892b0a7ec1561fc4a5fdcb31b798cf623590906b938d356c9619e539958a264697066735822122045fda8d2b6a03353b87cfcdd4b452bb9012ad1e3435bdc9b4fbc4444f4da8e0164736f6c634300080c0033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101fb5760003560e01c80639010d07c1161011a578063ca15c873116100ad578063e1f1c4a71161007c578063e1f1c4a714610483578063e74b981b1461048c578063e76c17131461049f578063e8a5f200146104d0578063f4930d3e1461052e57600080fd5b8063ca15c87314610440578063d547741f14610453578063dc4bb22d14610466578063ddca3f431461047957600080fd5b8063ad9f20a6116100e9578063ad9f20a614610406578063b2ddee0614610411578063b4988fd014610424578063bc063e1a1461043757600080fd5b80639010d07c146103cf57806391d14854146103e25780639858bc9f146103f5578063a217fddf146103fe57600080fd5b8063452f44b3116101925780636bd3a64b116101615780636bd3a64b14610320578063764d63c7146103aa578063785a8678146103bd5780638456cb59146103c757600080fd5b8063452f44b3146102dc57806352f7c988146102ef5780635c975abb146103025780636943acce1461030d57600080fd5b80633013ce29116101ce5780633013ce291461028157806336568abe146102ad5780633740ebb3146102c05780633f4ba83a146102d457600080fd5b806301ffc9a71461020057806319d8943614610228578063248a9ca31461023d5780632f2ff15d1461026e575b600080fd5b61021361020e36600461287d565b610543565b60405190151581526020015b60405180910390f35b61023b6102363660046128bc565b61056e565b005b61026061024b3660046128fd565b60009081526065602052604090206001015490565b60405190815260200161021f565b61023b61027c366004612916565b61076e565b61012d54610295906001600160a01b031681565b6040516001600160a01b03909116815260200161021f565b61023b6102bb366004612916565b610799565b61012f54610295906001600160a01b031681565b61023b610817565b61023b6102ea366004612946565b61083b565b61023b6102fd366004612978565b610a98565b60c95460ff16610213565b61023b61031b3660046129cd565b610b80565b61037861032e366004612a2f565b6101306020908152600093845260408085208252928452828420905282529020546001600160401b03808216916001600160801b03600160401b82041691600160c01b9091041683565b604080516001600160401b0394851681526001600160801b03909316602084015292169181019190915260600161021f565b61023b6103b8366004612a71565b611231565b6102606101325481565b61023b611396565b6102956103dd366004612978565b6113b7565b6102136103f0366004612916565b6113d6565b6102606102ee81565b610260600081565b610260633b9aca0081565b61023b61041f366004612ac5565b611401565b61023b610432366004612af1565b611489565b6102606105dc81565b61026061044e3660046128fd565b611625565b61023b610461366004612916565b61163c565b61023b610474366004612a71565b611662565b61026061012e5481565b61026061271081565b61023b61049a366004612b28565b611733565b6104c36104ad366004612b28565b6101316020526000908152604090205460ff1681565b60405161021f9190612b7d565b61050a6104de366004612b28565b6101336020526000908152604090205463ffffffff81169064010000000090046001600160a01b031682565b6040805163ffffffff90931683526001600160a01b0390911660208301520161021f565b61026060008051602061300483398151915281565b60006001600160e01b03198216635a05180f60e01b148061056857506105688261181b565b92915050565b6000805160206130048339815191526105878133611850565b60026001600160a01b0384166000908152610131602052604090205460ff1660028111156105b7576105b7612b45565b14806105f0575060016001600160a01b0384166000908152610131602052604090205460ff1660028111156105ee576105ee612b45565b145b6106595760405162461bcd60e51b815260206004820152602f60248201527f54726561737572654d61726b6574706c6163653a20436f6c6c656374696f6e2060448201526e1a5cc81b9bdd08185c1c1c9bdd9959608a1b60648201526084015b60405180910390fd5b6102ee6106696020840184612b9d565b63ffffffff1611156106d25760405162461bcd60e51b815260206004820152602c60248201527f54726561737572654d61726b6574706c6163653a20436f6c6c656374696f6e2060448201526b0cccaca40e8dede40d0d2ced60a31b6064820152608401610650565b6001600160a01b03831660009081526101336020526040902082906106f78282612bba565b507f67fec56f6f9c18f46aafdc92ee08968b7cac01e9e5b3dbdd485415acf0e9773e90508361072c6040850160208601612b28565b6107396020860186612b9d565b604080516001600160a01b03948516815293909216602084015263ffffffff16908201526060015b60405180910390a1505050565b60008281526065602052604090206001015461078a8133611850565b61079483836118b4565b505050565b6001600160a01b03811633146108095760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610650565b61081382826118d6565b5050565b6000805160206130048339815191526108308133611850565b6108386118f8565b50565b6000805160206130048339815191526108548133611850565b600182600281111561086857610868612b45565b1415610942576040516301ffc9a760e01b81526380ac58cd60e01b60048201526001600160a01b038416906301ffc9a790602401602060405180830381865afa1580156108b9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108dd9190612c13565b61093d5760405162461bcd60e51b815260206004820152602b60248201527f54726561737572654d61726b6574706c6163653a206e6f7420616e204552433760448201526a0c8c4818dbdb9d1c9858dd60aa1b6064820152608401610650565b610a2c565b600282600281111561095657610956612b45565b1415610a2c576040516301ffc9a760e01b8152636cdb3d1360e11b60048201526001600160a01b038416906301ffc9a790602401602060405180830381865afa1580156109a7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109cb9190612c13565b610a2c5760405162461bcd60e51b815260206004820152602c60248201527f54726561737572654d61726b6574706c6163653a206e6f7420616e204552433160448201526b0c4d4d4818dbdb9d1c9858dd60a21b6064820152608401610650565b6001600160a01b038316600090815261013160205260409020805483919060ff19166001836002811115610a6257610a62612b45565b02179055507fca446620807f89a7a1b4e55f8d40d10825d760be101a4deba2ff4a67c8bca9518383604051610761929190612c35565b600080516020613004833981519152610ab18133611850565b6105dc8311158015610ac557506105dc8211155b610b115760405162461bcd60e51b815260206004820152601c60248201527f54726561737572654d61726b6574706c6163653a206d617820666565000000006044820152606401610650565b61012e8390556101328290556040518381527f38e229a7f3f9c329892d08eb37c4e91ccac6d12c798d394990ca4f56028ec2669060200160405180910390a16040518281527f32837ab65d8583d89ac1b66920de55975eb33cbc0fbf00f2123197ce3b62c63e90602001610761565b600260fb541415610ba35760405162461bcd60e51b815260040161065090612c52565b600260fb5560c95460ff1615610bcb5760405162461bcd60e51b815260040161065090612c89565b336001600160a01b0384161415610c3a5760405162461bcd60e51b815260206004820152602d60248201527f54726561737572654d61726b6574706c6163653a2043616e6e6f74206275792060448201526c796f7572206f776e206974656d60981b6064820152608401610650565b6000826001600160401b031611610c9f5760405162461bcd60e51b815260206004820152602360248201527f54726561737572654d61726b6574706c6163653a204e6f7468696e6720746f2060448201526262757960e81b6064820152608401610650565b6001600160a01b038086166000908152610130602090815260408083208884528252808320938716835292815290829020825160608101845290546001600160401b038082168084526001600160801b03600160401b84041694840194909452600160c01b9091041692810192909252610d2b5760405162461bcd60e51b815260040161065090612cb3565b4281604001516001600160401b03161015610d945760405162461bcd60e51b8152602060048201526024808201527f54726561737572654d61726b6574706c6163653a206c697374696e67206578706044820152631a5c995960e21b6064820152608401610650565b600081602001516001600160801b031611610e045760405162461bcd60e51b815260206004820152602a60248201527f54726561737572654d61726b6574706c6163653a206c697374696e672070726960448201526918d9481a5b9d985b1a5960b21b6064820152608401610650565b80516001600160401b0380851691161015610e725760405162461bcd60e51b815260206004820152602860248201527f54726561737572654d61726b6574706c6163653a206e6f7420656e6f756768206044820152677175616e7469747960c01b6064820152608401610650565b816001600160801b031681602001516001600160801b03161115610ee45760405162461bcd60e51b8152602060048201526024808201527f54726561737572654d61726b6574706c6163653a20707269636520696e637265604482015263185cd95960e21b6064820152608401610650565b60016001600160a01b0387166000908152610131602052604090205460ff166002811115610f1457610f14612b45565b1415610ff957826001600160401b0316600114610f8b5760405162461bcd60e51b815260206004820152602f60248201527f54726561737572654d61726b6574706c6163653a2043616e6e6f74206275792060448201526e6d756c7469706c652045524337323160881b6064820152608401610650565b604051632142170760e11b81526001600160a01b038581166004830152336024830152604482018790528716906342842e0e906064015b600060405180830381600087803b158015610fdc57600080fd5b505af1158015610ff0573d6000803e3d6000fd5b505050506110d6565b60026001600160a01b0387166000908152610131602052604090205460ff16600281111561102957611029612b45565b141561106f5760408051602081018252600081529051637921219560e11b81526001600160a01b0388169163f242432a91610fc291889133918b918a9190600401612d4f565b60405162461bcd60e51b815260206004820152603660248201527f54726561737572654d61726b6574706c6163653a20746f6b656e206973206e6f6044820152757420617070726f76656420666f722074726164696e6760501b6064820152608401610650565b6110eb81846001600160401b0316888761198b565b602081810151604080516001600160a01b038089168252339482019490945292891683820152606083018890526001600160401b03861660808401526001600160801b0390911660a0830152517f8f236686c9ab7948a1cc5985ed36b4de9780519f75380d5ea3ac498f9270e17f9181900360c00190a1826001600160401b031681600001516001600160401b031614156111b6576001600160a01b038087166000908152610130602090815260408083208984528252808320938816835292905290812055611224565b6001600160a01b038087166000908152610130602090815260408083208984528252808320938816835292905290812080548592906111ff9084906001600160401b0316612da7565b92506101000a8154816001600160401b0302191690836001600160401b031602179055505b5050600160fb5550505050565b600260fb5414156112545760405162461bcd60e51b815260040161065090612c52565b600260fb5560c95460ff161561127c5760405162461bcd60e51b815260040161065090612c89565b6001600160a01b03851660009081526101306020908152604080832087845282528083203384529091529020546001600160401b03161561130b5760405162461bcd60e51b815260206004820152602360248201527f54726561737572654d61726b6574706c6163653a20616c7265616479206c69736044820152621d195960ea1b6064820152608401610650565b6113188585858585611ac0565b7f83bf900e0d7defb9558918eb50503be072490d1437edf6aba38f0c5d940b0131335b604080516001600160a01b039283168152918816602083015281018690526001600160401b0380861660608301526001600160801b0385166080830152831660a082015260c00160405180910390a15050600160fb55505050565b6000805160206130048339815191526113af8133611850565b61083861206f565b60008281526097602052604081206113cf90836120c7565b9392505050565b60009182526065602090815260408084206001600160a01b0393909316845291905290205460ff1690565b600260fb5414156114245760405162461bcd60e51b815260040161065090612c52565b600260fb556001600160a01b0382166000818152610130602090815260408083208584528252808320338085529252808320839055518493927f9ba1a3cb55ce8d63d072a886f94d2a744f50cddf82128e897d0661f5ec62315891a45050600160fb55565b600054610100900460ff166114a45760005460ff16156114a8565b303b155b61150b5760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608401610650565b600054610100900460ff1615801561152d576000805461ffff19166101011790555b6001600160a01b0382166115965760405162461bcd60e51b815260206004820152602a60248201527f54726561737572654d61726b6574706c6163653a2063616e6e6f7420736574206044820152696164647265737328302960b01b6064820152608401610650565b61159e6120d3565b6115a66120fc565b6115ae61212f565b6115c66000805160206130048339815191528061215d565b6115de600080516020613004833981519152336118b4565b6115e88485610a98565b6115f183611733565b61012d80546001600160a01b0319166001600160a01b038416179055801561161f576000805461ff00191690555b50505050565b6000818152609760205260408120610568906121a8565b6000828152606560205260409020600101546116588133611850565b61079483836118d6565b600260fb5414156116855760405162461bcd60e51b815260040161065090612c52565b600260fb5560c95460ff16156116ad5760405162461bcd60e51b815260040161065090612c89565b6001600160a01b03851660009081526101306020908152604080832087845282528083203384529091529020546001600160401b03166116ff5760405162461bcd60e51b815260040161065090612cb3565b61170c8585858585611ac0565b7f99cef4217225de117fe8739e7620ea9ad6e284897615196f6013fcf54735d44e3361133b565b60008051602061300483398151915261174c8133611850565b6001600160a01b0382166117b65760405162461bcd60e51b815260206004820152602b60248201527f54726561737572654d61726b6574706c6163653a2063616e6e6f74207365742060448201526a307830206164647265737360a81b6064820152608401610650565b61012f80546001600160a01b0319166001600160a01b0384169081179091556040519081527f6632de8ab33c46549f7bb29f647ea0d751157b25fe6a14b1bcc7527cdfbeb79c9060200160405180910390a15050565b6001600160a01b03163b151590565b60006001600160e01b03198216637965db0b60e01b148061056857506301ffc9a760e01b6001600160e01b0319831614610568565b61185a82826113d6565b61081357611872816001600160a01b031660146121b2565b61187d8360206121b2565b60405160200161188e929190612dcf565b60408051601f198184030181529082905262461bcd60e51b825261065091600401612e44565b6118be828261234d565b600082815260976020526040902061079490826123d3565b6118e082826123e8565b6000828152609760205260409020610794908261244f565b60c95460ff166119415760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610650565b60c9805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b60008385602001516001600160801b03166119a69190612e57565b6001600160a01b03808516600090815261013360205260408120549293506401000000009092041690808215611a01575050610132546001600160a01b0385166000908152610133602052604090205463ffffffff16611a0a565b505061012e5460005b6000612710611a198487612e57565b611a239190612e76565b90506000612710611a348488612e57565b611a3e9190612e76565b90508115611a6657611a663361012f5461012d546001600160a01b0390811692911685612464565b8015611a8557611a853361012d546001600160a01b0316908784612464565b611ab4338883611a95868b612e98565b611a9f9190612e98565b61012d546001600160a01b0316929190612464565b50505050505050505050565b42816001600160401b031611611b2d5760405162461bcd60e51b815260206004820152602c60248201527f54726561737572654d61726b6574706c6163653a20696e76616c69642065787060448201526b69726174696f6e2074696d6560a01b6064820152608401610650565b633b9aca00826001600160801b03161015611b965760405162461bcd60e51b8152602060048201526024808201527f54726561737572654d61726b6574706c6163653a2062656c6f77206d696e20706044820152637269636560e01b6064820152608401610650565b60016001600160a01b0386166000908152610131602052604090205460ff166002811115611bc657611bc6612b45565b1415611daf5784336040516331a9108f60e11b8152600481018790526001600160a01b0391821691831690636352211e90602401602060405180830381865afa158015611c17573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c3b9190612eaf565b6001600160a01b031614611c9d5760405162461bcd60e51b8152602060048201526024808201527f54726561737572654d61726b6574706c6163653a206e6f74206f776e696e67206044820152636974656d60e01b6064820152608401610650565b6001600160a01b03811663e985e9c5336040516001600160e01b031960e084901b1681526001600160a01b039091166004820152306024820152604401602060405180830381865afa158015611cf7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d1b9190612c13565b611d375760405162461bcd60e51b815260040161065090612ecc565b836001600160401b0316600114611da95760405162461bcd60e51b815260206004820152603060248201527f54726561737572654d61726b6574706c6163653a2063616e6e6f74206c69737460448201526f206d756c7469706c652045524337323160801b6064820152608401610650565b50611fce565b60026001600160a01b0386166000908152610131602052604090205460ff166002811115611ddf57611ddf612b45565b141561106f57846001600160401b0384166001600160a01b03821662fdd58e336040516001600160e01b031960e084901b1681526001600160a01b03909116600482015260248101899052604401602060405180830381865afa158015611e4a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e6e9190612f12565b1015611ecf5760405162461bcd60e51b815260206004820152602a60248201527f54726561737572654d61726b6574706c6163653a206d75737420686f6c6420656044820152696e6f756768206e66747360b01b6064820152608401610650565b6001600160a01b03811663e985e9c5336040516001600160e01b031960e084901b1681526001600160a01b039091166004820152306024820152604401602060405180830381865afa158015611f29573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611f4d9190612c13565b611f695760405162461bcd60e51b815260040161065090612ecc565b6000846001600160401b031611611da95760405162461bcd60e51b8152602060048201526024808201527f54726561737572654d61726b6574706c6163653a206e6f7468696e6720746f206044820152631b1a5cdd60e21b6064820152608401610650565b604080516060810182526001600160401b0394851681526001600160801b0393841660208083019182529386168284019081526001600160a01b039890981660009081526101308552838120978152968452828720338852909352942093518454915195518416600160c01b026001600160c01b0396909316600160401b026001600160c01b03199092169316929092179190911792909216919091179055565b60c95460ff16156120925760405162461bcd60e51b815260040161065090612c89565b60c9805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861196e3390565b60006113cf83836124be565b600054610100900460ff166120fa5760405162461bcd60e51b815260040161065090612f2b565b565b600054610100900460ff166121235760405162461bcd60e51b815260040161065090612f2b565b60c9805460ff19169055565b600054610100900460ff166121565760405162461bcd60e51b815260040161065090612f2b565b600160fb55565b600082815260656020526040808220600101805490849055905190918391839186917fbd79b86ffe0ab8e8776151514217cd7cacd52c909f66475c3af44e129f0b00ff9190a4505050565b6000610568825490565b606060006121c1836002612e57565b6121cc906002612f76565b6001600160401b038111156121e3576121e3612f8e565b6040519080825280601f01601f19166020018201604052801561220d576020820181803683370190505b509050600360fc1b8160008151811061222857612228612fa4565b60200101906001600160f81b031916908160001a905350600f60fb1b8160018151811061225757612257612fa4565b60200101906001600160f81b031916908160001a905350600061227b846002612e57565b612286906001612f76565b90505b60018111156122fe576f181899199a1a9b1b9c1cb0b131b232b360811b85600f16601081106122ba576122ba612fa4565b1a60f81b8282815181106122d0576122d0612fa4565b60200101906001600160f81b031916908160001a90535060049490941c936122f781612fba565b9050612289565b5083156113cf5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610650565b61235782826113d6565b6108135760008281526065602090815260408083206001600160a01b03851684529091529020805460ff1916600117905561238f3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b60006113cf836001600160a01b0384166124e8565b6123f282826113d6565b156108135760008281526065602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b60006113cf836001600160a01b038416612537565b604080516001600160a01b0385811660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b17905261161f90859061262a565b60008260000182815481106124d5576124d5612fa4565b9060005260206000200154905092915050565b600081815260018301602052604081205461252f57508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610568565b506000610568565b6000818152600183016020526040812054801561262057600061255b600183612e98565b855490915060009061256f90600190612e98565b90508181146125d457600086600001828154811061258f5761258f612fa4565b90600052602060002001549050808760000184815481106125b2576125b2612fa4565b6000918252602080832090910192909255918252600188019052604090208390555b85548690806125e5576125e5612fd1565b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050610568565b6000915050610568565b600061267f826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166126fc9092919063ffffffff16565b805190915015610794578080602001905181019061269d9190612c13565b6107945760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610650565b606061270b8484600085612713565b949350505050565b6060824710156127745760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610650565b6001600160a01b0385163b6127cb5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610650565b600080866001600160a01b031685876040516127e79190612fe7565b60006040518083038185875af1925050503d8060008114612824576040519150601f19603f3d011682016040523d82523d6000602084013e612829565b606091505b5091509150612839828286612844565b979650505050505050565b606083156128535750816113cf565b8251156128635782518084602001fd5b8160405162461bcd60e51b81526004016106509190612e44565b60006020828403121561288f57600080fd5b81356001600160e01b0319811681146113cf57600080fd5b6001600160a01b038116811461083857600080fd5b60008082840360608112156128d057600080fd5b83356128db816128a7565b92506040601f19820112156128ef57600080fd5b506020830190509250929050565b60006020828403121561290f57600080fd5b5035919050565b6000806040838503121561292957600080fd5b82359150602083013561293b816128a7565b809150509250929050565b6000806040838503121561295957600080fd5b8235612964816128a7565b915060208301356003811061293b57600080fd5b6000806040838503121561298b57600080fd5b50508035926020909101359150565b80356001600160401b03811681146129b157600080fd5b919050565b80356001600160801b03811681146129b157600080fd5b600080600080600060a086880312156129e557600080fd5b85356129f0816128a7565b9450602086013593506040860135612a07816128a7565b9250612a156060870161299a565b9150612a23608087016129b6565b90509295509295909350565b600080600060608486031215612a4457600080fd5b8335612a4f816128a7565b9250602084013591506040840135612a66816128a7565b809150509250925092565b600080600080600060a08688031215612a8957600080fd5b8535612a94816128a7565b945060208601359350612aa96040870161299a565b9250612ab7606087016129b6565b9150612a236080870161299a565b60008060408385031215612ad857600080fd5b8235612ae3816128a7565b946020939093013593505050565b600080600060608486031215612b0657600080fd5b833592506020840135612b18816128a7565b91506040840135612a66816128a7565b600060208284031215612b3a57600080fd5b81356113cf816128a7565b634e487b7160e01b600052602160045260246000fd5b60038110612b7957634e487b7160e01b600052602160045260246000fd5b9052565b602081016105688284612b5b565b63ffffffff8116811461083857600080fd5b600060208284031215612baf57600080fd5b81356113cf81612b8b565b8135612bc581612b8b565b63ffffffff8116905081548163ffffffff1982161783556020840135612bea816128a7565b6001600160c01b03199190911690911760209190911b640100000000600160c01b031617905550565b600060208284031215612c2557600080fd5b815180151581146113cf57600080fd5b6001600160a01b0383168152604081016113cf6020830184612b5b565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b60208082526024908201527f54726561737572654d61726b6574706c6163653a206e6f74206c6973746564206040820152636974656d60e01b606082015260800190565b60005b83811015612d12578181015183820152602001612cfa565b8381111561161f5750506000910152565b60008151808452612d3b816020860160208601612cf7565b601f01601f19169290920160200192915050565b6001600160a01b03868116825285166020820152604081018490526001600160401b038316606082015260a06080820181905260009061283990830184612d23565b634e487b7160e01b600052601160045260246000fd5b60006001600160401b0383811690831681811015612dc757612dc7612d91565b039392505050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351612e07816017850160208801612cf7565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351612e38816028840160208801612cf7565b01602801949350505050565b6020815260006113cf6020830184612d23565b6000816000190483118215151615612e7157612e71612d91565b500290565b600082612e9357634e487b7160e01b600052601260045260246000fd5b500490565b600082821015612eaa57612eaa612d91565b500390565b600060208284031215612ec157600080fd5b81516113cf816128a7565b60208082526026908201527f54726561737572654d61726b6574706c6163653a206974656d206e6f742061706040820152651c1c9bdd995960d21b606082015260800190565b600060208284031215612f2457600080fd5b5051919050565b6020808252602b908201527f496e697469616c697a61626c653a20636f6e7472616374206973206e6f74206960408201526a6e697469616c697a696e6760a81b606082015260800190565b60008219821115612f8957612f89612d91565b500190565b634e487b7160e01b600052604160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b600081612fc957612fc9612d91565b506000190190565b634e487b7160e01b600052603160045260246000fd5b60008251612ff9818460208701612cf7565b919091019291505056fe34d5e892b0a7ec1561fc4a5fdcb31b798cf623590906b938d356c9619e539958a264697066735822122045fda8d2b6a03353b87cfcdd4b452bb9012ad1e3435bdc9b4fbc4444f4da8e0164736f6c634300080c0033
Loading...
Loading
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 34 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.