Feature Tip: Add private address tag to any address under My Name Tag !
ERC-1155
Overview
Max Total Supply
500
Holders
161
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Name:
NFTCollection
Compiler Version
v0.8.9+commit.e5eed63a
Optimization Enabled:
Yes with 800 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; // Base import "./openzeppelin-presets/ERC1155PresetMinterPauserSupplyHolder.sol"; // Token interfaces import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/interfaces/IERC165.sol"; // Meta transactions import "@openzeppelin/contracts/metatx/ERC2771Context.sol"; // Protocol control center. import { ProtocolControl } from "./ProtocolControl.sol"; // Royalties import "@openzeppelin/contracts/interfaces/IERC2981.sol"; // Utils import "@openzeppelin/contracts/utils/Multicall.sol"; contract NFTCollection is ERC1155PresetMinterPauserSupplyHolder, ERC2771Context, IERC2981, Multicall { uint128 private constant MAX_BPS = 10_000; /// @dev The protocol control center. ProtocolControl internal controlCenter; /// @dev Owner of the contract (purpose: OpenSea compatibility, etc.) address private _owner; /// @dev The token Id of the next token to be minted. uint256 public nextTokenId; /// @dev NFT sale royalties -- see EIP 2981 uint256 public royaltyBps; /// @dev Collection level metadata. string public _contractURI; /// @dev Only TRANSFER_ROLE holders can have tokens transferred from or to them, during restricted transfers. bytes32 public constant TRANSFER_ROLE = keccak256("TRANSFER_ROLE"); /// @dev Whether transfers on tokens are restricted. bool public transfersRestricted; /// @dev Whether the ERC 1155 token is a wrapped ERC 20 / 721 token. enum UnderlyingType { None, ERC20, ERC721 } /// @dev The state of a token. struct TokenState { address creator; string uri; UnderlyingType underlyingType; } /// @dev The state of the underlying ERC 721 token, if any. struct ERC721Wrapped { address source; uint256 tokenId; } /// @dev The state of the underlying ERC 20 token, if any. struct ERC20Wrapped { address source; uint256 shares; uint256 underlyingTokenAmount; } event RestrictedTransferUpdated(bool transferable); /// @dev Emitted when native ERC 1155 tokens are created. event NativeTokens(address indexed creator, uint256[] tokenIds, string[] tokenURIs, uint256[] tokenSupplies); /// @dev Emitted when ERC 721 wrapped as an ERC 1155 token is minted. event ERC721WrappedToken( address indexed creator, address indexed sourceOfUnderlying, uint256 tokenIdOfUnderlying, uint256 tokenId, string tokenURI ); /// @dev Emitted when an underlying ERC 721 token is redeemed. event ERC721Redeemed( address indexed redeemer, address indexed sourceOfUnderlying, uint256 tokenIdOfUnderlying, uint256 tokenId ); /// @dev Emitted when ERC 20 wrapped as an ERC 1155 token is minted. event ERC20WrappedToken( address indexed creator, address indexed sourceOfUnderlying, uint256 totalAmountOfUnderlying, uint256 shares, uint256 tokenId, string tokenURI ); /// @dev Emitted when an underlying ERC 20 token is redeemed. event ERC20Redeemed( address indexed redeemer, uint256 indexed tokenId, address indexed sourceOfUnderlying, uint256 tokenAmountReceived, uint256 sharesRedeemed ); /// @dev Emitted when the EIP 2981 royalty of the contract is updated. event RoyaltyUpdated(uint256 royaltyBps); /// @dev Emitted when a new Owner is set. event NewOwner(address prevOwner, address newOwner); /// @dev NFT tokenId => token state. mapping(uint256 => TokenState) public tokenState; /// @dev NFT tokenId => state of underlying ERC721 token. mapping(uint256 => ERC721Wrapped) public erc721WrappedTokens; /// @dev NFT tokenId => state of underlying ERC20 token. mapping(uint256 => ERC20Wrapped) public erc20WrappedTokens; modifier onlyModuleAdmin() { require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "only module admin role"); _; } /// @dev Checks whether the caller has MINTER_ROLE. modifier onlyMinterRole() { require( hasRole(MINTER_ROLE, _msgSender()), "NFTCollection: Only accounts with MINTER_ROLE can call this function." ); _; } constructor( address payable _controlCenter, address _trustedForwarder, string memory _uri, uint256 _royaltyBps ) ERC1155PresetMinterPauserSupplyHolder(_uri) ERC2771Context(_trustedForwarder) { // Set the protocol control center controlCenter = ProtocolControl(_controlCenter); // Set contract URI _contractURI = _uri; // Grant ownership and setup roles _owner = _msgSender(); _setupRole(TRANSFER_ROLE, _msgSender()); setRoyaltyBps(_royaltyBps); } /** * Public functions */ /** * @dev Returns the address of the current owner. */ /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return hasRole(DEFAULT_ADMIN_ROLE, _owner) ? _owner : address(0); } /// @notice Create native ERC 1155 NFTs. function createNativeTokens( address to, string[] calldata _nftURIs, uint256[] calldata _nftSupplies, bytes memory data ) public whenNotPaused onlyMinterRole returns (uint256[] memory nftIds) { require(_nftURIs.length == _nftSupplies.length, "NFTCollection: Must specify equal number of config values."); require(_nftURIs.length > 0, "NFTCollection: Must create at least one NFT."); // Get creator address tokenCreator = _msgSender(); // Get tokenIds. nftIds = new uint256[](_nftURIs.length); // Store token state for each token. uint256 id = nextTokenId; for (uint256 i = 0; i < _nftURIs.length; i++) { nftIds[i] = id; tokenState[id] = TokenState({ creator: tokenCreator, uri: _nftURIs[i], underlyingType: UnderlyingType.None }); id += 1; } // Update contract level tokenId. nextTokenId = id; // Mint NFTs to token creator. _mintBatch(to, nftIds, _nftSupplies, data); emit NativeTokens(tokenCreator, nftIds, _nftURIs, _nftSupplies); } /// @dev See {ERC1155Minter}. function mint( address to, uint256 id, uint256 amount, bytes memory data ) public virtual override { require(id < nextTokenId, "NFTCollection: cannot call this fn for creating new NFTs."); require( tokenState[id].underlyingType == UnderlyingType.None, "NFTCollection: cannot freely mint more of ERC20 or ERC721." ); super.mint(to, id, amount, data); } /// @dev See {ERC1155Minter}. function mintBatch( address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) public virtual override { bool validIds = true; bool validTokenType = true; for (uint256 i = 0; i < ids.length; ++i) { if (ids[i] >= nextTokenId && validIds) { validIds = false; } if (tokenState[ids[i]].underlyingType != UnderlyingType.None && validTokenType) { validTokenType = false; } } require(validIds, "NFTCollection: cannot call this fn for creating new NFTs."); require(validTokenType, "NFTCollection: cannot freely mint more of ERC20 or ERC721."); super.mintBatch(to, ids, amounts, data); } /** * External functions */ /// @dev Wraps an ERC721 NFT as an ERC1155 NFT. function wrapERC721( address _nftContract, uint256 _tokenId, string calldata _nftURI ) external whenNotPaused onlyMinterRole { require( IERC721(_nftContract).ownerOf(_tokenId) == _msgSender(), "NFTCollection: Only the owner of the NFT can wrap it." ); require( IERC721(_nftContract).getApproved(_tokenId) == address(this) || IERC721(_nftContract).isApprovedForAll(_msgSender(), address(this)), "NFTCollection: Must approve the contract to transfer the NFT." ); // Get token creator address tokenCreator = _msgSender(); // Get tokenId uint256 id = nextTokenId; nextTokenId += 1; // Transfer the NFT to this contract. IERC721(_nftContract).safeTransferFrom(tokenCreator, address(this), _tokenId); // Mint wrapped NFT to token creator. _mint(tokenCreator, id, 1, ""); // Store wrapped NFT state. tokenState[id] = TokenState({ creator: tokenCreator, uri: _nftURI, underlyingType: UnderlyingType.ERC721 }); // Map the native NFT tokenId to the underlying NFT erc721WrappedTokens[id] = ERC721Wrapped({ source: _nftContract, tokenId: _tokenId }); emit ERC721WrappedToken(tokenCreator, _nftContract, _tokenId, id, _nftURI); } /// @dev Lets a wrapped nft owner redeem the underlying ERC721 NFT. function redeemERC721(uint256 _nftId) external { // Get redeemer address redeemer = _msgSender(); require(balanceOf(redeemer, _nftId) > 0, "NFTCollection: Cannot redeem an NFT you do not own."); // Burn the native NFT token _burn(redeemer, _nftId, 1); // Transfer the NFT to redeemer IERC721(erc721WrappedTokens[_nftId].source).safeTransferFrom( address(this), redeemer, erc721WrappedTokens[_nftId].tokenId ); emit ERC721Redeemed(redeemer, erc721WrappedTokens[_nftId].source, erc721WrappedTokens[_nftId].tokenId, _nftId); } /// @dev Wraps ERC20 tokens as ERC1155 NFTs. function wrapERC20( address _tokenContract, uint256 _tokenAmount, uint256 _numOfNftsToMint, string calldata _nftURI ) external whenNotPaused onlyMinterRole { // Get creator address tokenCreator = _msgSender(); require( IERC20(_tokenContract).balanceOf(tokenCreator) >= _tokenAmount, "NFTCollection: Must own the amount of tokens being wrapped." ); require( IERC20(_tokenContract).allowance(tokenCreator, address(this)) >= _tokenAmount, "NFTCollection: Must approve this contract to transfer tokens." ); require( IERC20(_tokenContract).transferFrom(tokenCreator, address(this), _tokenAmount), "NFTCollection: Failed to transfer ERC20 tokens." ); // Get NFT tokenId uint256 id = nextTokenId; nextTokenId += 1; // Mint NFTs to token creator _mint(tokenCreator, id, _numOfNftsToMint, ""); tokenState[id] = TokenState({ creator: tokenCreator, uri: _nftURI, underlyingType: UnderlyingType.ERC20 }); erc20WrappedTokens[id] = ERC20Wrapped({ source: _tokenContract, shares: _numOfNftsToMint, underlyingTokenAmount: _tokenAmount }); emit ERC20WrappedToken(tokenCreator, _tokenContract, _tokenAmount, _numOfNftsToMint, id, _nftURI); } /// @dev Lets the nft owner redeem their ERC20 tokens. function redeemERC20(uint256 _nftId, uint256 _amount) external { // Get redeemer address redeemer = _msgSender(); require(balanceOf(redeemer, _nftId) >= _amount, "NFTCollection: Cannot redeem an NFT you do not own."); // Burn the native NFT token _burn(redeemer, _nftId, _amount); // Get the ERC20 token amount to distribute uint256 amountToDistribute = (erc20WrappedTokens[_nftId].underlyingTokenAmount * _amount) / erc20WrappedTokens[_nftId].shares; // Transfer the ERC20 tokens to redeemer require( IERC20(erc20WrappedTokens[_nftId].source).transfer(redeemer, amountToDistribute), "NFTCollection: Failed to transfer ERC20 tokens." ); emit ERC20Redeemed(redeemer, _nftId, erc20WrappedTokens[_nftId].source, amountToDistribute, _amount); } /** * External: setter functions */ /// @dev Lets a protocol admin update the royalties paid on pack sales. function setRoyaltyBps(uint256 _royaltyBps) public onlyModuleAdmin { require(_royaltyBps <= MAX_BPS, "NFTCollection: Invalid bps provided; must be less than 10,000."); royaltyBps = _royaltyBps; emit RoyaltyUpdated(_royaltyBps); } /// @dev Lets a module admin set a new owner for the contract. The new owner must be a module admin. function setOwner(address _newOwner) external onlyModuleAdmin { require(hasRole(DEFAULT_ADMIN_ROLE, _newOwner), "new owner not module admin."); address _prevOwner = _owner; _owner = _newOwner; emit NewOwner(_prevOwner, _newOwner); } /// @dev Sets contract URI for the storefront-level metadata of the contract. function setContractURI(string calldata _URI) external onlyModuleAdmin { _contractURI = _URI; } /// @dev Lets a protocol admin restrict token transfers. function setRestrictedTransfer(bool _restrictedTransfer) external onlyModuleAdmin { transfersRestricted = _restrictedTransfer; emit RestrictedTransferUpdated(_restrictedTransfer); } /** * Internal functions. */ /// @dev Runs on every transfer. function _beforeTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal override { super._beforeTokenTransfer(operator, from, to, ids, amounts, data); if (transfersRestricted && from != address(0) && to != address(0)) { require( hasRole(TRANSFER_ROLE, from) || hasRole(TRANSFER_ROLE, to), "NFTCollection: Transfers are restricted to or from TRANSFER_ROLE holders" ); } } /// @dev See EIP-2771 function _msgSender() internal view virtual override(Context, ERC2771Context) returns (address sender) { return ERC2771Context._msgSender(); } /// @dev See EIP-2771 function _msgData() internal view virtual override(Context, ERC2771Context) returns (bytes calldata) { return ERC2771Context._msgData(); } /** * Rest: view functions */ /// @dev See ERC 165 function supportsInterface(bytes4 interfaceId) public view virtual override(ERC1155PresetMinterPauserSupplyHolder, IERC165) returns (bool) { return super.supportsInterface(interfaceId) || interfaceId == type(IERC2981).interfaceId; } /// @dev See EIP 2918 function royaltyInfo(uint256, uint256 salePrice) external view virtual override returns (address receiver, uint256 royaltyAmount) { receiver = controlCenter.getRoyaltyTreasury(address(this)); royaltyAmount = (salePrice * royaltyBps) / MAX_BPS; } /// @dev See EIP 1155 function uri(uint256 _nftId) public view override returns (string memory) { return tokenState[_nftId].uri; } /// @dev Alternative function to return a token's URI function tokenURI(uint256 _nftId) public view returns (string memory) { return tokenState[_nftId].uri; } /// @dev Returns the URI for the storefront-level metadata of the contract. function contractURI() public view returns (string memory) { return _contractURI; } /// @dev Returns the creator of an NFT function creator(uint256 _nftId) external view returns (address) { return tokenState[_nftId].creator; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/access/AccessControlEnumerable.sol"; import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol"; import "@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Burnable.sol"; import "@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Pausable.sol"; import "@openzeppelin/contracts/utils/Context.sol"; /** * Changelog: * 1. implements ERC721Holder and ERC1155Holder * 2. implements totalSupply */ import "@openzeppelin/contracts/token/ERC721/utils/ERC721Holder.sol"; import "@openzeppelin/contracts/token/ERC1155/utils/ERC1155Holder.sol"; /** * @dev {ERC1155} token, including: * * - ability for holders to burn (destroy) their tokens * - a minter role that allows for token minting (creation) * - a pauser role that allows to stop all token transfers * * This contract uses {AccessControl} to lock permissioned functions using the * different roles - head to its documentation for details. * * The account that deploys the contract will be granted the minter and pauser * roles, as well as the default admin role, which will let it grant both minter * and pauser roles to other accounts. */ contract ERC1155PresetMinterPauserSupplyHolder is Context, AccessControlEnumerable, ERC1155Burnable, ERC1155Pausable, ERC721Holder, ERC1155Holder { bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE"); bytes32 public constant PAUSER_ROLE = keccak256("PAUSER_ROLE"); mapping(uint256 => uint256) private _totalSupply; /** * @dev Grants `DEFAULT_ADMIN_ROLE`, `MINTER_ROLE`, and `PAUSER_ROLE` to the account that * deploys the contract. */ constructor(string memory uri) ERC1155(uri) { _setupRole(DEFAULT_ADMIN_ROLE, _msgSender()); _setupRole(MINTER_ROLE, _msgSender()); _setupRole(PAUSER_ROLE, _msgSender()); } /** * @dev Total amount of tokens in with a given id. */ function totalSupply(uint256 id) public view virtual returns (uint256) { return _totalSupply[id]; } /** * @dev Creates `amount` new tokens for `to`, of token type `id`. * * See {ERC1155-_mint}. * * Requirements: * * - the caller must have the `MINTER_ROLE`. */ function mint( address to, uint256 id, uint256 amount, bytes memory data ) public virtual { require(hasRole(MINTER_ROLE, _msgSender()), "ERC1155PresetMinterPauser: must have minter role to mint"); _mint(to, id, amount, data); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] variant of {mint}. */ function mintBatch( address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) public virtual { require(hasRole(MINTER_ROLE, _msgSender()), "ERC1155PresetMinterPauser: must have minter role to mint"); _mintBatch(to, ids, amounts, data); } /** * @dev Pauses all token transfers. * * See {ERC1155Pausable} and {Pausable-_pause}. * * Requirements: * * - the caller must have the `PAUSER_ROLE`. */ function pause() public virtual { require(hasRole(PAUSER_ROLE, _msgSender()), "ERC1155PresetMinterPauser: must have pauser role to pause"); _pause(); } /** * @dev Unpauses all token transfers. * * See {ERC1155Pausable} and {Pausable-_unpause}. * * Requirements: * * - the caller must have the `PAUSER_ROLE`. */ function unpause() public virtual { require(hasRole(PAUSER_ROLE, _msgSender()), "ERC1155PresetMinterPauser: must have pauser role to unpause"); _unpause(); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(AccessControlEnumerable, ERC1155, ERC1155Receiver) returns (bool) { return super.supportsInterface(interfaceId); } /** * @dev See {ERC1155-_beforeTokenTransfer}. */ function _beforeTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual override(ERC1155, ERC1155Pausable) { super._beforeTokenTransfer(operator, from, to, ids, amounts, data); if (from == address(0)) { for (uint256 i = 0; i < ids.length; ++i) { _totalSupply[ids[i]] += amounts[i]; } } if (to == address(0)) { for (uint256 i = 0; i < ids.length; ++i) { _totalSupply[ids[i]] -= amounts[i]; } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @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 `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, 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 `sender` to `recipient` 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 sender, address recipient, 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 (interfaces/IERC165.sol) pragma solidity ^0.8.0; import "../utils/introspection/IERC165.sol";
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (metatx/ERC2771Context.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Context variant with ERC2771 support. */ abstract contract ERC2771Context is Context { address private _trustedForwarder; constructor(address trustedForwarder) { _trustedForwarder = trustedForwarder; } function isTrustedForwarder(address forwarder) public view virtual returns (bool) { return forwarder == _trustedForwarder; } function _msgSender() internal view virtual override returns (address sender) { if (isTrustedForwarder(msg.sender)) { // The assembly code is more direct than the Solidity version using `abi.decode`. assembly { sender := shr(96, calldataload(sub(calldatasize(), 20))) } } else { return super._msgSender(); } } function _msgData() internal view virtual override returns (bytes calldata) { if (isTrustedForwarder(msg.sender)) { return msg.data[:msg.data.length - 20]; } else { return super._msgData(); } } }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; // Access Control import "@openzeppelin/contracts/access/AccessControlEnumerable.sol"; import "@openzeppelin/contracts/proxy/utils/Initializable.sol"; import "@openzeppelin/contracts/utils/Multicall.sol"; // Registry import { Registry } from "./Registry.sol"; import { Royalty } from "./Royalty.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; contract ProtocolControl is AccessControlEnumerable, Multicall, Initializable { /// @dev Contract version string public constant version = "1"; /// @dev MAX_BPS for the contract: 10_000 == 100% uint256 public constant MAX_BPS = 10000; /// @dev The address interpreted as native token of the chain. address public constant NATIVE_TOKEN = 0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE; /// @dev Module ID => Module address. mapping(bytes32 => address) public modules; /// @dev Module type => Num of modules of that type. mapping(uint256 => uint256) public numOfModuleType; /// @dev module address => royalty address mapping(address => address) private moduleRoyalty; /// @dev The top level app registry. address public registry; /// @dev Deployer's treasury address public royaltyTreasury; /// @dev The Forwarder for this app's modules. address private _forwarder; /// @dev Contract level metadata. string public contractURI; /// @dev Events. event ModuleUpdated(bytes32 indexed moduleId, address indexed module); event TreasuryUpdated(address _newTreasury); event ForwarderUpdated(address _newForwarder); event FundsWithdrawn(address indexed to, address indexed currency, uint256 amount, uint256 fee); event EtherReceived(address from, uint256 amount); event RoyaltyTreasuryUpdated( address indexed protocolControlAddress, address indexed moduleAddress, address treasury ); /// @dev Check whether the caller is a protocol admin modifier onlyProtocolAdmin() { require( hasRole(DEFAULT_ADMIN_ROLE, msg.sender), "ProtocolControl: Only protocol admins can call this function." ); _; } constructor() initializer {} function initialize( address _registry, address _admin, string memory _uri ) external initializer { // Set contract URI contractURI = _uri; // Set top level ap registry registry = _registry; // Set default royalty treasury address royaltyTreasury = address(this); // Set access control roles _setupRole(DEFAULT_ADMIN_ROLE, _admin); } /// @dev Lets the contract receive ether. receive() external payable { emit EtherReceived(msg.sender, msg.value); } /// @dev Initialize treasury payment royalty splitting pool function setRoyaltyTreasury(address payable _treasury) external onlyProtocolAdmin { require(_isRoyaltyTreasuryValid(_treasury), "ProtocolControl: provider shares too low."); royaltyTreasury = _treasury; emit RoyaltyTreasuryUpdated(address(this), address(0), _treasury); } /// @dev _treasury must be PaymentSplitter compatible interface. function setModuleRoyaltyTreasury(address moduleAddress, address payable _treasury) external onlyProtocolAdmin { require(_isRoyaltyTreasuryValid(_treasury), "ProtocolControl: provider shares too low."); moduleRoyalty[moduleAddress] = _treasury; emit RoyaltyTreasuryUpdated(address(this), moduleAddress, _treasury); } /// @dev validate to make sure protocol provider (the registry) gets enough fees. function _isRoyaltyTreasuryValid(address payable _treasury) private view returns (bool) { // Get `Royalty` and `Registry` instances Royalty royalty = Royalty(_treasury); Registry _registry = Registry(registry); // Calculate the protocol provider's shares. uint256 royaltyRegistryShares = royalty.shares(_registry.treasury()); uint256 royaltyTotalShares = royalty.totalShares(); uint256 registryCutBps = (royaltyRegistryShares * MAX_BPS) / royaltyTotalShares; // 10 bps (0.10%) tolerance in case of precision loss // making sure registry treasury gets at least the fee's worth of shares. uint256 feeBpsTolerance = 10; return registryCutBps >= (_registry.getFeeBps(address(this)) - feeBpsTolerance); } /// @dev Returns the Royalty payment splitter for a particular module. function getRoyaltyTreasury(address moduleAddress) external view returns (address) { address moduleRoyaltyTreasury = moduleRoyalty[moduleAddress]; if (moduleRoyaltyTreasury == address(0)) { return royaltyTreasury; } return moduleRoyaltyTreasury; } /// @dev Lets a protocol admin add a module to the protocol. function addModule(address _newModuleAddress, uint256 _moduleType) external onlyProtocolAdmin returns (bytes32 moduleId) { // `moduleId` is collision resitant -- unique `_moduleType` and incrementing `numOfModuleType` moduleId = keccak256(abi.encodePacked(numOfModuleType[_moduleType], _moduleType)); numOfModuleType[_moduleType] += 1; modules[moduleId] = _newModuleAddress; emit ModuleUpdated(moduleId, _newModuleAddress); } /// @dev Lets a protocol admin change the address of a module of the protocol. function updateModule(bytes32 _moduleId, address _newModuleAddress) external onlyProtocolAdmin { require(modules[_moduleId] != address(0), "ProtocolControl: a module with this ID does not exist."); modules[_moduleId] = _newModuleAddress; emit ModuleUpdated(_moduleId, _newModuleAddress); } /// @dev Sets contract URI for the contract-level metadata of the contract. function setContractURI(string calldata _URI) external onlyProtocolAdmin { contractURI = _URI; } /// @dev Lets the admin set a new Forwarder address [NOTE: for off-chain convenience only.] function setForwarder(address forwarder) external onlyProtocolAdmin { _forwarder = forwarder; emit ForwarderUpdated(forwarder); } /// @dev Returns all addresses for a module type function getAllModulesOfType(uint256 _moduleType) external view returns (address[] memory allModules) { uint256 numOfModules = numOfModuleType[_moduleType]; allModules = new address[](numOfModules); for (uint256 i = 0; i < numOfModules; i += 1) { bytes32 moduleId = keccak256(abi.encodePacked(i, _moduleType)); allModules[i] = modules[moduleId]; } } /// @dev Returns the forwarder address stored on the contract. function getForwarder() public view returns (address) { if (_forwarder == address(0)) { return Registry(registry).forwarder(); } return _forwarder; } /// @dev Lets a protocol admin withdraw tokens from this contract. function withdrawFunds(address to, address currency) external onlyProtocolAdmin { Registry _registry = Registry(registry); IERC20 _currency = IERC20(currency); address registryTreasury = _registry.treasury(); uint256 amount; bool isNativeToken = _isNativeToken(address(_currency)); if (isNativeToken) { amount = address(this).balance; } else { amount = _currency.balanceOf(address(this)); } uint256 registryTreasuryFee = (amount * _registry.getFeeBps(address(this))) / MAX_BPS; amount -= registryTreasuryFee; bool transferSuccess; if (isNativeToken) { (transferSuccess, ) = payable(to).call{ value: amount }(""); require(transferSuccess, "failed to withdraw funds"); (transferSuccess, ) = payable(registryTreasury).call{ value: registryTreasuryFee }(""); require(transferSuccess, "failed to withdraw funds to registry"); emit FundsWithdrawn(to, currency, amount, registryTreasuryFee); } else { transferSuccess = _currency.transfer(to, amount); require(transferSuccess, "failed to transfer payment"); transferSuccess = _currency.transfer(registryTreasury, registryTreasuryFee); require(transferSuccess, "failed to transfer payment to registry"); emit FundsWithdrawn(to, currency, amount, registryTreasuryFee); } } /// @dev Checks whether an address is to be interpreted as the native token function _isNativeToken(address _toCheck) internal pure returns (bool) { return _toCheck == NATIVE_TOKEN || _toCheck == address(0); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (interfaces/IERC2981.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Interface for the NFT Royalty Standard */ interface IERC2981 is IERC165 { /** * @dev Called with the sale price to determine how much royalty is owed and to whom. * @param tokenId - the NFT asset queried for royalty information * @param salePrice - the sale price of the NFT asset specified by `tokenId` * @return receiver - address of who should be sent the royalty payment * @return royaltyAmount - the royalty payment amount for `salePrice` */ function royaltyInfo(uint256 tokenId, uint256 salePrice) external view returns (address receiver, uint256 royaltyAmount); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Multicall.sol) pragma solidity ^0.8.0; import "./Address.sol"; /** * @dev Provides a function to batch together multiple calls in a single external call. * * _Available since v4.1._ */ abstract contract Multicall { /** * @dev Receives and executes a batch of function calls on this contract. */ function multicall(bytes[] calldata data) external returns (bytes[] memory results) { results = new bytes[](data.length); for (uint256 i = 0; i < data.length; i++) { results[i] = Address.functionDelegateCall(address(this), data[i]); } return results; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/AccessControlEnumerable.sol) pragma solidity ^0.8.0; import "./IAccessControlEnumerable.sol"; import "./AccessControl.sol"; import "../utils/structs/EnumerableSet.sol"; /** * @dev Extension of {AccessControl} that allows enumerating the members of each role. */ abstract contract AccessControlEnumerable is IAccessControlEnumerable, AccessControl { using EnumerableSet for EnumerableSet.AddressSet; mapping(bytes32 => EnumerableSet.AddressSet) private _roleMembers; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControlEnumerable).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 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 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); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC1155/ERC1155.sol) pragma solidity ^0.8.0; import "./IERC1155.sol"; import "./IERC1155Receiver.sol"; import "./extensions/IERC1155MetadataURI.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of the basic standard multi-token. * See https://eips.ethereum.org/EIPS/eip-1155 * Originally based on code by Enjin: https://github.com/enjin/erc-1155 * * _Available since v3.1._ */ contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI { using Address for address; // Mapping from token ID to account balances mapping(uint256 => mapping(address => uint256)) private _balances; // Mapping from account to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json string private _uri; /** * @dev See {_setURI}. */ constructor(string memory uri_) { _setURI(uri_); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC1155).interfaceId || interfaceId == type(IERC1155MetadataURI).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC1155MetadataURI-uri}. * * This implementation returns the same URI for *all* token types. It relies * on the token type ID substitution mechanism * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP]. * * Clients calling this function must replace the `\{id\}` substring with the * actual token type ID. */ function uri(uint256) public view virtual override returns (string memory) { return _uri; } /** * @dev See {IERC1155-balanceOf}. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) public view virtual override returns (uint256) { require(account != address(0), "ERC1155: balance query for the zero address"); return _balances[id][account]; } /** * @dev See {IERC1155-balanceOfBatch}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch(address[] memory accounts, uint256[] memory ids) public view virtual override returns (uint256[] memory) { require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch"); uint256[] memory batchBalances = new uint256[](accounts.length); for (uint256 i = 0; i < accounts.length; ++i) { batchBalances[i] = balanceOf(accounts[i], ids[i]); } return batchBalances; } /** * @dev See {IERC1155-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC1155-isApprovedForAll}. */ function isApprovedForAll(address account, address operator) public view virtual override returns (bool) { return _operatorApprovals[account][operator]; } /** * @dev See {IERC1155-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes memory data ) public virtual override { require( from == _msgSender() || isApprovedForAll(from, _msgSender()), "ERC1155: caller is not owner nor approved" ); _safeTransferFrom(from, to, id, amount, data); } /** * @dev See {IERC1155-safeBatchTransferFrom}. */ function safeBatchTransferFrom( address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) public virtual override { require( from == _msgSender() || isApprovedForAll(from, _msgSender()), "ERC1155: transfer caller is not owner nor approved" ); _safeBatchTransferFrom(from, to, ids, amounts, data); } /** * @dev Transfers `amount` tokens of token type `id` from `from` to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - `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 memory data ) internal virtual { require(to != address(0), "ERC1155: transfer to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, to, _asSingletonArray(id), _asSingletonArray(amount), data); uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: insufficient balance for transfer"); unchecked { _balances[id][from] = fromBalance - amount; } _balances[id][to] += amount; emit TransferSingle(operator, from, to, id, amount); _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}. * * Emits a {TransferBatch} event. * * Requirements: * * - 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[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual { require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); require(to != address(0), "ERC1155: transfer to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, to, ids, amounts, data); for (uint256 i = 0; i < ids.length; ++i) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: insufficient balance for transfer"); unchecked { _balances[id][from] = fromBalance - amount; } _balances[id][to] += amount; } emit TransferBatch(operator, from, to, ids, amounts); _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data); } /** * @dev Sets a new URI for all token types, by relying on the token type ID * substitution mechanism * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP]. * * By this mechanism, any occurrence of the `\{id\}` substring in either the * URI or any of the amounts in the JSON file at said URI will be replaced by * clients with the token type ID. * * For example, the `https://token-cdn-domain/\{id\}.json` URI would be * interpreted by clients as * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json` * for token type ID 0x4cce0. * * See {uri}. * * Because these URIs cannot be meaningfully represented by the {URI} event, * this function emits no events. */ function _setURI(string memory newuri) internal virtual { _uri = newuri; } /** * @dev Creates `amount` tokens of token type `id`, and assigns them to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function _mint( address to, uint256 id, uint256 amount, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: mint to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, address(0), to, _asSingletonArray(id), _asSingletonArray(amount), data); _balances[id][to] += amount; emit TransferSingle(operator, address(0), to, id, amount); _doSafeTransferAcceptanceCheck(operator, address(0), to, id, amount, data); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}. * * 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 _mintBatch( address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: mint to the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, address(0), to, ids, amounts, data); for (uint256 i = 0; i < ids.length; i++) { _balances[ids[i]][to] += amounts[i]; } emit TransferBatch(operator, address(0), to, ids, amounts); _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data); } /** * @dev Destroys `amount` tokens of token type `id` from `from` * * Requirements: * * - `from` cannot be the zero address. * - `from` must have at least `amount` tokens of token type `id`. */ function _burn( address from, uint256 id, uint256 amount ) internal virtual { require(from != address(0), "ERC1155: burn from the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, address(0), _asSingletonArray(id), _asSingletonArray(amount), ""); uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][from] = fromBalance - amount; } emit TransferSingle(operator, from, address(0), id, amount); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}. * * Requirements: * * - `ids` and `amounts` must have the same length. */ function _burnBatch( address from, uint256[] memory ids, uint256[] memory amounts ) internal virtual { require(from != address(0), "ERC1155: burn from the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, address(0), ids, amounts, ""); for (uint256 i = 0; i < ids.length; i++) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][from] = fromBalance - amount; } } emit TransferBatch(operator, from, address(0), ids, amounts); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC1155: setting approval status for self"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Hook that is called before any token transfer. This includes minting * and burning, as well as batched variants. * * The same hook is called on both single and batched variants. For single * transfers, the length of the `id` and `amount` arrays will be 1. * * Calling conditions (for each `id` and `amount` pair): * * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens * of token type `id` will be transferred to `to`. * - When `from` is zero, `amount` tokens of token type `id` will be minted * for `to`. * - when `to` is zero, `amount` of ``from``'s tokens of token type `id` * will be burned. * - `from` and `to` are never both zero. * - `ids` and `amounts` have the same, non-zero length. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual {} function _doSafeTransferAcceptanceCheck( address operator, address from, address to, uint256 id, uint256 amount, bytes memory data ) private { if (to.isContract()) { try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) { if (response != IERC1155Receiver.onERC1155Received.selector) { revert("ERC1155: ERC1155Receiver rejected tokens"); } } catch Error(string memory reason) { revert(reason); } catch { revert("ERC1155: transfer to non ERC1155Receiver implementer"); } } } function _doSafeBatchTransferAcceptanceCheck( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) private { if (to.isContract()) { try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns ( bytes4 response ) { if (response != IERC1155Receiver.onERC1155BatchReceived.selector) { revert("ERC1155: ERC1155Receiver rejected tokens"); } } catch Error(string memory reason) { revert(reason); } catch { revert("ERC1155: transfer to non ERC1155Receiver implementer"); } } } function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) { uint256[] memory array = new uint256[](1); array[0] = element; return array; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/ERC1155Burnable.sol) pragma solidity ^0.8.0; import "../ERC1155.sol"; /** * @dev Extension of {ERC1155} that allows token holders to destroy both their * own tokens and those that they have been approved to use. * * _Available since v3.1._ */ abstract contract ERC1155Burnable is ERC1155 { function burn( address account, uint256 id, uint256 value ) public virtual { require( account == _msgSender() || isApprovedForAll(account, _msgSender()), "ERC1155: caller is not owner nor approved" ); _burn(account, id, value); } function burnBatch( address account, uint256[] memory ids, uint256[] memory values ) public virtual { require( account == _msgSender() || isApprovedForAll(account, _msgSender()), "ERC1155: caller is not owner nor approved" ); _burnBatch(account, ids, values); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/ERC1155Pausable.sol) pragma solidity ^0.8.0; import "../ERC1155.sol"; import "../../../security/Pausable.sol"; /** * @dev ERC1155 token with pausable token transfers, minting and burning. * * Useful for scenarios such as preventing trades until the end of an evaluation * period, or having an emergency switch for freezing all token transfers in the * event of a large bug. * * _Available since v3.1._ */ abstract contract ERC1155Pausable is ERC1155, Pausable { /** * @dev See {ERC1155-_beforeTokenTransfer}. * * Requirements: * * - the contract must not be paused. */ function _beforeTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual override { super._beforeTokenTransfer(operator, from, to, ids, amounts, data); require(!paused(), "ERC1155Pausable: token transfer while paused"); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/utils/ERC721Holder.sol) pragma solidity ^0.8.0; import "../IERC721Receiver.sol"; /** * @dev Implementation of the {IERC721Receiver} interface. * * Accepts all token transfers. * Make sure the contract is able to use its token with {IERC721-safeTransferFrom}, {IERC721-approve} or {IERC721-setApprovalForAll}. */ contract ERC721Holder is IERC721Receiver { /** * @dev See {IERC721Receiver-onERC721Received}. * * Always returns `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address, address, uint256, bytes memory ) public virtual override returns (bytes4) { return this.onERC721Received.selector; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC1155/utils/ERC1155Holder.sol) pragma solidity ^0.8.0; import "./ERC1155Receiver.sol"; /** * @dev _Available since v3.1._ */ contract ERC1155Holder is ERC1155Receiver { function onERC1155Received( address, address, uint256, uint256, bytes memory ) public virtual override returns (bytes4) { return this.onERC1155Received.selector; } function onERC1155BatchReceived( address, address, uint256[] memory, uint256[] memory, bytes memory ) public virtual override returns (bytes4) { return this.onERC1155BatchReceived.selector; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/IAccessControlEnumerable.sol) pragma solidity ^0.8.0; import "./IAccessControl.sol"; /** * @dev External interface of AccessControlEnumerable declared to support ERC165 detection. */ interface IAccessControlEnumerable is IAccessControl { /** * @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 v4.4.1 (access/AccessControl.sol) pragma solidity ^0.8.0; import "./IAccessControl.sol"; import "../utils/Context.sol"; import "../utils/Strings.sol"; import "../utils/introspection/ERC165.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 AccessControl is Context, IAccessControl, ERC165 { 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(IAccessControl).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view 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 { if (!hasRole(role, account)) { revert( string( abi.encodePacked( "AccessControl: account ", Strings.toHexString(uint160(account), 20), " is missing role ", Strings.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 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()); } } }
// 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 EnumerableSet { // 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 IAccessControl { /** * @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 Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// 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 IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC1155/IERC1155.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.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 IERC1155 is IERC165 { /** * @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/ERC1155/IERC1155Receiver.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev _Available since v3.1._ */ interface IERC1155Receiver is IERC165 { /** @dev Handles the receipt of a single ERC1155 token type. This function is called at the end of a `safeTransferFrom` after the balance has been updated. To accept the transfer, this must return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` (i.e. 0xf23a6e61, or its own function selector). @param operator The address which initiated the transfer (i.e. msg.sender) @param from The address which previously owned the token @param id The ID of the token being transferred @param value The amount of tokens being transferred @param data Additional data with no specified format @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed */ function onERC1155Received( address operator, address from, uint256 id, uint256 value, bytes calldata data ) external returns (bytes4); /** @dev Handles the receipt of a multiple ERC1155 token types. This function is called at the end of a `safeBatchTransferFrom` after the balances have been updated. To accept the transfer(s), this must return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` (i.e. 0xbc197c81, or its own function selector). @param operator The address which initiated the batch transfer (i.e. msg.sender) @param from The address which previously owned the token @param ids An array containing ids of each token being transferred (order and length must match values array) @param values An array containing amounts of each token being transferred (order and length must match ids array) @param data Additional data with no specified format @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed */ function onERC1155BatchReceived( address operator, address from, uint256[] calldata ids, uint256[] calldata values, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol) pragma solidity ^0.8.0; import "../IERC1155.sol"; /** * @dev Interface of the optional ERC1155MetadataExtension interface, as defined * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP]. * * _Available since v3.1._ */ interface IERC1155MetadataURI is IERC1155 { /** * @dev Returns the URI for token type `id`. * * If the `\{id\}` substring is present in the URI, it must be replaced by * clients with the actual token type ID. */ function uri(uint256 id) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Address.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/Pausable.sol) pragma solidity ^0.8.0; import "../utils/Context.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 Pausable is Context { /** * @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. */ constructor() { _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()); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC1155/utils/ERC1155Receiver.sol) pragma solidity ^0.8.0; import "../IERC1155Receiver.sol"; import "../../../utils/introspection/ERC165.sol"; /** * @dev _Available since v3.1._ */ abstract contract ERC1155Receiver is ERC165, IERC1155Receiver { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC1155Receiver).interfaceId || super.supportsInterface(interfaceId); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (proxy/utils/Initializable.sol) pragma solidity ^0.8.0; import "../../utils/Address.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 a proxied contract can't have 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 !Address.isContract(address(this)); } }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; // CREATE2 -- contract deployment. import "@openzeppelin/contracts/utils/Create2.sol"; // Access Control import "@openzeppelin/contracts/access/Ownable.sol"; // Protocol Components import { IControlDeployer } from "./interfaces/IControlDeployer.sol"; import { Forwarder } from "./Forwarder.sol"; import { ProtocolControl } from "./ProtocolControl.sol"; contract Registry is Ownable { uint256 public constant MAX_PROVIDER_FEE_BPS = 1000; // 10% uint256 public defaultFeeBps = 500; // 5% /// @dev service provider / admin treasury address public treasury; /// @dev `Forwarder` for meta-transactions address public forwarder; /// @dev The Create2 `ProtocolControl` contract factory. IControlDeployer public deployer; struct ProtocolControls { // E.g. if `latestVersion == 2`, there are 2 `ProtocolControl` contracts deployed. uint256 latestVersion; // Mapping from version => contract address. mapping(uint256 => address) protocolControlAddress; } /// @dev Mapping from app deployer => versions + app addresses. mapping(address => ProtocolControls) private _protocolControls; /// @dev Mapping from app (protocol control) => protocol provider fees for the app. mapping(address => uint256) private protocolControlFeeBps; /// @dev Emitted when the treasury is updated. event TreasuryUpdated(address newTreasury); /// @dev Emitted when a new deployer is set. event DeployerUpdated(address newDeployer); /// @dev Emitted when the default protocol provider fees bps is updated. event DefaultFeeBpsUpdated(uint256 defaultFeeBps); /// @dev Emitted when the protocol provider fees bps for a particular `ProtocolControl` is updated. event ProtocolControlFeeBpsUpdated(address indexed control, uint256 feeBps); /// @dev Emitted when an instance of `ProtocolControl` is migrated to this registry. event MigratedProtocolControl(address indexed deployer, uint256 indexed version, address indexed controlAddress); /// @dev Emitted when an instance of `ProtocolControl` is deployed. event NewProtocolControl( address indexed deployer, uint256 indexed version, address indexed controlAddress, address controlDeployer ); constructor( address _treasury, address _forwarder, address _deployer ) { treasury = _treasury; forwarder = _forwarder; deployer = IControlDeployer(_deployer); } /// @dev Deploys `ProtocolControl` with `_msgSender()` as admin. function deployProtocol(string memory uri) external { // Get deployer address caller = _msgSender(); // Get version for deployment uint256 version = getNextVersion(caller); // Deploy contract and get deployment address. address controlAddress = deployer.deployControl(version, caller, uri); _protocolControls[caller].protocolControlAddress[version] = controlAddress; emit NewProtocolControl(caller, version, controlAddress, address(deployer)); } /// @dev Returns the latest version of protocol control. function getProtocolControlCount(address _deployer) external view returns (uint256) { return _protocolControls[_deployer].latestVersion; } /// @dev Returns the protocol control address for the given version. function getProtocolControl(address _deployer, uint256 index) external view returns (address) { return _protocolControls[_deployer].protocolControlAddress[index]; } /// @dev Lets the owner migrate `ProtocolControl` instances from a previous registry. function addProtocolControl(address _deployer, address _protocolControl) external onlyOwner { // Get version for protocolControl uint256 version = getNextVersion(_deployer); _protocolControls[_deployer].protocolControlAddress[version] = _protocolControl; emit MigratedProtocolControl(_deployer, version, _protocolControl); } /// @dev Sets a new `ProtocolControl` deployer in case `ProtocolControl` is upgraded. function setDeployer(address _newDeployer) external onlyOwner { deployer = IControlDeployer(_newDeployer); emit DeployerUpdated(_newDeployer); } /// @dev Sets a new protocol provider treasury address. function setTreasury(address _newTreasury) external onlyOwner { treasury = _newTreasury; emit TreasuryUpdated(_newTreasury); } /// @dev Sets a new `defaultFeeBps` for protocol provider fees. function setDefaultFeeBps(uint256 _newFeeBps) external onlyOwner { require(_newFeeBps <= MAX_PROVIDER_FEE_BPS, "Registry: provider fee cannot be greater than 10%"); defaultFeeBps = _newFeeBps; emit DefaultFeeBpsUpdated(_newFeeBps); } /// @dev Sets the protocol provider fee for a particular instance of `ProtocolControl`. function setProtocolControlFeeBps(address protocolControl, uint256 _newFeeBps) external onlyOwner { require(_newFeeBps <= MAX_PROVIDER_FEE_BPS, "Registry: provider fee cannot be greater than 10%"); protocolControlFeeBps[protocolControl] = _newFeeBps; emit ProtocolControlFeeBpsUpdated(protocolControl, _newFeeBps); } /// @dev Returns the protocol provider fee for a particular instance of `ProtocolControl`. function getFeeBps(address protocolControl) external view returns (uint256) { uint256 fees = protocolControlFeeBps[protocolControl]; if (fees == 0) { return defaultFeeBps; } return fees; } /// @dev Returns the next version of `ProtocolControl` for the given `_deployer`. function getNextVersion(address _deployer) internal returns (uint256) { // Increment version _protocolControls[_deployer].latestVersion += 1; return _protocolControls[_deployer].latestVersion; } }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; // Base import "./openzeppelin-presets/finance/PaymentSplitter.sol"; // Meta transactions import "@openzeppelin/contracts/metatx/ERC2771Context.sol"; import "@openzeppelin/contracts/utils/Multicall.sol"; import "@openzeppelin/contracts/access/AccessControlEnumerable.sol"; import { Registry } from "./Registry.sol"; import { ProtocolControl } from "./ProtocolControl.sol"; /** * Royalty automatically adds protocol provider (the registry) of protocol control to the payees * and shares that represent the fees. */ contract Royalty is PaymentSplitter, AccessControlEnumerable, ERC2771Context, Multicall { /// @dev The protocol control center. ProtocolControl private controlCenter; /// @dev Contract level metadata. string private _contractURI; modifier onlyModuleAdmin() { require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "only module admin role"); _; } /// @dev shares_ are scaled by 10,000 to prevent precision loss when including fees constructor( address payable _controlCenter, address _trustedForwarder, string memory _uri, address[] memory payees, uint256[] memory shares_ ) PaymentSplitter() ERC2771Context(_trustedForwarder) { require(payees.length == shares_.length, "Royalty: unequal number of payees and shares provided."); require(payees.length > 0, "Royalty: no payees provided."); // Set contract metadata _contractURI = _uri; // Set the protocol's control center. controlCenter = ProtocolControl(_controlCenter); Registry registry = Registry(controlCenter.registry()); uint256 feeBps = registry.getFeeBps(_controlCenter); uint256 totalScaledShares = 0; uint256 totalScaledSharesMinusFee = 0; // Scaling the share, so we don't lose precision on division for (uint256 i = 0; i < payees.length; i++) { uint256 scaledShares = shares_[i] * 10000; totalScaledShares += scaledShares; uint256 feeFromScaledShares = (scaledShares * feeBps) / 10000; uint256 scaledSharesMinusFee = scaledShares - feeFromScaledShares; totalScaledSharesMinusFee += scaledSharesMinusFee; // WARNING: Do not call _addPayee outside of this constructor. _addPayee(payees[i], scaledSharesMinusFee); } // WARNING: Do not call _addPayee outside of this constructor. uint256 totalFeeShares = totalScaledShares - totalScaledSharesMinusFee; _addPayee(registry.treasury(), totalFeeShares); _setupRole(DEFAULT_ADMIN_ROLE, _msgSender()); } /// @dev See ERC2771 function _msgSender() internal view virtual override(Context, ERC2771Context) returns (address sender) { return ERC2771Context._msgSender(); } /// @dev See ERC2771 function _msgData() internal view virtual override(Context, ERC2771Context) returns (bytes calldata) { return ERC2771Context._msgData(); } /// @dev Sets contract URI for the contract-level metadata of the contract. function setContractURI(string calldata _URI) external onlyModuleAdmin { _contractURI = _URI; } /// @dev Returns the URI for the contract-level metadata of the contract. function contractURI() public view returns (string memory) { return _contractURI; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Create2.sol) pragma solidity ^0.8.0; /** * @dev Helper to make usage of the `CREATE2` EVM opcode easier and safer. * `CREATE2` can be used to compute in advance the address where a smart * contract will be deployed, which allows for interesting new mechanisms known * as 'counterfactual interactions'. * * See the https://eips.ethereum.org/EIPS/eip-1014#motivation[EIP] for more * information. */ library Create2 { /** * @dev Deploys a contract using `CREATE2`. The address where the contract * will be deployed can be known in advance via {computeAddress}. * * The bytecode for a contract can be obtained from Solidity with * `type(contractName).creationCode`. * * Requirements: * * - `bytecode` must not be empty. * - `salt` must have not been used for `bytecode` already. * - the factory must have a balance of at least `amount`. * - if `amount` is non-zero, `bytecode` must have a `payable` constructor. */ function deploy( uint256 amount, bytes32 salt, bytes memory bytecode ) internal returns (address) { address addr; require(address(this).balance >= amount, "Create2: insufficient balance"); require(bytecode.length != 0, "Create2: bytecode length is zero"); assembly { addr := create2(amount, add(bytecode, 0x20), mload(bytecode), salt) } require(addr != address(0), "Create2: Failed on deploy"); return addr; } /** * @dev Returns the address where a contract will be stored if deployed via {deploy}. Any change in the * `bytecodeHash` or `salt` will result in a new destination address. */ function computeAddress(bytes32 salt, bytes32 bytecodeHash) internal view returns (address) { return computeAddress(salt, bytecodeHash, address(this)); } /** * @dev Returns the address where a contract will be stored if deployed via {deploy} from a contract located at * `deployer`. If `deployer` is this contract's address, returns the same value as {computeAddress}. */ function computeAddress( bytes32 salt, bytes32 bytecodeHash, address deployer ) internal pure returns (address) { bytes32 _data = keccak256(abi.encodePacked(bytes1(0xff), deployer, salt, bytecodeHash)); return address(uint160(uint256(_data))); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.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 Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _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); } }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; interface IControlDeployer { /// @dev Emitted when an instance of `ProtocolControl` is deployed. event DeployedControl(address indexed registry, address indexed deployer, address indexed control); /// @dev Deploys an instance of `ProtocolControl` function deployControl( uint256 nonce, address deployer, string memory uri ) external returns (address); }
// SPDX-License-Identifier: Apache-2.0 pragma solidity ^0.8.0; import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import "@openzeppelin/contracts/utils/cryptography/draft-EIP712.sol"; /* * @dev Minimal forwarder for GSNv2 */ contract Forwarder is EIP712 { using ECDSA for bytes32; struct ForwardRequest { address from; address to; uint256 value; uint256 gas; uint256 nonce; bytes data; } bytes32 private constant TYPEHASH = keccak256("ForwardRequest(address from,address to,uint256 value,uint256 gas,uint256 nonce,bytes data)"); mapping(address => uint256) private _nonces; constructor() EIP712("GSNv2 Forwarder", "0.0.1") {} function getNonce(address from) public view returns (uint256) { return _nonces[from]; } function verify(ForwardRequest calldata req, bytes calldata signature) public view returns (bool) { address signer = _hashTypedDataV4( keccak256(abi.encode(TYPEHASH, req.from, req.to, req.value, req.gas, req.nonce, keccak256(req.data))) ).recover(signature); return _nonces[req.from] == req.nonce && signer == req.from; } function execute(ForwardRequest calldata req, bytes calldata signature) public payable returns (bool, bytes memory) { require(verify(req, signature), "MinimalForwarder: signature does not match request"); _nonces[req.from] = req.nonce + 1; // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory result) = req.to.call{ gas: req.gas, value: req.value }( abi.encodePacked(req.data, req.from) ); if (!success) { // Next 5 lines from https://ethereum.stackexchange.com/a/83577 if (result.length < 68) revert("Transaction reverted silently"); assembly { result := add(result, 0x04) } revert(abi.decode(result, (string))); } // Check gas: https://ronan.eth.link/blog/ethereum-gas-dangers/ assert(gasleft() > req.gas / 63); return (success, result); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/cryptography/ECDSA.sol) pragma solidity ^0.8.0; import "../Strings.sol"; /** * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations. * * These functions can be used to verify that a message was signed by the holder * of the private keys of a given address. */ library ECDSA { enum RecoverError { NoError, InvalidSignature, InvalidSignatureLength, InvalidSignatureS, InvalidSignatureV } function _throwError(RecoverError error) private pure { if (error == RecoverError.NoError) { return; // no error: do nothing } else if (error == RecoverError.InvalidSignature) { revert("ECDSA: invalid signature"); } else if (error == RecoverError.InvalidSignatureLength) { revert("ECDSA: invalid signature length"); } else if (error == RecoverError.InvalidSignatureS) { revert("ECDSA: invalid signature 's' value"); } else if (error == RecoverError.InvalidSignatureV) { revert("ECDSA: invalid signature 'v' value"); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature` or error string. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. * * Documentation for signature generation: * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js] * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) { // Check the signature length // - case 65: r,s,v signature (standard) // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._ if (signature.length == 65) { bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return tryRecover(hash, v, r, s); } else if (signature.length == 64) { bytes32 r; bytes32 vs; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) vs := mload(add(signature, 0x40)) } return tryRecover(hash, r, vs); } else { return (address(0), RecoverError.InvalidSignatureLength); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, signature); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately. * * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures] * * _Available since v4.3._ */ function tryRecover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address, RecoverError) { bytes32 s; uint8 v; assembly { s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) v := add(shr(255, vs), 27) } return tryRecover(hash, v, r, s); } /** * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately. * * _Available since v4.2._ */ function recover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, r, vs); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `v`, * `r` and `s` signature fields separately. * * _Available since v4.3._ */ function tryRecover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address, RecoverError) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) { return (address(0), RecoverError.InvalidSignatureS); } if (v != 27 && v != 28) { return (address(0), RecoverError.InvalidSignatureV); } // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); if (signer == address(0)) { return (address(0), RecoverError.InvalidSignature); } return (signer, RecoverError.NoError); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, * `r` and `s` signature fields separately. */ function recover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, v, r, s); _throwError(error); return recovered; } /** * @dev Returns an Ethereum Signed Message, created from a `hash`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) { // 32 is the length in bytes of hash, // enforced by the type signature above return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)); } /** * @dev Returns an Ethereum Signed Message, created from `s`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s)); } /** * @dev Returns an Ethereum Signed Typed Data, created from a * `domainSeparator` and a `structHash`. This produces hash corresponding * to the one signed with the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] * JSON-RPC method as part of EIP-712. * * See {recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash)); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/cryptography/draft-EIP712.sol) pragma solidity ^0.8.0; import "./ECDSA.sol"; /** * @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data. * * The encoding specified in the EIP is very generic, and such a generic implementation in Solidity is not feasible, * thus this contract does not implement the encoding itself. Protocols need to implement the type-specific encoding * they need in their contracts using a combination of `abi.encode` and `keccak256`. * * This contract implements the EIP 712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding * scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA * ({_hashTypedDataV4}). * * The implementation of the domain separator was designed to be as efficient as possible while still properly updating * the chain id to protect against replay attacks on an eventual fork of the chain. * * NOTE: This contract implements the version of the encoding known as "v4", as implemented by the JSON RPC method * https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask]. * * _Available since v3.4._ */ abstract contract EIP712 { /* solhint-disable var-name-mixedcase */ // Cache the domain separator as an immutable value, but also store the chain id that it corresponds to, in order to // invalidate the cached domain separator if the chain id changes. bytes32 private immutable _CACHED_DOMAIN_SEPARATOR; uint256 private immutable _CACHED_CHAIN_ID; address private immutable _CACHED_THIS; bytes32 private immutable _HASHED_NAME; bytes32 private immutable _HASHED_VERSION; bytes32 private immutable _TYPE_HASH; /* solhint-enable var-name-mixedcase */ /** * @dev Initializes the domain separator and parameter caches. * * The meaning of `name` and `version` is specified in * https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]: * * - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol. * - `version`: the current major version of the signing domain. * * NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart * contract upgrade]. */ constructor(string memory name, string memory version) { bytes32 hashedName = keccak256(bytes(name)); bytes32 hashedVersion = keccak256(bytes(version)); bytes32 typeHash = keccak256( "EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)" ); _HASHED_NAME = hashedName; _HASHED_VERSION = hashedVersion; _CACHED_CHAIN_ID = block.chainid; _CACHED_DOMAIN_SEPARATOR = _buildDomainSeparator(typeHash, hashedName, hashedVersion); _CACHED_THIS = address(this); _TYPE_HASH = typeHash; } /** * @dev Returns the domain separator for the current chain. */ function _domainSeparatorV4() internal view returns (bytes32) { if (address(this) == _CACHED_THIS && block.chainid == _CACHED_CHAIN_ID) { return _CACHED_DOMAIN_SEPARATOR; } else { return _buildDomainSeparator(_TYPE_HASH, _HASHED_NAME, _HASHED_VERSION); } } function _buildDomainSeparator( bytes32 typeHash, bytes32 nameHash, bytes32 versionHash ) private view returns (bytes32) { return keccak256(abi.encode(typeHash, nameHash, versionHash, block.chainid, address(this))); } /** * @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this * function returns the hash of the fully encoded EIP712 message for this domain. * * This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example: * * ```solidity * bytes32 digest = _hashTypedDataV4(keccak256(abi.encode( * keccak256("Mail(address to,string contents)"), * mailTo, * keccak256(bytes(mailContents)) * ))); * address signer = ECDSA.recover(digest, signature); * ``` */ function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) { return ECDSA.toTypedDataHash(_domainSeparatorV4(), structHash); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "@openzeppelin/contracts/utils/Context.sol"; /** * Changelog: * 1. Remove add payees and shares in the constructor, so inherited class is responsible for adding. * 2. Change _addPayee(...) visibility to internal. DANGEROUS: Make sure it is not called outside from constructor * initialization. * 3. Add distribute(...) to distribute all owed amount to all payees. * 4. Add payeeCount() view to returns the number of payees. */ /** * @title PaymentSplitter * @dev This contract allows to split Ether payments among a group of accounts. The sender does not need to be aware * that the Ether will be split in this way, since it is handled transparently by the contract. * * The split can be in equal parts or in any other arbitrary proportion. The way this is specified is by assigning each * account to a number of shares. Of all the Ether that this contract receives, each account will then be able to claim * an amount proportional to the percentage of total shares they were assigned. * * `PaymentSplitter` follows a _pull payment_ model. This means that payments are not automatically forwarded to the * accounts but kept in this contract, and the actual transfer is triggered as a separate step by calling the {release} * function. * * NOTE: This contract assumes that ERC20 tokens will behave similarly to native tokens (Ether). Rebasing tokens, and * tokens that apply fees during transfers, are likely to not be supported as expected. If in doubt, we encourage you * to run tests before sending real value to this contract. */ contract PaymentSplitter is Context { event PayeeAdded(address account, uint256 shares); event PaymentReleased(address to, uint256 amount); event ERC20PaymentReleased(IERC20 indexed token, address to, uint256 amount); event PaymentReceived(address from, uint256 amount); uint256 private _totalShares; uint256 private _totalReleased; mapping(address => uint256) private _shares; mapping(address => uint256) private _released; address[] private _payees; mapping(IERC20 => uint256) private _erc20TotalReleased; mapping(IERC20 => mapping(address => uint256)) private _erc20Released; /** * @dev Creates an instance of `PaymentSplitter` where each account in `payees` is assigned the number of shares at * the matching position in the `shares` array. * * All addresses in `payees` must be non-zero. Both arrays must have the same non-zero length, and there must be no * duplicates in `payees`. */ constructor() payable {} /** * @dev The Ether received will be logged with {PaymentReceived} events. Note that these events are not fully * reliable: it's possible for a contract to receive Ether without triggering this function. This only affects the * reliability of the events, and not the actual splitting of Ether. * * To learn more about this see the Solidity documentation for * https://solidity.readthedocs.io/en/latest/contracts.html#fallback-function[fallback * functions]. */ receive() external payable virtual { emit PaymentReceived(_msgSender(), msg.value); } /** * @dev Getter for the total shares held by payees. */ function totalShares() public view returns (uint256) { return _totalShares; } /** * @dev Getter for the total amount of Ether already released. */ function totalReleased() public view returns (uint256) { return _totalReleased; } /** * @dev Getter for the total amount of `token` already released. `token` should be the address of an IERC20 * contract. */ function totalReleased(IERC20 token) public view returns (uint256) { return _erc20TotalReleased[token]; } /** * @dev Getter for the amount of shares held by an account. */ function shares(address account) public view returns (uint256) { return _shares[account]; } /** * @dev Getter for the amount of Ether already released to a payee. */ function released(address account) public view returns (uint256) { return _released[account]; } /** * @dev Getter for the amount of `token` tokens already released to a payee. `token` should be the address of an * IERC20 contract. */ function released(IERC20 token, address account) public view returns (uint256) { return _erc20Released[token][account]; } /** * @dev Getter for the address of the payee number `index`. */ function payee(uint256 index) public view returns (address) { return _payees[index]; } /** * @dev Getter for getting the number of payee */ function payeeCount() public view returns (uint256) { return _payees.length; } /** * @dev Triggers a transfer to `account` of the amount of Ether they are owed, according to their percentage of the * total shares and their previous withdrawals. */ function release(address payable account) public virtual { require(_shares[account] > 0, "PaymentSplitter: account has no shares"); uint256 totalReceived = address(this).balance + totalReleased(); uint256 payment = _pendingPayment(account, totalReceived, released(account)); require(payment != 0, "PaymentSplitter: account is not due payment"); _released[account] += payment; _totalReleased += payment; Address.sendValue(account, payment); emit PaymentReleased(account, payment); } /** * @dev Triggers a transfer to `account` of the amount of `token` tokens they are owed, according to their * percentage of the total shares and their previous withdrawals. `token` must be the address of an IERC20 * contract. */ function release(IERC20 token, address account) public virtual { require(_shares[account] > 0, "PaymentSplitter: account has no shares"); uint256 totalReceived = token.balanceOf(address(this)) + totalReleased(token); uint256 payment = _pendingPayment(account, totalReceived, released(token, account)); require(payment != 0, "PaymentSplitter: account is not due payment"); _erc20Released[token][account] += payment; _erc20TotalReleased[token] += payment; SafeERC20.safeTransfer(token, account, payment); emit ERC20PaymentReleased(token, account, payment); } /** * @dev Release the owed amount of token to all of the payees. */ function distribute() public virtual { for (uint256 i = 0; i < _payees.length; i++) { release(payable(_payees[i])); } } /** * @dev Release owed amount of the `token` to all of the payees. */ function distribute(IERC20 token) public virtual { for (uint256 i = 0; i < _payees.length; i++) { release(token, _payees[i]); } } /** * @dev internal logic for computing the pending payment of an `account` given the token historical balances and * already released amounts. */ function _pendingPayment( address account, uint256 totalReceived, uint256 alreadyReleased ) private view returns (uint256) { return (totalReceived * _shares[account]) / _totalShares - alreadyReleased; } /** * @dev Add a new payee to the contract. * @param account The address of the payee to add. * @param shares_ The number of shares owned by the payee. */ function _addPayee(address account, uint256 shares_) internal { require(account != address(0), "PaymentSplitter: account is the zero address"); require(shares_ > 0, "PaymentSplitter: shares are 0"); require(_shares[account] == 0, "PaymentSplitter: account already has shares"); _payees.push(account); _shares[account] = shares_; _totalShares = _totalShares + shares_; emit PayeeAdded(account, shares_); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; import "../../../utils/Address.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 SafeERC20 { using Address for address; function safeTransfer( IERC20 token, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom( IERC20 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( IERC20 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( IERC20 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( IERC20 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(IERC20 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"); } } }
{ "metadata": { "bytecodeHash": "none" }, "optimizer": { "enabled": true, "runs": 800 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address payable","name":"_controlCenter","type":"address"},{"internalType":"address","name":"_trustedForwarder","type":"address"},{"internalType":"string","name":"_uri","type":"string"},{"internalType":"uint256","name":"_royaltyBps","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"redeemer","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"sourceOfUnderlying","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenAmountReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"sharesRedeemed","type":"uint256"}],"name":"ERC20Redeemed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"creator","type":"address"},{"indexed":true,"internalType":"address","name":"sourceOfUnderlying","type":"address"},{"indexed":false,"internalType":"uint256","name":"totalAmountOfUnderlying","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"string","name":"tokenURI","type":"string"}],"name":"ERC20WrappedToken","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"redeemer","type":"address"},{"indexed":true,"internalType":"address","name":"sourceOfUnderlying","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenIdOfUnderlying","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ERC721Redeemed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"creator","type":"address"},{"indexed":true,"internalType":"address","name":"sourceOfUnderlying","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenIdOfUnderlying","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"string","name":"tokenURI","type":"string"}],"name":"ERC721WrappedToken","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"creator","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"},{"indexed":false,"internalType":"string[]","name":"tokenURIs","type":"string[]"},{"indexed":false,"internalType":"uint256[]","name":"tokenSupplies","type":"uint256[]"}],"name":"NativeTokens","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"prevOwner","type":"address"},{"indexed":false,"internalType":"address","name":"newOwner","type":"address"}],"name":"NewOwner","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"transferable","type":"bool"}],"name":"RestrictedTransferUpdated","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":"uint256","name":"royaltyBps","type":"uint256"}],"name":"RoyaltyUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAUSER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TRANSFER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"burnBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"string[]","name":"_nftURIs","type":"string[]"},{"internalType":"uint256[]","name":"_nftSupplies","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"createNativeTokens","outputs":[{"internalType":"uint256[]","name":"nftIds","type":"uint256[]"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_nftId","type":"uint256"}],"name":"creator","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"erc20WrappedTokens","outputs":[{"internalType":"address","name":"source","type":"address"},{"internalType":"uint256","name":"shares","type":"uint256"},{"internalType":"uint256","name":"underlyingTokenAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"erc721WrappedTokens","outputs":[{"internalType":"address","name":"source","type":"address"},{"internalType":"uint256","name":"tokenId","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":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"forwarder","type":"address"}],"name":"isTrustedForwarder","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"mintBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes[]","name":"data","type":"bytes[]"}],"name":"multicall","outputs":[{"internalType":"bytes[]","name":"results","type":"bytes[]"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"nextTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256[]","name":"","type":"uint256[]"},{"internalType":"uint256[]","name":"","type":"uint256[]"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC1155BatchReceived","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC1155Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC721Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_nftId","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"redeemERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_nftId","type":"uint256"}],"name":"redeemERC721","outputs":[],"stateMutability":"nonpayable","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":[],"name":"royaltyBps","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_URI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newOwner","type":"address"}],"name":"setOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_restrictedTransfer","type":"bool"}],"name":"setRestrictedTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_royaltyBps","type":"uint256"}],"name":"setRoyaltyBps","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":"uint256","name":"","type":"uint256"}],"name":"tokenState","outputs":[{"internalType":"address","name":"creator","type":"address"},{"internalType":"string","name":"uri","type":"string"},{"internalType":"enum NFTCollection.UnderlyingType","name":"underlyingType","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_nftId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"transfersRestricted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_nftId","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenContract","type":"address"},{"internalType":"uint256","name":"_tokenAmount","type":"uint256"},{"internalType":"uint256","name":"_numOfNftsToMint","type":"uint256"},{"internalType":"string","name":"_nftURI","type":"string"}],"name":"wrapERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_nftContract","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"string","name":"_nftURI","type":"string"}],"name":"wrapERC721","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b50604051620060e8380380620060e883398101604081905262000034916200054d565b828280620000428162000175565b506005805460ff191690556200006360006200005d6200018e565b620001aa565b620000927f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66200005d6200018e565b620000c17f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a6200005d6200018e565b50600780546001600160a01b03199081166001600160a01b03938416179091556008805490911691861691909117905581516200010690600c90602085019062000478565b50620001116200018e565b600980546001600160a01b0319166001600160a01b0392909216919091179055620001607f8502233096d909befbda0999bb8ea2f3a6be3c138b9fbf003752a4c8bce86f6c6200005d6200018e565b6200016b81620001b6565b505050506200069a565b80516200018a90600490602084019062000478565b5050565b6000620001a5620002d360201b62002d191760201c565b905090565b6200018a82826200030c565b620001cc6000620001c66200018e565b6200034f565b6200021e5760405162461bcd60e51b815260206004820152601660248201527f6f6e6c79206d6f64756c652061646d696e20726f6c650000000000000000000060448201526064015b60405180910390fd5b612710811115620002985760405162461bcd60e51b815260206004820152603e60248201527f4e4654436f6c6c656374696f6e3a20496e76616c6964206270732070726f766960448201527f6465643b206d757374206265206c657373207468616e2031302c3030302e0000606482015260840162000215565b600b8190556040518181527f244ea8d7627f5a08f4299862bd5a45752842c183aee5b0fb0d1e4887bfa605b39060200160405180910390a150565b6007546000906001600160a01b0316331415620002f7575060131936013560601c90565b620001a56200037a60201b62002d441760201c565b6200032382826200037e60201b62002d481760201c565b60008281526001602090815260409091206200034a91839062002de762000408821b17901c565b505050565b6000828152602081815260408083206001600160a01b038516845290915290205460ff165b92915050565b3390565b6200038a82826200034f565b6200018a576000828152602081815260408083206001600160a01b03851684529091529020805460ff19166001179055620003c46200018e565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b60006200041f836001600160a01b03841662000426565b9392505050565b60008181526001830160205260408120546200046f5750815460018181018455600084815260208082209093018490558454848252828601909352604090209190915562000374565b50600062000374565b82805462000486906200065d565b90600052602060002090601f016020900481019282620004aa5760008555620004f5565b82601f10620004c557805160ff1916838001178555620004f5565b82800160010185558215620004f5579182015b82811115620004f5578251825591602001919060010190620004d8565b506200050392915062000507565b5090565b5b8082111562000503576000815560010162000508565b6001600160a01b03811681146200053457600080fd5b50565b634e487b7160e01b600052604160045260246000fd5b600080600080608085870312156200056457600080fd5b845162000571816200051e565b8094505060208086015162000586816200051e565b60408701519094506001600160401b0380821115620005a457600080fd5b818801915088601f830112620005b957600080fd5b815181811115620005ce57620005ce62000537565b604051601f8201601f19908116603f01168101908382118183101715620005f957620005f962000537565b816040528281528b868487010111156200061257600080fd5b600093505b8284101562000636578484018601518185018701529285019262000617565b82841115620006485760008684830101525b60609a909a0151989b979a5050505050505050565b600181811c908216806200067257607f821691505b602082108114156200069457634e487b7160e01b600052602260045260246000fd5b50919050565b615a3e80620006aa6000396000f3fe608060405234801561001057600080fd5b50600436106103565760003560e01c80638456cb59116101c8578063c0e7274011610104578063e63ab1e9116100a2578063f23a6e611161007c578063f23a6e611461087f578063f242432a1461089e578063f5298aca146108b1578063fafdcc88146108c457600080fd5b8063e63ab1e914610814578063e8a3d4851461083b578063e985e9c51461084357600080fd5b8063ca15c873116100de578063ca15c873146107b4578063d5391393146107c7578063d547741f146107ee578063db884b0c1461080157600080fd5b8063c0e72740146107a3578063c63adb2b146107ab578063c87b56dd146103b957600080fd5b806393b778d411610171578063a22cb4651161014b578063a22cb46514610731578063ac9650d814610744578063bc197c8114610764578063bd85b0391461078357600080fd5b806393b778d4146106f45780639745cc3d14610707578063a217fddf1461072957600080fd5b80639010d07c116101a25780639010d07c1461069757806391d14854146106aa578063938e3d7b146106e157600080fd5b80638456cb59146106745780638ba448c21461067c5780638da5cb5b1461068f57600080fd5b806336568abe116102975780635c975abb11610240578063731133e91161021a578063731133e91461063857806375794a3c1461064b5780637a61080b146106545780638423df791461066757600080fd5b80635c975abb146105bc5780635cd9913d146105c75780636b20c4541461062557600080fd5b80634e1273f4116102715780634e1273f414610539578063510b515814610559578063572b6c051461059a57600080fd5b806336568abe146104eb578063367a182b146104fe5780633f4ba83a1461053157600080fd5b80631f72d83111610304578063248a9ca3116102de578063248a9ca3146104705780632a55205a146104935780632eb2c2d6146104c55780632f2ff15d146104d857600080fd5b80631f72d831146104235780631f7fdffa14610436578063206b60f91461044957600080fd5b80630e89341c116103355780630e89341c146103b957806313af4035146103d9578063150b7a02146103ec57600080fd5b8062fdd58e1461035b57806301ffc9a714610381578063090a3282146103a4575b600080fd5b61036e610369366004614a20565b6108d7565b6040519081526020015b60405180910390f35b61039461038f366004614a62565b610985565b6040519015158152602001610378565b6103b76103b2366004614ac8565b6109b0565b005b6103cc6103c7366004614b24565b610f3e565b6040516103789190614b95565b6103b76103e7366004614ba8565b610fe3565b61040a6103fa366004614c7c565b630a85bd0160e11b949350505050565b6040516001600160e01b03199091168152602001610378565b6103b7610431366004614b24565b61111d565b6103b7610444366004614d7d565b611223565b61036e7f8502233096d909befbda0999bb8ea2f3a6be3c138b9fbf003752a4c8bce86f6c81565b61036e61047e366004614b24565b60009081526020819052604090206001015490565b6104a66104a1366004614e0c565b6113d4565b604080516001600160a01b039093168352602083019190915201610378565b6103b76104d3366004614e2e565b61147b565b6103b76104e6366004614edc565b61152f565b6103b76104f9366004614edc565b611561565b6104a661050c366004614b24565b600f60205260009081526040902080546001909101546001600160a01b039091169082565b6103b76115fd565b61054c610547366004614f0c565b6116a5565b6040516103789190615014565b610582610567366004614b24565b6000908152600e60205260409020546001600160a01b031690565b6040516001600160a01b039091168152602001610378565b6103946105a8366004614ba8565b6007546001600160a01b0391821691161490565b60055460ff16610394565b6106006105d5366004614b24565b6010602052600090815260409020805460018201546002909201546001600160a01b03909116919083565b604080516001600160a01b039094168452602084019290925290820152606001610378565b6103b7610633366004615027565b6117e3565b6103b761064636600461509d565b61187a565b61036e600a5481565b6103b7610662366004614e0c565b61199d565b600d546103949060ff1681565b6103b7611bbc565b6103b761068a3660046150f6565b611c62565b610582611cf5565b6105826106a5366004614e0c565b611d4e565b6103946106b8366004614edc565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b6103b76106ef366004615113565b611d6d565b6103b7610702366004614b24565b611dcb565b61071a610715366004614b24565b611f45565b6040516103789392919061516b565b61036e600081565b6103b761073f3660046151bb565b611ffd565b61075761075236600461522e565b61200f565b6040516103789190615264565b61040a610772366004614e2e565b63bc197c8160e01b95945050505050565b61036e610791366004614b24565b60009081526006602052604090205490565b6103cc612104565b61036e600b5481565b61036e6107c2366004614b24565b612192565b61036e7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b6103b76107fc366004614edc565b6121a9565b6103b761080f3660046152c6565b6121d1565b61036e7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b6103cc612749565b610394610851366004615330565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205460ff1690565b61040a61088d36600461535e565b63f23a6e6160e01b95945050505050565b6103b76108ac36600461535e565b6127db565b6103b76108bf3660046153c7565b612874565b61054c6108d23660046153fc565b61290b565b60006001600160a01b03831661095a5760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201527f65726f206164647265737300000000000000000000000000000000000000000060648201526084015b60405180910390fd5b5060008181526002602090815260408083206001600160a01b03861684529091529020545b92915050565b600061099082612dfc565b8061097f57506001600160e01b0319821663152a902d60e11b1492915050565b60055460ff16156109f65760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610951565b610a227f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66106b8612e07565b610aa25760405162461bcd60e51b815260206004820152604560248201527f4e4654436f6c6c656374696f6e3a204f6e6c79206163636f756e74732077697460448201527f68204d494e5445525f524f4c452063616e2063616c6c20746869732066756e636064820152643a34b7b71760d91b608482015260a401610951565b610aaa612e07565b6040516331a9108f60e11b8152600481018590526001600160a01b0391821691861690636352211e9060240160206040518083038186803b158015610aee57600080fd5b505afa158015610b02573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b2691906154a1565b6001600160a01b031614610ba25760405162461bcd60e51b815260206004820152603560248201527f4e4654436f6c6c656374696f6e3a204f6e6c7920746865206f776e6572206f6660448201527f20746865204e46542063616e20777261702069742e00000000000000000000006064820152608401610951565b60405163020604bf60e21b81526004810184905230906001600160a01b0386169063081812fc9060240160206040518083038186803b158015610be457600080fd5b505afa158015610bf8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c1c91906154a1565b6001600160a01b03161480610cc05750836001600160a01b031663e985e9c5610c43612e07565b6040516001600160e01b031960e084901b1681526001600160a01b03909116600482015230602482015260440160206040518083038186803b158015610c8857600080fd5b505afa158015610c9c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cc091906154be565b610d325760405162461bcd60e51b815260206004820152603d60248201527f4e4654436f6c6c656374696f6e3a204d75737420617070726f7665207468652060448201527f636f6e747261637420746f207472616e7366657220746865204e46542e0000006064820152608401610951565b6000610d3c612e07565b600a80549192506001906000610d5283856154f1565b9091555050604051632142170760e11b81526001600160a01b038381166004830152306024830152604482018790528716906342842e0e90606401600060405180830381600087803b158015610da757600080fd5b505af1158015610dbb573d6000803e3d6000fd5b50505050610ddb8282600160405180602001604052806000815250612e11565b6040518060600160405280836001600160a01b0316815260200185858080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201829052509385525050600260209384015250838152600e825260409020825181546001600160a01b0319166001600160a01b039091161781558282015180519192610e76926001850192909101906148fb565b5060408201518160020160006101000a81548160ff02191690836002811115610ea157610ea1615155565b0217905550506040805180820182526001600160a01b0389811680835260208084018b81526000888152600f90925290859020935184546001600160a01b031916908416178455516001909301929092559151909250908416907f797091bed1dcc535a592c3da1115fdb7467204ef9fb70943f0fc855ebe0a30f590610f2e90899086908a908a90615532565b60405180910390a3505050505050565b6000818152600e60205260409020600101805460609190610f5e90615552565b80601f0160208091040260200160405190810160405280929190818152602001828054610f8a90615552565b8015610fd75780601f10610fac57610100808354040283529160200191610fd7565b820191906000526020600020905b815481529060010190602001808311610fba57829003601f168201915b50505050509050919050565b610ff060006106b8612e07565b6110355760405162461bcd60e51b81526020600482015260166024820152756f6e6c79206d6f64756c652061646d696e20726f6c6560501b6044820152606401610951565b6001600160a01b03811660009081527fad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5602052604090205460ff166110bc5760405162461bcd60e51b815260206004820152601b60248201527f6e6577206f776e6572206e6f74206d6f64756c652061646d696e2e00000000006044820152606401610951565b600980546001600160a01b038381166001600160a01b031983168117909355604080519190921680825260208201939093527f70aea8d848e8a90fb7661b227dc522eb6395c3dac71b63cb59edd5c9899b2364910160405180910390a15050565b61112a60006106b8612e07565b61116f5760405162461bcd60e51b81526020600482015260166024820152756f6e6c79206d6f64756c652061646d696e20726f6c6560501b6044820152606401610951565b6127108111156111e75760405162461bcd60e51b815260206004820152603e60248201527f4e4654436f6c6c656374696f6e3a20496e76616c6964206270732070726f766960448201527f6465643b206d757374206265206c657373207468616e2031302c3030302e00006064820152608401610951565b600b8190556040518181527f244ea8d7627f5a08f4299862bd5a45752842c183aee5b0fb0d1e4887bfa605b3906020015b60405180910390a150565b60018060005b85518110156112d957600a548682815181106112475761124761558d565b60200260200101511015801561125a5750825b1561126457600092505b6000600e600088848151811061127c5761127c61558d565b6020026020010151815260200190815260200160002060020160009054906101000a900460ff1660028111156112b4576112b4615155565b141580156112bf5750815b156112c957600091505b6112d2816155a3565b9050611229565b508161134d5760405162461bcd60e51b815260206004820152603960248201527f4e4654436f6c6c656374696f6e3a2063616e6e6f742063616c6c20746869732060448201527f666e20666f72206372656174696e67206e6577204e4654732e000000000000006064820152608401610951565b806113c05760405162461bcd60e51b815260206004820152603a60248201527f4e4654436f6c6c656374696f6e3a2063616e6e6f7420667265656c79206d696e60448201527f74206d6f7265206f66204552433230206f72204552433732312e0000000000006064820152608401610951565b6113cc86868686612f2e565b505050505050565b60085460405163f2aab4b360e01b815230600482015260009182916001600160a01b039091169063f2aab4b39060240160206040518083038186803b15801561141c57600080fd5b505afa158015611430573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061145491906154a1565b600b549092506127109061146890856155be565b61147291906155dd565b90509250929050565b611483612e07565b6001600160a01b0316856001600160a01b031614806114a957506114a985610851612e07565b61151b5760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f742060448201527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006064820152608401610951565b6115288585858585612fd8565b5050505050565b6000828152602081905260409020600101546115528161154d612e07565b61324a565b61155c83836132c8565b505050565b611569612e07565b6001600160a01b0316816001600160a01b0316146115ef5760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201527f20726f6c657320666f722073656c6600000000000000000000000000000000006064820152608401610951565b6115f982826132ea565b5050565b6116297f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a6106b8612e07565b61169b5760405162461bcd60e51b815260206004820152603b60248201527f455243313135355072657365744d696e7465725061757365723a206d7573742060448201527f686176652070617573657220726f6c6520746f20756e706175736500000000006064820152608401610951565b6116a361330c565b565b6060815183511461171e5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e67746860448201527f206d69736d6174636800000000000000000000000000000000000000000000006064820152608401610951565b6000835167ffffffffffffffff81111561173a5761173a614bc5565b604051908082528060200260200182016040528015611763578160200160208202803683370190505b50905060005b84518110156117db576117ae8582815181106117875761178761558d565b60200260200101518583815181106117a1576117a161558d565b60200260200101516108d7565b8282815181106117c0576117c061558d565b60209081029190910101526117d4816155a3565b9050611769565b509392505050565b6117eb612e07565b6001600160a01b0316836001600160a01b03161480611811575061181183610851612e07565b61186f5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201526808185c1c1c9bdd995960ba1b6064820152608401610951565b61155c8383836133ae565b600a5483106118f15760405162461bcd60e51b815260206004820152603960248201527f4e4654436f6c6c656374696f6e3a2063616e6e6f742063616c6c20746869732060448201527f666e20666f72206372656174696e67206e6577204e4654732e000000000000006064820152608401610951565b6000838152600e6020526040812060029081015460ff169081111561191857611918615155565b1461198b5760405162461bcd60e51b815260206004820152603a60248201527f4e4654436f6c6c656374696f6e3a2063616e6e6f7420667265656c79206d696e60448201527f74206d6f7265206f66204552433230206f72204552433732312e0000000000006064820152608401610951565b611997848484846135f1565b50505050565b60006119a7612e07565b9050816119b482856108d7565b1015611a285760405162461bcd60e51b815260206004820152603360248201527f4e4654436f6c6c656374696f6e3a2043616e6e6f742072656465656d20616e2060448201527f4e465420796f7520646f206e6f74206f776e2e000000000000000000000000006064820152608401610951565b611a3381848461369b565b60008381526010602052604081206001810154600290910154611a579085906155be565b611a6191906155dd565b6000858152601060205260409081902054905163a9059cbb60e01b81526001600160a01b0385811660048301526024820184905292935091169063a9059cbb90604401602060405180830381600087803b158015611abe57600080fd5b505af1158015611ad2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611af691906154be565b611b5a5760405162461bcd60e51b815260206004820152602f60248201527f4e4654436f6c6c656374696f6e3a204661696c656420746f207472616e73666560448201526e391022a9219918103a37b5b2b7399760891b6064820152608401610951565b6000848152601060209081526040918290205482518481529182018690526001600160a01b03908116928792918616917fb80333a30b48beb3745280a5e4bb1b8e53f79569e454ec99ba13678dfbe728eb91015b60405180910390a450505050565b611be87f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a6106b8612e07565b611c5a5760405162461bcd60e51b815260206004820152603960248201527f455243313135355072657365744d696e7465725061757365723a206d7573742060448201527f686176652070617573657220726f6c6520746f207061757365000000000000006064820152608401610951565b6116a3613823565b611c6f60006106b8612e07565b611cb45760405162461bcd60e51b81526020600482015260166024820152756f6e6c79206d6f64756c652061646d696e20726f6c6560501b6044820152606401610951565b600d805460ff19168215159081179091556040519081527ffb4ba02cee22486df888d7ffb97c6100ec3193781e025cb9a4bc6fc358d626cc90602001611218565b6009546001600160a01b031660009081527fad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5602052604081205460ff16611d3c5750600090565b6009546001600160a01b03165b905090565b6000828152600160205260408120611d66908361389f565b9392505050565b611d7a60006106b8612e07565b611dbf5760405162461bcd60e51b81526020600482015260166024820152756f6e6c79206d6f64756c652061646d696e20726f6c6560501b6044820152606401610951565b61155c600c838361497f565b6000611dd5612e07565b90506000611de382846108d7565b11611e565760405162461bcd60e51b815260206004820152603360248201527f4e4654436f6c6c656374696f6e3a2043616e6e6f742072656465656d20616e2060448201527f4e465420796f7520646f206e6f74206f776e2e000000000000000000000000006064820152608401610951565b611e628183600161369b565b6000828152600f60205260409081902080546001909101549151632142170760e11b81523060048201526001600160a01b03848116602483015260448201939093529116906342842e0e90606401600060405180830381600087803b158015611eca57600080fd5b505af1158015611ede573d6000803e3d6000fd5b5050506000838152600f6020908152604091829020805460019091015483519081529182018690526001600160a01b0390811693508416917fea7b88a04220a2292e142652e8e1a59cc00e7d27d8ad6b11da6cf5870e6ba866910160405180910390a35050565b600e60205260009081526040902080546001820180546001600160a01b039092169291611f7190615552565b80601f0160208091040260200160405190810160405280929190818152602001828054611f9d90615552565b8015611fea5780601f10611fbf57610100808354040283529160200191611fea565b820191906000526020600020905b815481529060010190602001808311611fcd57829003601f168201915b5050506002909301549192505060ff1683565b6115f9612008612e07565b83836138ab565b60608167ffffffffffffffff81111561202a5761202a614bc5565b60405190808252806020026020018201604052801561205d57816020015b60608152602001906001900390816120485790505b50905060005b828110156120fd576120cd308585848181106120815761208161558d565b905060200281019061209391906155ff565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506139a092505050565b8282815181106120df576120df61558d565b602002602001018190525080806120f5906155a3565b915050612063565b5092915050565b600c805461211190615552565b80601f016020809104026020016040519081016040528092919081815260200182805461213d90615552565b801561218a5780601f1061215f5761010080835404028352916020019161218a565b820191906000526020600020905b81548152906001019060200180831161216d57829003601f168201915b505050505081565b600081815260016020526040812061097f906139c5565b6000828152602081905260409020600101546121c78161154d612e07565b61155c83836132ea565b60055460ff16156122175760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610951565b6122437f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66106b8612e07565b6122c35760405162461bcd60e51b815260206004820152604560248201527f4e4654436f6c6c656374696f6e3a204f6e6c79206163636f756e74732077697460448201527f68204d494e5445525f524f4c452063616e2063616c6c20746869732066756e636064820152643a34b7b71760d91b608482015260a401610951565b60006122cd612e07565b6040516370a0823160e01b81526001600160a01b03808316600483015291925086918816906370a082319060240160206040518083038186803b15801561231357600080fd5b505afa158015612327573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061234b9190615646565b10156123bf5760405162461bcd60e51b815260206004820152603b60248201527f4e4654436f6c6c656374696f6e3a204d757374206f776e2074686520616d6f7560448201527f6e74206f6620746f6b656e73206265696e6720777261707065642e00000000006064820152608401610951565b604051636eb1769f60e11b81526001600160a01b03828116600483015230602483015286919088169063dd62ed3e9060440160206040518083038186803b15801561240957600080fd5b505afa15801561241d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124419190615646565b10156124b55760405162461bcd60e51b815260206004820152603d60248201527f4e4654436f6c6c656374696f6e3a204d75737420617070726f7665207468697360448201527f20636f6e747261637420746f207472616e7366657220746f6b656e732e0000006064820152608401610951565b6040516323b872dd60e01b81526001600160a01b038281166004830152306024830152604482018790528716906323b872dd90606401602060405180830381600087803b15801561250557600080fd5b505af1158015612519573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061253d91906154be565b6125a15760405162461bcd60e51b815260206004820152602f60248201527f4e4654436f6c6c656374696f6e3a204661696c656420746f207472616e73666560448201526e391022a9219918103a37b5b2b7399760891b6064820152608401610951565b600a80549060019060006125b583856154f1565b925050819055506125d782828760405180602001604052806000815250612e11565b6040518060600160405280836001600160a01b0316815260200185858080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920182905250938552505060016020938401819052858352600e84526040909220845181546001600160a01b0319166001600160a01b039091161781558484015180519194612671948601935001906148fb565b5060408201518160020160006101000a81548160ff0219169083600281111561269c5761269c615155565b021790555050604080516060810182526001600160a01b038a811680835260208084018b81528486018d81526000898152601090935291869020945185546001600160a01b031916908516178555516001850155516002909301929092559151909250908416907f53af9a53d4a11cb382035aa13d6d8e24575569953176d87464ba37e7013a6aa490612738908a908a9087908b908b9061565f565b60405180910390a350505050505050565b6060600c805461275890615552565b80601f016020809104026020016040519081016040528092919081815260200182805461278490615552565b80156127d15780601f106127a6576101008083540402835291602001916127d1565b820191906000526020600020905b8154815290600101906020018083116127b457829003601f168201915b5050505050905090565b6127e3612e07565b6001600160a01b0316856001600160a01b03161480612809575061280985610851612e07565b6128675760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201526808185c1c1c9bdd995960ba1b6064820152608401610951565b61152885858585856139cf565b61287c612e07565b6001600160a01b0316836001600160a01b031614806128a257506128a283610851612e07565b6129005760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201526808185c1c1c9bdd995960ba1b6064820152608401610951565b61155c83838361369b565b606061291960055460ff1690565b156129595760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610951565b6129857f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66106b8612e07565b612a055760405162461bcd60e51b815260206004820152604560248201527f4e4654436f6c6c656374696f6e3a204f6e6c79206163636f756e74732077697460448201527f68204d494e5445525f524f4c452063616e2063616c6c20746869732066756e636064820152643a34b7b71760d91b608482015260a401610951565b848314612a7a5760405162461bcd60e51b815260206004820152603a60248201527f4e4654436f6c6c656374696f6e3a204d7573742073706563696679206571756160448201527f6c206e756d626572206f6620636f6e6669672076616c7565732e0000000000006064820152608401610951565b84612aed5760405162461bcd60e51b815260206004820152602c60248201527f4e4654436f6c6c656374696f6e3a204d75737420637265617465206174206c6560448201527f617374206f6e65204e46542e00000000000000000000000000000000000000006064820152608401610951565b6000612af7612e07565b90508567ffffffffffffffff811115612b1257612b12614bc5565b604051908082528060200260200182016040528015612b3b578160200160208202803683370190505b50600a5490925060005b87811015612c7c5781848281518110612b6057612b6061558d565b6020026020010181815250506040518060600160405280846001600160a01b031681526020018a8a84818110612b9857612b9861558d565b9050602002810190612baa91906155ff565b8080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201829052509385525050506020918201819052848152600e825260409020825181546001600160a01b0319166001600160a01b039091161781558282015180519192612c29926001850192909101906148fb565b5060408201518160020160006101000a81548160ff02191690836002811115612c5457612c54615155565b0217905550612c68915060019050836154f1565b915080612c74816155a3565b915050612b45565b5080600a81905550612cc489848888808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152508a9250613b7c915050565b816001600160a01b03167fbea5a4b7cf9a3f7d8bf7c987614db5dcfdcd917a2cd5788a210c0ebdccfc5da4848a8a8a8a604051612d059594939291906156df565b60405180910390a250509695505050505050565b6007546000906001600160a01b0316331415612d3c575060131936013560601c90565b503390565b90565b3390565b6000828152602081815260408083206001600160a01b038516845290915290205460ff166115f9576000828152602081815260408083206001600160a01b03851684529091529020805460ff19166001179055612da3612e07565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000611d66836001600160a01b038416613d5d565b600061097f82613dac565b6000611d49612d19565b6001600160a01b038416612e715760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610951565b6000612e7b612e07565b9050612e9c81600087612e8d88613dd1565b612e9688613dd1565b87613e1c565b60008481526002602090815260408083206001600160a01b038916845290915281208054859290612ece9084906154f1565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a461152881600087878787613f72565b612f5a7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66106b8612e07565b612fcc5760405162461bcd60e51b815260206004820152603860248201527f455243313135355072657365744d696e7465725061757365723a206d7573742060448201527f68617665206d696e74657220726f6c6520746f206d696e7400000000000000006064820152608401610951565b61199784848484613b7c565b815183511461303a5760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b6064820152608401610951565b6001600160a01b03841661309e5760405162461bcd60e51b815260206004820152602560248201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610951565b60006130a8612e07565b90506130b8818787878787613e1c565b60005b84518110156131e45760008582815181106130d8576130d861558d565b6020026020010151905060008583815181106130f6576130f661558d565b60209081029190910181015160008481526002835260408082206001600160a01b038e16835290935291909120549091508181101561318a5760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60448201526939103a3930b739b332b960b11b6064820152608401610951565b60008381526002602090815260408083206001600160a01b038e8116855292528083208585039055908b168252812080548492906131c99084906154f1565b92505081905550505050806131dd906155a3565b90506130bb565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516132349291906157a3565b60405180910390a46113cc818787878787614127565b6000828152602081815260408083206001600160a01b038516845290915290205460ff166115f957613286816001600160a01b03166014614232565b613291836020614232565b6040516020016132a29291906157d1565b60408051601f198184030181529082905262461bcd60e51b825261095191600401614b95565b6132d28282612d48565b600082815260016020526040902061155c9082612de7565b6132f482826143db565b600082815260016020526040902061155c9082614478565b60055460ff1661335e5760405162461bcd60e51b815260206004820152601460248201527f5061757361626c653a206e6f74207061757365640000000000000000000000006044820152606401610951565b6005805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa613391612e07565b6040516001600160a01b03909116815260200160405180910390a1565b6001600160a01b0383166134105760405162461bcd60e51b815260206004820152602360248201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260448201526265737360e81b6064820152608401610951565b80518251146134725760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b6064820152608401610951565b600061347c612e07565b905061349c81856000868660405180602001604052806000815250613e1c565b60005b83518110156135a05760008482815181106134bc576134bc61558d565b6020026020010151905060008483815181106134da576134da61558d565b60209081029190910181015160008481526002835260408082206001600160a01b038c1683529093529190912054909150818110156135675760405162461bcd60e51b8152602060048201526024808201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c604482015263616e636560e01b6064820152608401610951565b60009283526002602090815260408085206001600160a01b038b1686529091529092209103905580613598816155a3565b91505061349f565b5060006001600160a01b0316846001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051611bae9291906157a3565b61361d7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66106b8612e07565b61368f5760405162461bcd60e51b815260206004820152603860248201527f455243313135355072657365744d696e7465725061757365723a206d7573742060448201527f68617665206d696e74657220726f6c6520746f206d696e7400000000000000006064820152608401610951565b61199784848484612e11565b6001600160a01b0383166136fd5760405162461bcd60e51b815260206004820152602360248201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260448201526265737360e81b6064820152608401610951565b6000613707612e07565b90506137378185600061371987613dd1565b61372287613dd1565b60405180602001604052806000815250613e1c565b60008381526002602090815260408083206001600160a01b0388168452909152902054828110156137b65760405162461bcd60e51b8152602060048201526024808201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c604482015263616e636560e01b6064820152608401610951565b60008481526002602090815260408083206001600160a01b03898116808652918452828520888703905582518981529384018890529092908616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a45050505050565b60055460ff16156138695760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610951565b6005805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258613391612e07565b6000611d66838361448d565b816001600160a01b0316836001600160a01b031614156139335760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c2073746174757360448201527f20666f722073656c6600000000000000000000000000000000000000000000006064820152608401610951565b6001600160a01b03838116600081815260036020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6060611d668383604051806060016040528060278152602001615a0b602791396144b7565b600061097f825490565b6001600160a01b038416613a335760405162461bcd60e51b815260206004820152602560248201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610951565b6000613a3d612e07565b9050613a4e818787612e8d88613dd1565b60008481526002602090815260408083206001600160a01b038a16845290915290205483811015613ad45760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60448201526939103a3930b739b332b960b11b6064820152608401610951565b60008581526002602090815260408083206001600160a01b038b8116855292528083208785039055908816825281208054869290613b139084906154f1565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4613b73828888888888613f72565b50505050505050565b6001600160a01b038416613bdc5760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610951565b8151835114613c3e5760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b6064820152608401610951565b6000613c48612e07565b9050613c5981600087878787613e1c565b60005b8451811015613cf557838181518110613c7757613c7761558d565b602002602001015160026000878481518110613c9557613c9561558d565b602002602001015181526020019081526020016000206000886001600160a01b03166001600160a01b031681526020019081526020016000206000828254613cdd91906154f1565b90915550819050613ced816155a3565b915050613c5c565b50846001600160a01b031660006001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051613d469291906157a3565b60405180910390a461152881600087878787614127565b6000818152600183016020526040812054613da45750815460018181018455600084815260208082209093018490558454848252828601909352604090209190915561097f565b50600061097f565b60006001600160e01b03198216630271189760e51b148061097f575061097f826145a2565b60408051600180825281830190925260609160009190602080830190803683370190505090508281600081518110613e0b57613e0b61558d565b602090810291909101015292915050565b613e2a8686868686866145e2565b600d5460ff168015613e4457506001600160a01b03851615155b8015613e5857506001600160a01b03841615155b156113cc576001600160a01b03851660009081527f7c7a990f752005aea38438cc35abc5417bd322e6c964ec21d52573494225142c602052604090205460ff1680613eda57506001600160a01b03841660009081527f7c7a990f752005aea38438cc35abc5417bd322e6c964ec21d52573494225142c602052604090205460ff165b6113cc5760405162461bcd60e51b815260206004820152604860248201527f4e4654436f6c6c656374696f6e3a205472616e7366657273206172652072657360448201527f7472696374656420746f206f722066726f6d205452414e534645525f524f4c4560648201527f20686f6c64657273000000000000000000000000000000000000000000000000608482015260a401610951565b6001600160a01b0384163b156113cc5760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e6190613fb69089908990889088908890600401615852565b602060405180830381600087803b158015613fd057600080fd5b505af1925050508015614000575060408051601f3d908101601f19168201909252613ffd9181019061588a565b60015b6140b65761400c6158a7565b806308c379a0141561404657506140216158c2565b8061402c5750614048565b8060405162461bcd60e51b81526004016109519190614b95565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e204552433131353560448201527f526563656976657220696d706c656d656e7465720000000000000000000000006064820152608401610951565b6001600160e01b0319811663f23a6e6160e01b14613b735760405162461bcd60e51b815260206004820152602860248201527f455243313135353a204552433131353552656365697665722072656a656374656044820152676420746f6b656e7360c01b6064820152608401610951565b6001600160a01b0384163b156113cc5760405163bc197c8160e01b81526001600160a01b0385169063bc197c819061416b908990899088908890889060040161594c565b602060405180830381600087803b15801561418557600080fd5b505af19250505080156141b5575060408051601f3d908101601f191682019092526141b29181019061588a565b60015b6141c15761400c6158a7565b6001600160e01b0319811663bc197c8160e01b14613b735760405162461bcd60e51b815260206004820152602860248201527f455243313135353a204552433131353552656365697665722072656a656374656044820152676420746f6b656e7360c01b6064820152608401610951565b606060006142418360026155be565b61424c9060026154f1565b67ffffffffffffffff81111561426457614264614bc5565b6040519080825280601f01601f19166020018201604052801561428e576020820181803683370190505b509050600360fc1b816000815181106142a9576142a961558d565b60200101906001600160f81b031916908160001a905350600f60fb1b816001815181106142d8576142d861558d565b60200101906001600160f81b031916908160001a90535060006142fc8460026155be565b6143079060016154f1565b90505b600181111561438c577f303132333435363738396162636465660000000000000000000000000000000085600f16601081106143485761434861558d565b1a60f81b82828151811061435e5761435e61558d565b60200101906001600160f81b031916908160001a90535060049490941c93614385816159aa565b905061430a565b508315611d665760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610951565b6000828152602081815260408083206001600160a01b038516845290915290205460ff16156115f9576000828152602081815260408083206001600160a01b03851684529091529020805460ff19169055614434612e07565b6001600160a01b0316816001600160a01b0316837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b6000611d66836001600160a01b0384166146fc565b60008260000182815481106144a4576144a461558d565b9060005260206000200154905092915050565b6060833b61452d5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f60448201527f6e747261637400000000000000000000000000000000000000000000000000006064820152608401610951565b600080856001600160a01b03168560405161454891906159c1565b600060405180830381855af49150503d8060008114614583576040519150601f19603f3d011682016040523d82523d6000602084013e614588565b606091505b50915091506145988282866147ef565b9695505050505050565b60006001600160e01b03198216636cdb3d1360e11b14806145d357506001600160e01b031982166303a24d0760e21b145b8061097f575061097f82614828565b6145f086868686868661484d565b6001600160a01b0385166146775760005b83518110156146755782818151811061461c5761461c61558d565b60200260200101516006600086848151811061463a5761463a61558d565b60200260200101518152602001908152602001600020600082825461465f91906154f1565b9091555061466e9050816155a3565b9050614601565b505b6001600160a01b0384166113cc5760005b8351811015613b73578281815181106146a3576146a361558d565b6020026020010151600660008684815181106146c1576146c161558d565b6020026020010151815260200190815260200160002060008282546146e691906159dd565b909155506146f59050816155a3565b9050614688565b600081815260018301602052604081205480156147e55760006147206001836159dd565b8554909150600090614734906001906159dd565b90508181146147995760008660000182815481106147545761475461558d565b90600052602060002001549050808760000184815481106147775761477761558d565b6000918252602080832090910192909255918252600188019052604090208390555b85548690806147aa576147aa6159f4565b60019003818190600052602060002001600090559055856001016000868152602001908152602001600020600090556001935050505061097f565b600091505061097f565b606083156147fe575081611d66565b82511561480e5782518084602001fd5b8160405162461bcd60e51b81526004016109519190614b95565b60006001600160e01b03198216635a05180f60e01b148061097f575061097f826148c6565b60055460ff16156113cc5760405162461bcd60e51b815260206004820152602c60248201527f455243313135355061757361626c653a20746f6b656e207472616e736665722060448201527f7768696c652070617573656400000000000000000000000000000000000000006064820152608401610951565b60006001600160e01b03198216637965db0b60e01b148061097f57506301ffc9a760e01b6001600160e01b031983161461097f565b82805461490790615552565b90600052602060002090601f016020900481019282614929576000855561496f565b82601f1061494257805160ff191683800117855561496f565b8280016001018555821561496f579182015b8281111561496f578251825591602001919060010190614954565b5061497b9291506149f3565b5090565b82805461498b90615552565b90600052602060002090601f0160209004810192826149ad576000855561496f565b82601f106149c65782800160ff1982351617855561496f565b8280016001018555821561496f579182015b8281111561496f5782358255916020019190600101906149d8565b5b8082111561497b57600081556001016149f4565b6001600160a01b0381168114614a1d57600080fd5b50565b60008060408385031215614a3357600080fd5b8235614a3e81614a08565b946020939093013593505050565b6001600160e01b031981168114614a1d57600080fd5b600060208284031215614a7457600080fd5b8135611d6681614a4c565b60008083601f840112614a9157600080fd5b50813567ffffffffffffffff811115614aa957600080fd5b602083019150836020828501011115614ac157600080fd5b9250929050565b60008060008060608587031215614ade57600080fd5b8435614ae981614a08565b935060208501359250604085013567ffffffffffffffff811115614b0c57600080fd5b614b1887828801614a7f565b95989497509550505050565b600060208284031215614b3657600080fd5b5035919050565b60005b83811015614b58578181015183820152602001614b40565b838111156119975750506000910152565b60008151808452614b81816020860160208601614b3d565b601f01601f19169290920160200192915050565b602081526000611d666020830184614b69565b600060208284031215614bba57600080fd5b8135611d6681614a08565b634e487b7160e01b600052604160045260246000fd5b601f8201601f1916810167ffffffffffffffff81118282101715614c0157614c01614bc5565b6040525050565b600082601f830112614c1957600080fd5b813567ffffffffffffffff811115614c3357614c33614bc5565b604051614c4a601f8301601f191660200182614bdb565b818152846020838601011115614c5f57600080fd5b816020850160208301376000918101602001919091529392505050565b60008060008060808587031215614c9257600080fd5b8435614c9d81614a08565b93506020850135614cad81614a08565b925060408501359150606085013567ffffffffffffffff811115614cd057600080fd5b614cdc87828801614c08565b91505092959194509250565b600067ffffffffffffffff821115614d0257614d02614bc5565b5060051b60200190565b600082601f830112614d1d57600080fd5b81356020614d2a82614ce8565b604051614d378282614bdb565b83815260059390931b8501820192828101915086841115614d5757600080fd5b8286015b84811015614d725780358352918301918301614d5b565b509695505050505050565b60008060008060808587031215614d9357600080fd5b8435614d9e81614a08565b9350602085013567ffffffffffffffff80821115614dbb57600080fd5b614dc788838901614d0c565b94506040870135915080821115614ddd57600080fd5b614de988838901614d0c565b93506060870135915080821115614dff57600080fd5b50614cdc87828801614c08565b60008060408385031215614e1f57600080fd5b50508035926020909101359150565b600080600080600060a08688031215614e4657600080fd5b8535614e5181614a08565b94506020860135614e6181614a08565b9350604086013567ffffffffffffffff80821115614e7e57600080fd5b614e8a89838a01614d0c565b94506060880135915080821115614ea057600080fd5b614eac89838a01614d0c565b93506080880135915080821115614ec257600080fd5b50614ecf88828901614c08565b9150509295509295909350565b60008060408385031215614eef57600080fd5b823591506020830135614f0181614a08565b809150509250929050565b60008060408385031215614f1f57600080fd5b823567ffffffffffffffff80821115614f3757600080fd5b818501915085601f830112614f4b57600080fd5b81356020614f5882614ce8565b604051614f658282614bdb565b83815260059390931b8501820192828101915089841115614f8557600080fd5b948201945b83861015614fac578535614f9d81614a08565b82529482019490820190614f8a565b96505086013592505080821115614fc257600080fd5b50614fcf85828601614d0c565b9150509250929050565b600081518084526020808501945080840160005b8381101561500957815187529582019590820190600101614fed565b509495945050505050565b602081526000611d666020830184614fd9565b60008060006060848603121561503c57600080fd5b833561504781614a08565b9250602084013567ffffffffffffffff8082111561506457600080fd5b61507087838801614d0c565b9350604086013591508082111561508657600080fd5b5061509386828701614d0c565b9150509250925092565b600080600080608085870312156150b357600080fd5b84356150be81614a08565b93506020850135925060408501359150606085013567ffffffffffffffff811115614cd057600080fd5b8015158114614a1d57600080fd5b60006020828403121561510857600080fd5b8135611d66816150e8565b6000806020838503121561512657600080fd5b823567ffffffffffffffff81111561513d57600080fd5b61514985828601614a7f565b90969095509350505050565b634e487b7160e01b600052602160045260246000fd5b6001600160a01b038416815260606020820152600061518d6060830185614b69565b9050600383106151ad57634e487b7160e01b600052602160045260246000fd5b826040830152949350505050565b600080604083850312156151ce57600080fd5b82356151d981614a08565b91506020830135614f01816150e8565b60008083601f8401126151fb57600080fd5b50813567ffffffffffffffff81111561521357600080fd5b6020830191508360208260051b8501011115614ac157600080fd5b6000806020838503121561524157600080fd5b823567ffffffffffffffff81111561525857600080fd5b615149858286016151e9565b6000602080830181845280855180835260408601915060408160051b870101925083870160005b828110156152b957603f198886030184526152a7858351614b69565b9450928501929085019060010161528b565b5092979650505050505050565b6000806000806000608086880312156152de57600080fd5b85356152e981614a08565b94506020860135935060408601359250606086013567ffffffffffffffff81111561531357600080fd5b61531f88828901614a7f565b969995985093965092949392505050565b6000806040838503121561534357600080fd5b823561534e81614a08565b91506020830135614f0181614a08565b600080600080600060a0868803121561537657600080fd5b853561538181614a08565b9450602086013561539181614a08565b93506040860135925060608601359150608086013567ffffffffffffffff8111156153bb57600080fd5b614ecf88828901614c08565b6000806000606084860312156153dc57600080fd5b83356153e781614a08565b95602085013595506040909401359392505050565b6000806000806000806080878903121561541557600080fd5b863561542081614a08565b9550602087013567ffffffffffffffff8082111561543d57600080fd5b6154498a838b016151e9565b9097509550604089013591508082111561546257600080fd5b61546e8a838b016151e9565b9095509350606089013591508082111561548757600080fd5b5061549489828a01614c08565b9150509295509295509295565b6000602082840312156154b357600080fd5b8151611d6681614a08565b6000602082840312156154d057600080fd5b8151611d66816150e8565b634e487b7160e01b600052601160045260246000fd5b60008219821115615504576155046154db565b500190565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b848152836020820152606060408201526000614598606083018486615509565b600181811c9082168061556657607f821691505b6020821081141561558757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b60006000198214156155b7576155b76154db565b5060010190565b60008160001904831182151516156155d8576155d86154db565b500290565b6000826155fa57634e487b7160e01b600052601260045260246000fd5b500490565b6000808335601e1984360301811261561657600080fd5b83018035915067ffffffffffffffff82111561563157600080fd5b602001915036819003821315614ac157600080fd5b60006020828403121561565857600080fd5b5051919050565b858152846020820152836040820152608060608201526000615685608083018486615509565b979650505050505050565b81835260007f07ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8311156156c257600080fd5b8260051b8083602087013760009401602001938452509192915050565b6060815260006156f26060830188614fd9565b602083820381850152818783528183019050818860051b8401018960005b8a81101561577f57858303601f190184528135368d9003601e1901811261573657600080fd5b8c01803567ffffffffffffffff81111561574f57600080fd5b8036038e131561575e57600080fd5b61576b8582898501615509565b958701959450505090840190600101615710565b5050858103604087015261579481888a615690565b9b9a5050505050505050505050565b6040815260006157b66040830185614fd9565b82810360208401526157c88185614fd9565b95945050505050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351615809816017850160208801614b3d565b7f206973206d697373696e6720726f6c65200000000000000000000000000000006017918401918201528351615846816028840160208801614b3d565b01602801949350505050565b60006001600160a01b03808816835280871660208401525084604083015283606083015260a0608083015261568560a0830184614b69565b60006020828403121561589c57600080fd5b8151611d6681614a4c565b600060033d1115612d415760046000803e5060005160e01c90565b600060443d10156158d05790565b6040516003193d81016004833e81513d67ffffffffffffffff816024840111818411171561590057505050505090565b82850191508151818111156159185750505050505090565b843d87010160208285010111156159325750505050505090565b61594160208286010187614bdb565b509095945050505050565b60006001600160a01b03808816835280871660208401525060a0604083015261597860a0830186614fd9565b828103606084015261598a8186614fd9565b9050828103608084015261599e8185614b69565b98975050505050505050565b6000816159b9576159b96154db565b506000190190565b600082516159d3818460208701614b3d565b9190910192915050565b6000828210156159ef576159ef6154db565b500390565b634e487b7160e01b600052603160045260246000fdfe416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a164736f6c6343000809000a0000000000000000000000003d9182c358e27f88da0ba70fe833d1fa968d82c7000000000000000000000000c82bbe41f2cf04e3a8efa18f7032bdd7f6d98a81000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000003e80000000000000000000000000000000000000000000000000000000000000037697066733a2f2f516d5874786f576967774838696532456a4564786e373646795869615837704c48566848534c72786e4d473958782f30000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106103565760003560e01c80638456cb59116101c8578063c0e7274011610104578063e63ab1e9116100a2578063f23a6e611161007c578063f23a6e611461087f578063f242432a1461089e578063f5298aca146108b1578063fafdcc88146108c457600080fd5b8063e63ab1e914610814578063e8a3d4851461083b578063e985e9c51461084357600080fd5b8063ca15c873116100de578063ca15c873146107b4578063d5391393146107c7578063d547741f146107ee578063db884b0c1461080157600080fd5b8063c0e72740146107a3578063c63adb2b146107ab578063c87b56dd146103b957600080fd5b806393b778d411610171578063a22cb4651161014b578063a22cb46514610731578063ac9650d814610744578063bc197c8114610764578063bd85b0391461078357600080fd5b806393b778d4146106f45780639745cc3d14610707578063a217fddf1461072957600080fd5b80639010d07c116101a25780639010d07c1461069757806391d14854146106aa578063938e3d7b146106e157600080fd5b80638456cb59146106745780638ba448c21461067c5780638da5cb5b1461068f57600080fd5b806336568abe116102975780635c975abb11610240578063731133e91161021a578063731133e91461063857806375794a3c1461064b5780637a61080b146106545780638423df791461066757600080fd5b80635c975abb146105bc5780635cd9913d146105c75780636b20c4541461062557600080fd5b80634e1273f4116102715780634e1273f414610539578063510b515814610559578063572b6c051461059a57600080fd5b806336568abe146104eb578063367a182b146104fe5780633f4ba83a1461053157600080fd5b80631f72d83111610304578063248a9ca3116102de578063248a9ca3146104705780632a55205a146104935780632eb2c2d6146104c55780632f2ff15d146104d857600080fd5b80631f72d831146104235780631f7fdffa14610436578063206b60f91461044957600080fd5b80630e89341c116103355780630e89341c146103b957806313af4035146103d9578063150b7a02146103ec57600080fd5b8062fdd58e1461035b57806301ffc9a714610381578063090a3282146103a4575b600080fd5b61036e610369366004614a20565b6108d7565b6040519081526020015b60405180910390f35b61039461038f366004614a62565b610985565b6040519015158152602001610378565b6103b76103b2366004614ac8565b6109b0565b005b6103cc6103c7366004614b24565b610f3e565b6040516103789190614b95565b6103b76103e7366004614ba8565b610fe3565b61040a6103fa366004614c7c565b630a85bd0160e11b949350505050565b6040516001600160e01b03199091168152602001610378565b6103b7610431366004614b24565b61111d565b6103b7610444366004614d7d565b611223565b61036e7f8502233096d909befbda0999bb8ea2f3a6be3c138b9fbf003752a4c8bce86f6c81565b61036e61047e366004614b24565b60009081526020819052604090206001015490565b6104a66104a1366004614e0c565b6113d4565b604080516001600160a01b039093168352602083019190915201610378565b6103b76104d3366004614e2e565b61147b565b6103b76104e6366004614edc565b61152f565b6103b76104f9366004614edc565b611561565b6104a661050c366004614b24565b600f60205260009081526040902080546001909101546001600160a01b039091169082565b6103b76115fd565b61054c610547366004614f0c565b6116a5565b6040516103789190615014565b610582610567366004614b24565b6000908152600e60205260409020546001600160a01b031690565b6040516001600160a01b039091168152602001610378565b6103946105a8366004614ba8565b6007546001600160a01b0391821691161490565b60055460ff16610394565b6106006105d5366004614b24565b6010602052600090815260409020805460018201546002909201546001600160a01b03909116919083565b604080516001600160a01b039094168452602084019290925290820152606001610378565b6103b7610633366004615027565b6117e3565b6103b761064636600461509d565b61187a565b61036e600a5481565b6103b7610662366004614e0c565b61199d565b600d546103949060ff1681565b6103b7611bbc565b6103b761068a3660046150f6565b611c62565b610582611cf5565b6105826106a5366004614e0c565b611d4e565b6103946106b8366004614edc565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b6103b76106ef366004615113565b611d6d565b6103b7610702366004614b24565b611dcb565b61071a610715366004614b24565b611f45565b6040516103789392919061516b565b61036e600081565b6103b761073f3660046151bb565b611ffd565b61075761075236600461522e565b61200f565b6040516103789190615264565b61040a610772366004614e2e565b63bc197c8160e01b95945050505050565b61036e610791366004614b24565b60009081526006602052604090205490565b6103cc612104565b61036e600b5481565b61036e6107c2366004614b24565b612192565b61036e7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b6103b76107fc366004614edc565b6121a9565b6103b761080f3660046152c6565b6121d1565b61036e7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b6103cc612749565b610394610851366004615330565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205460ff1690565b61040a61088d36600461535e565b63f23a6e6160e01b95945050505050565b6103b76108ac36600461535e565b6127db565b6103b76108bf3660046153c7565b612874565b61054c6108d23660046153fc565b61290b565b60006001600160a01b03831661095a5760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201527f65726f206164647265737300000000000000000000000000000000000000000060648201526084015b60405180910390fd5b5060008181526002602090815260408083206001600160a01b03861684529091529020545b92915050565b600061099082612dfc565b8061097f57506001600160e01b0319821663152a902d60e11b1492915050565b60055460ff16156109f65760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610951565b610a227f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66106b8612e07565b610aa25760405162461bcd60e51b815260206004820152604560248201527f4e4654436f6c6c656374696f6e3a204f6e6c79206163636f756e74732077697460448201527f68204d494e5445525f524f4c452063616e2063616c6c20746869732066756e636064820152643a34b7b71760d91b608482015260a401610951565b610aaa612e07565b6040516331a9108f60e11b8152600481018590526001600160a01b0391821691861690636352211e9060240160206040518083038186803b158015610aee57600080fd5b505afa158015610b02573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b2691906154a1565b6001600160a01b031614610ba25760405162461bcd60e51b815260206004820152603560248201527f4e4654436f6c6c656374696f6e3a204f6e6c7920746865206f776e6572206f6660448201527f20746865204e46542063616e20777261702069742e00000000000000000000006064820152608401610951565b60405163020604bf60e21b81526004810184905230906001600160a01b0386169063081812fc9060240160206040518083038186803b158015610be457600080fd5b505afa158015610bf8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c1c91906154a1565b6001600160a01b03161480610cc05750836001600160a01b031663e985e9c5610c43612e07565b6040516001600160e01b031960e084901b1681526001600160a01b03909116600482015230602482015260440160206040518083038186803b158015610c8857600080fd5b505afa158015610c9c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cc091906154be565b610d325760405162461bcd60e51b815260206004820152603d60248201527f4e4654436f6c6c656374696f6e3a204d75737420617070726f7665207468652060448201527f636f6e747261637420746f207472616e7366657220746865204e46542e0000006064820152608401610951565b6000610d3c612e07565b600a80549192506001906000610d5283856154f1565b9091555050604051632142170760e11b81526001600160a01b038381166004830152306024830152604482018790528716906342842e0e90606401600060405180830381600087803b158015610da757600080fd5b505af1158015610dbb573d6000803e3d6000fd5b50505050610ddb8282600160405180602001604052806000815250612e11565b6040518060600160405280836001600160a01b0316815260200185858080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201829052509385525050600260209384015250838152600e825260409020825181546001600160a01b0319166001600160a01b039091161781558282015180519192610e76926001850192909101906148fb565b5060408201518160020160006101000a81548160ff02191690836002811115610ea157610ea1615155565b0217905550506040805180820182526001600160a01b0389811680835260208084018b81526000888152600f90925290859020935184546001600160a01b031916908416178455516001909301929092559151909250908416907f797091bed1dcc535a592c3da1115fdb7467204ef9fb70943f0fc855ebe0a30f590610f2e90899086908a908a90615532565b60405180910390a3505050505050565b6000818152600e60205260409020600101805460609190610f5e90615552565b80601f0160208091040260200160405190810160405280929190818152602001828054610f8a90615552565b8015610fd75780601f10610fac57610100808354040283529160200191610fd7565b820191906000526020600020905b815481529060010190602001808311610fba57829003601f168201915b50505050509050919050565b610ff060006106b8612e07565b6110355760405162461bcd60e51b81526020600482015260166024820152756f6e6c79206d6f64756c652061646d696e20726f6c6560501b6044820152606401610951565b6001600160a01b03811660009081527fad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5602052604090205460ff166110bc5760405162461bcd60e51b815260206004820152601b60248201527f6e6577206f776e6572206e6f74206d6f64756c652061646d696e2e00000000006044820152606401610951565b600980546001600160a01b038381166001600160a01b031983168117909355604080519190921680825260208201939093527f70aea8d848e8a90fb7661b227dc522eb6395c3dac71b63cb59edd5c9899b2364910160405180910390a15050565b61112a60006106b8612e07565b61116f5760405162461bcd60e51b81526020600482015260166024820152756f6e6c79206d6f64756c652061646d696e20726f6c6560501b6044820152606401610951565b6127108111156111e75760405162461bcd60e51b815260206004820152603e60248201527f4e4654436f6c6c656374696f6e3a20496e76616c6964206270732070726f766960448201527f6465643b206d757374206265206c657373207468616e2031302c3030302e00006064820152608401610951565b600b8190556040518181527f244ea8d7627f5a08f4299862bd5a45752842c183aee5b0fb0d1e4887bfa605b3906020015b60405180910390a150565b60018060005b85518110156112d957600a548682815181106112475761124761558d565b60200260200101511015801561125a5750825b1561126457600092505b6000600e600088848151811061127c5761127c61558d565b6020026020010151815260200190815260200160002060020160009054906101000a900460ff1660028111156112b4576112b4615155565b141580156112bf5750815b156112c957600091505b6112d2816155a3565b9050611229565b508161134d5760405162461bcd60e51b815260206004820152603960248201527f4e4654436f6c6c656374696f6e3a2063616e6e6f742063616c6c20746869732060448201527f666e20666f72206372656174696e67206e6577204e4654732e000000000000006064820152608401610951565b806113c05760405162461bcd60e51b815260206004820152603a60248201527f4e4654436f6c6c656374696f6e3a2063616e6e6f7420667265656c79206d696e60448201527f74206d6f7265206f66204552433230206f72204552433732312e0000000000006064820152608401610951565b6113cc86868686612f2e565b505050505050565b60085460405163f2aab4b360e01b815230600482015260009182916001600160a01b039091169063f2aab4b39060240160206040518083038186803b15801561141c57600080fd5b505afa158015611430573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061145491906154a1565b600b549092506127109061146890856155be565b61147291906155dd565b90509250929050565b611483612e07565b6001600160a01b0316856001600160a01b031614806114a957506114a985610851612e07565b61151b5760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f742060448201527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006064820152608401610951565b6115288585858585612fd8565b5050505050565b6000828152602081905260409020600101546115528161154d612e07565b61324a565b61155c83836132c8565b505050565b611569612e07565b6001600160a01b0316816001600160a01b0316146115ef5760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201527f20726f6c657320666f722073656c6600000000000000000000000000000000006064820152608401610951565b6115f982826132ea565b5050565b6116297f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a6106b8612e07565b61169b5760405162461bcd60e51b815260206004820152603b60248201527f455243313135355072657365744d696e7465725061757365723a206d7573742060448201527f686176652070617573657220726f6c6520746f20756e706175736500000000006064820152608401610951565b6116a361330c565b565b6060815183511461171e5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e67746860448201527f206d69736d6174636800000000000000000000000000000000000000000000006064820152608401610951565b6000835167ffffffffffffffff81111561173a5761173a614bc5565b604051908082528060200260200182016040528015611763578160200160208202803683370190505b50905060005b84518110156117db576117ae8582815181106117875761178761558d565b60200260200101518583815181106117a1576117a161558d565b60200260200101516108d7565b8282815181106117c0576117c061558d565b60209081029190910101526117d4816155a3565b9050611769565b509392505050565b6117eb612e07565b6001600160a01b0316836001600160a01b03161480611811575061181183610851612e07565b61186f5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201526808185c1c1c9bdd995960ba1b6064820152608401610951565b61155c8383836133ae565b600a5483106118f15760405162461bcd60e51b815260206004820152603960248201527f4e4654436f6c6c656374696f6e3a2063616e6e6f742063616c6c20746869732060448201527f666e20666f72206372656174696e67206e6577204e4654732e000000000000006064820152608401610951565b6000838152600e6020526040812060029081015460ff169081111561191857611918615155565b1461198b5760405162461bcd60e51b815260206004820152603a60248201527f4e4654436f6c6c656374696f6e3a2063616e6e6f7420667265656c79206d696e60448201527f74206d6f7265206f66204552433230206f72204552433732312e0000000000006064820152608401610951565b611997848484846135f1565b50505050565b60006119a7612e07565b9050816119b482856108d7565b1015611a285760405162461bcd60e51b815260206004820152603360248201527f4e4654436f6c6c656374696f6e3a2043616e6e6f742072656465656d20616e2060448201527f4e465420796f7520646f206e6f74206f776e2e000000000000000000000000006064820152608401610951565b611a3381848461369b565b60008381526010602052604081206001810154600290910154611a579085906155be565b611a6191906155dd565b6000858152601060205260409081902054905163a9059cbb60e01b81526001600160a01b0385811660048301526024820184905292935091169063a9059cbb90604401602060405180830381600087803b158015611abe57600080fd5b505af1158015611ad2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611af691906154be565b611b5a5760405162461bcd60e51b815260206004820152602f60248201527f4e4654436f6c6c656374696f6e3a204661696c656420746f207472616e73666560448201526e391022a9219918103a37b5b2b7399760891b6064820152608401610951565b6000848152601060209081526040918290205482518481529182018690526001600160a01b03908116928792918616917fb80333a30b48beb3745280a5e4bb1b8e53f79569e454ec99ba13678dfbe728eb91015b60405180910390a450505050565b611be87f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a6106b8612e07565b611c5a5760405162461bcd60e51b815260206004820152603960248201527f455243313135355072657365744d696e7465725061757365723a206d7573742060448201527f686176652070617573657220726f6c6520746f207061757365000000000000006064820152608401610951565b6116a3613823565b611c6f60006106b8612e07565b611cb45760405162461bcd60e51b81526020600482015260166024820152756f6e6c79206d6f64756c652061646d696e20726f6c6560501b6044820152606401610951565b600d805460ff19168215159081179091556040519081527ffb4ba02cee22486df888d7ffb97c6100ec3193781e025cb9a4bc6fc358d626cc90602001611218565b6009546001600160a01b031660009081527fad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5602052604081205460ff16611d3c5750600090565b6009546001600160a01b03165b905090565b6000828152600160205260408120611d66908361389f565b9392505050565b611d7a60006106b8612e07565b611dbf5760405162461bcd60e51b81526020600482015260166024820152756f6e6c79206d6f64756c652061646d696e20726f6c6560501b6044820152606401610951565b61155c600c838361497f565b6000611dd5612e07565b90506000611de382846108d7565b11611e565760405162461bcd60e51b815260206004820152603360248201527f4e4654436f6c6c656374696f6e3a2043616e6e6f742072656465656d20616e2060448201527f4e465420796f7520646f206e6f74206f776e2e000000000000000000000000006064820152608401610951565b611e628183600161369b565b6000828152600f60205260409081902080546001909101549151632142170760e11b81523060048201526001600160a01b03848116602483015260448201939093529116906342842e0e90606401600060405180830381600087803b158015611eca57600080fd5b505af1158015611ede573d6000803e3d6000fd5b5050506000838152600f6020908152604091829020805460019091015483519081529182018690526001600160a01b0390811693508416917fea7b88a04220a2292e142652e8e1a59cc00e7d27d8ad6b11da6cf5870e6ba866910160405180910390a35050565b600e60205260009081526040902080546001820180546001600160a01b039092169291611f7190615552565b80601f0160208091040260200160405190810160405280929190818152602001828054611f9d90615552565b8015611fea5780601f10611fbf57610100808354040283529160200191611fea565b820191906000526020600020905b815481529060010190602001808311611fcd57829003601f168201915b5050506002909301549192505060ff1683565b6115f9612008612e07565b83836138ab565b60608167ffffffffffffffff81111561202a5761202a614bc5565b60405190808252806020026020018201604052801561205d57816020015b60608152602001906001900390816120485790505b50905060005b828110156120fd576120cd308585848181106120815761208161558d565b905060200281019061209391906155ff565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506139a092505050565b8282815181106120df576120df61558d565b602002602001018190525080806120f5906155a3565b915050612063565b5092915050565b600c805461211190615552565b80601f016020809104026020016040519081016040528092919081815260200182805461213d90615552565b801561218a5780601f1061215f5761010080835404028352916020019161218a565b820191906000526020600020905b81548152906001019060200180831161216d57829003601f168201915b505050505081565b600081815260016020526040812061097f906139c5565b6000828152602081905260409020600101546121c78161154d612e07565b61155c83836132ea565b60055460ff16156122175760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610951565b6122437f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66106b8612e07565b6122c35760405162461bcd60e51b815260206004820152604560248201527f4e4654436f6c6c656374696f6e3a204f6e6c79206163636f756e74732077697460448201527f68204d494e5445525f524f4c452063616e2063616c6c20746869732066756e636064820152643a34b7b71760d91b608482015260a401610951565b60006122cd612e07565b6040516370a0823160e01b81526001600160a01b03808316600483015291925086918816906370a082319060240160206040518083038186803b15801561231357600080fd5b505afa158015612327573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061234b9190615646565b10156123bf5760405162461bcd60e51b815260206004820152603b60248201527f4e4654436f6c6c656374696f6e3a204d757374206f776e2074686520616d6f7560448201527f6e74206f6620746f6b656e73206265696e6720777261707065642e00000000006064820152608401610951565b604051636eb1769f60e11b81526001600160a01b03828116600483015230602483015286919088169063dd62ed3e9060440160206040518083038186803b15801561240957600080fd5b505afa15801561241d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906124419190615646565b10156124b55760405162461bcd60e51b815260206004820152603d60248201527f4e4654436f6c6c656374696f6e3a204d75737420617070726f7665207468697360448201527f20636f6e747261637420746f207472616e7366657220746f6b656e732e0000006064820152608401610951565b6040516323b872dd60e01b81526001600160a01b038281166004830152306024830152604482018790528716906323b872dd90606401602060405180830381600087803b15801561250557600080fd5b505af1158015612519573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061253d91906154be565b6125a15760405162461bcd60e51b815260206004820152602f60248201527f4e4654436f6c6c656374696f6e3a204661696c656420746f207472616e73666560448201526e391022a9219918103a37b5b2b7399760891b6064820152608401610951565b600a80549060019060006125b583856154f1565b925050819055506125d782828760405180602001604052806000815250612e11565b6040518060600160405280836001600160a01b0316815260200185858080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920182905250938552505060016020938401819052858352600e84526040909220845181546001600160a01b0319166001600160a01b039091161781558484015180519194612671948601935001906148fb565b5060408201518160020160006101000a81548160ff0219169083600281111561269c5761269c615155565b021790555050604080516060810182526001600160a01b038a811680835260208084018b81528486018d81526000898152601090935291869020945185546001600160a01b031916908516178555516001850155516002909301929092559151909250908416907f53af9a53d4a11cb382035aa13d6d8e24575569953176d87464ba37e7013a6aa490612738908a908a9087908b908b9061565f565b60405180910390a350505050505050565b6060600c805461275890615552565b80601f016020809104026020016040519081016040528092919081815260200182805461278490615552565b80156127d15780601f106127a6576101008083540402835291602001916127d1565b820191906000526020600020905b8154815290600101906020018083116127b457829003601f168201915b5050505050905090565b6127e3612e07565b6001600160a01b0316856001600160a01b03161480612809575061280985610851612e07565b6128675760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201526808185c1c1c9bdd995960ba1b6064820152608401610951565b61152885858585856139cf565b61287c612e07565b6001600160a01b0316836001600160a01b031614806128a257506128a283610851612e07565b6129005760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201526808185c1c1c9bdd995960ba1b6064820152608401610951565b61155c83838361369b565b606061291960055460ff1690565b156129595760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610951565b6129857f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66106b8612e07565b612a055760405162461bcd60e51b815260206004820152604560248201527f4e4654436f6c6c656374696f6e3a204f6e6c79206163636f756e74732077697460448201527f68204d494e5445525f524f4c452063616e2063616c6c20746869732066756e636064820152643a34b7b71760d91b608482015260a401610951565b848314612a7a5760405162461bcd60e51b815260206004820152603a60248201527f4e4654436f6c6c656374696f6e3a204d7573742073706563696679206571756160448201527f6c206e756d626572206f6620636f6e6669672076616c7565732e0000000000006064820152608401610951565b84612aed5760405162461bcd60e51b815260206004820152602c60248201527f4e4654436f6c6c656374696f6e3a204d75737420637265617465206174206c6560448201527f617374206f6e65204e46542e00000000000000000000000000000000000000006064820152608401610951565b6000612af7612e07565b90508567ffffffffffffffff811115612b1257612b12614bc5565b604051908082528060200260200182016040528015612b3b578160200160208202803683370190505b50600a5490925060005b87811015612c7c5781848281518110612b6057612b6061558d565b6020026020010181815250506040518060600160405280846001600160a01b031681526020018a8a84818110612b9857612b9861558d565b9050602002810190612baa91906155ff565b8080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201829052509385525050506020918201819052848152600e825260409020825181546001600160a01b0319166001600160a01b039091161781558282015180519192612c29926001850192909101906148fb565b5060408201518160020160006101000a81548160ff02191690836002811115612c5457612c54615155565b0217905550612c68915060019050836154f1565b915080612c74816155a3565b915050612b45565b5080600a81905550612cc489848888808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152508a9250613b7c915050565b816001600160a01b03167fbea5a4b7cf9a3f7d8bf7c987614db5dcfdcd917a2cd5788a210c0ebdccfc5da4848a8a8a8a604051612d059594939291906156df565b60405180910390a250509695505050505050565b6007546000906001600160a01b0316331415612d3c575060131936013560601c90565b503390565b90565b3390565b6000828152602081815260408083206001600160a01b038516845290915290205460ff166115f9576000828152602081815260408083206001600160a01b03851684529091529020805460ff19166001179055612da3612e07565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000611d66836001600160a01b038416613d5d565b600061097f82613dac565b6000611d49612d19565b6001600160a01b038416612e715760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610951565b6000612e7b612e07565b9050612e9c81600087612e8d88613dd1565b612e9688613dd1565b87613e1c565b60008481526002602090815260408083206001600160a01b038916845290915281208054859290612ece9084906154f1565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a461152881600087878787613f72565b612f5a7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66106b8612e07565b612fcc5760405162461bcd60e51b815260206004820152603860248201527f455243313135355072657365744d696e7465725061757365723a206d7573742060448201527f68617665206d696e74657220726f6c6520746f206d696e7400000000000000006064820152608401610951565b61199784848484613b7c565b815183511461303a5760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b6064820152608401610951565b6001600160a01b03841661309e5760405162461bcd60e51b815260206004820152602560248201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610951565b60006130a8612e07565b90506130b8818787878787613e1c565b60005b84518110156131e45760008582815181106130d8576130d861558d565b6020026020010151905060008583815181106130f6576130f661558d565b60209081029190910181015160008481526002835260408082206001600160a01b038e16835290935291909120549091508181101561318a5760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60448201526939103a3930b739b332b960b11b6064820152608401610951565b60008381526002602090815260408083206001600160a01b038e8116855292528083208585039055908b168252812080548492906131c99084906154f1565b92505081905550505050806131dd906155a3565b90506130bb565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516132349291906157a3565b60405180910390a46113cc818787878787614127565b6000828152602081815260408083206001600160a01b038516845290915290205460ff166115f957613286816001600160a01b03166014614232565b613291836020614232565b6040516020016132a29291906157d1565b60408051601f198184030181529082905262461bcd60e51b825261095191600401614b95565b6132d28282612d48565b600082815260016020526040902061155c9082612de7565b6132f482826143db565b600082815260016020526040902061155c9082614478565b60055460ff1661335e5760405162461bcd60e51b815260206004820152601460248201527f5061757361626c653a206e6f74207061757365640000000000000000000000006044820152606401610951565b6005805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa613391612e07565b6040516001600160a01b03909116815260200160405180910390a1565b6001600160a01b0383166134105760405162461bcd60e51b815260206004820152602360248201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260448201526265737360e81b6064820152608401610951565b80518251146134725760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b6064820152608401610951565b600061347c612e07565b905061349c81856000868660405180602001604052806000815250613e1c565b60005b83518110156135a05760008482815181106134bc576134bc61558d565b6020026020010151905060008483815181106134da576134da61558d565b60209081029190910181015160008481526002835260408082206001600160a01b038c1683529093529190912054909150818110156135675760405162461bcd60e51b8152602060048201526024808201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c604482015263616e636560e01b6064820152608401610951565b60009283526002602090815260408085206001600160a01b038b1686529091529092209103905580613598816155a3565b91505061349f565b5060006001600160a01b0316846001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051611bae9291906157a3565b61361d7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66106b8612e07565b61368f5760405162461bcd60e51b815260206004820152603860248201527f455243313135355072657365744d696e7465725061757365723a206d7573742060448201527f68617665206d696e74657220726f6c6520746f206d696e7400000000000000006064820152608401610951565b61199784848484612e11565b6001600160a01b0383166136fd5760405162461bcd60e51b815260206004820152602360248201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260448201526265737360e81b6064820152608401610951565b6000613707612e07565b90506137378185600061371987613dd1565b61372287613dd1565b60405180602001604052806000815250613e1c565b60008381526002602090815260408083206001600160a01b0388168452909152902054828110156137b65760405162461bcd60e51b8152602060048201526024808201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c604482015263616e636560e01b6064820152608401610951565b60008481526002602090815260408083206001600160a01b03898116808652918452828520888703905582518981529384018890529092908616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a45050505050565b60055460ff16156138695760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610951565b6005805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258613391612e07565b6000611d66838361448d565b816001600160a01b0316836001600160a01b031614156139335760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c2073746174757360448201527f20666f722073656c6600000000000000000000000000000000000000000000006064820152608401610951565b6001600160a01b03838116600081815260036020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6060611d668383604051806060016040528060278152602001615a0b602791396144b7565b600061097f825490565b6001600160a01b038416613a335760405162461bcd60e51b815260206004820152602560248201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610951565b6000613a3d612e07565b9050613a4e818787612e8d88613dd1565b60008481526002602090815260408083206001600160a01b038a16845290915290205483811015613ad45760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60448201526939103a3930b739b332b960b11b6064820152608401610951565b60008581526002602090815260408083206001600160a01b038b8116855292528083208785039055908816825281208054869290613b139084906154f1565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4613b73828888888888613f72565b50505050505050565b6001600160a01b038416613bdc5760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610951565b8151835114613c3e5760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b6064820152608401610951565b6000613c48612e07565b9050613c5981600087878787613e1c565b60005b8451811015613cf557838181518110613c7757613c7761558d565b602002602001015160026000878481518110613c9557613c9561558d565b602002602001015181526020019081526020016000206000886001600160a01b03166001600160a01b031681526020019081526020016000206000828254613cdd91906154f1565b90915550819050613ced816155a3565b915050613c5c565b50846001600160a01b031660006001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051613d469291906157a3565b60405180910390a461152881600087878787614127565b6000818152600183016020526040812054613da45750815460018181018455600084815260208082209093018490558454848252828601909352604090209190915561097f565b50600061097f565b60006001600160e01b03198216630271189760e51b148061097f575061097f826145a2565b60408051600180825281830190925260609160009190602080830190803683370190505090508281600081518110613e0b57613e0b61558d565b602090810291909101015292915050565b613e2a8686868686866145e2565b600d5460ff168015613e4457506001600160a01b03851615155b8015613e5857506001600160a01b03841615155b156113cc576001600160a01b03851660009081527f7c7a990f752005aea38438cc35abc5417bd322e6c964ec21d52573494225142c602052604090205460ff1680613eda57506001600160a01b03841660009081527f7c7a990f752005aea38438cc35abc5417bd322e6c964ec21d52573494225142c602052604090205460ff165b6113cc5760405162461bcd60e51b815260206004820152604860248201527f4e4654436f6c6c656374696f6e3a205472616e7366657273206172652072657360448201527f7472696374656420746f206f722066726f6d205452414e534645525f524f4c4560648201527f20686f6c64657273000000000000000000000000000000000000000000000000608482015260a401610951565b6001600160a01b0384163b156113cc5760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e6190613fb69089908990889088908890600401615852565b602060405180830381600087803b158015613fd057600080fd5b505af1925050508015614000575060408051601f3d908101601f19168201909252613ffd9181019061588a565b60015b6140b65761400c6158a7565b806308c379a0141561404657506140216158c2565b8061402c5750614048565b8060405162461bcd60e51b81526004016109519190614b95565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e204552433131353560448201527f526563656976657220696d706c656d656e7465720000000000000000000000006064820152608401610951565b6001600160e01b0319811663f23a6e6160e01b14613b735760405162461bcd60e51b815260206004820152602860248201527f455243313135353a204552433131353552656365697665722072656a656374656044820152676420746f6b656e7360c01b6064820152608401610951565b6001600160a01b0384163b156113cc5760405163bc197c8160e01b81526001600160a01b0385169063bc197c819061416b908990899088908890889060040161594c565b602060405180830381600087803b15801561418557600080fd5b505af19250505080156141b5575060408051601f3d908101601f191682019092526141b29181019061588a565b60015b6141c15761400c6158a7565b6001600160e01b0319811663bc197c8160e01b14613b735760405162461bcd60e51b815260206004820152602860248201527f455243313135353a204552433131353552656365697665722072656a656374656044820152676420746f6b656e7360c01b6064820152608401610951565b606060006142418360026155be565b61424c9060026154f1565b67ffffffffffffffff81111561426457614264614bc5565b6040519080825280601f01601f19166020018201604052801561428e576020820181803683370190505b509050600360fc1b816000815181106142a9576142a961558d565b60200101906001600160f81b031916908160001a905350600f60fb1b816001815181106142d8576142d861558d565b60200101906001600160f81b031916908160001a90535060006142fc8460026155be565b6143079060016154f1565b90505b600181111561438c577f303132333435363738396162636465660000000000000000000000000000000085600f16601081106143485761434861558d565b1a60f81b82828151811061435e5761435e61558d565b60200101906001600160f81b031916908160001a90535060049490941c93614385816159aa565b905061430a565b508315611d665760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610951565b6000828152602081815260408083206001600160a01b038516845290915290205460ff16156115f9576000828152602081815260408083206001600160a01b03851684529091529020805460ff19169055614434612e07565b6001600160a01b0316816001600160a01b0316837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b6000611d66836001600160a01b0384166146fc565b60008260000182815481106144a4576144a461558d565b9060005260206000200154905092915050565b6060833b61452d5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a2064656c65676174652063616c6c20746f206e6f6e2d636f60448201527f6e747261637400000000000000000000000000000000000000000000000000006064820152608401610951565b600080856001600160a01b03168560405161454891906159c1565b600060405180830381855af49150503d8060008114614583576040519150601f19603f3d011682016040523d82523d6000602084013e614588565b606091505b50915091506145988282866147ef565b9695505050505050565b60006001600160e01b03198216636cdb3d1360e11b14806145d357506001600160e01b031982166303a24d0760e21b145b8061097f575061097f82614828565b6145f086868686868661484d565b6001600160a01b0385166146775760005b83518110156146755782818151811061461c5761461c61558d565b60200260200101516006600086848151811061463a5761463a61558d565b60200260200101518152602001908152602001600020600082825461465f91906154f1565b9091555061466e9050816155a3565b9050614601565b505b6001600160a01b0384166113cc5760005b8351811015613b73578281815181106146a3576146a361558d565b6020026020010151600660008684815181106146c1576146c161558d565b6020026020010151815260200190815260200160002060008282546146e691906159dd565b909155506146f59050816155a3565b9050614688565b600081815260018301602052604081205480156147e55760006147206001836159dd565b8554909150600090614734906001906159dd565b90508181146147995760008660000182815481106147545761475461558d565b90600052602060002001549050808760000184815481106147775761477761558d565b6000918252602080832090910192909255918252600188019052604090208390555b85548690806147aa576147aa6159f4565b60019003818190600052602060002001600090559055856001016000868152602001908152602001600020600090556001935050505061097f565b600091505061097f565b606083156147fe575081611d66565b82511561480e5782518084602001fd5b8160405162461bcd60e51b81526004016109519190614b95565b60006001600160e01b03198216635a05180f60e01b148061097f575061097f826148c6565b60055460ff16156113cc5760405162461bcd60e51b815260206004820152602c60248201527f455243313135355061757361626c653a20746f6b656e207472616e736665722060448201527f7768696c652070617573656400000000000000000000000000000000000000006064820152608401610951565b60006001600160e01b03198216637965db0b60e01b148061097f57506301ffc9a760e01b6001600160e01b031983161461097f565b82805461490790615552565b90600052602060002090601f016020900481019282614929576000855561496f565b82601f1061494257805160ff191683800117855561496f565b8280016001018555821561496f579182015b8281111561496f578251825591602001919060010190614954565b5061497b9291506149f3565b5090565b82805461498b90615552565b90600052602060002090601f0160209004810192826149ad576000855561496f565b82601f106149c65782800160ff1982351617855561496f565b8280016001018555821561496f579182015b8281111561496f5782358255916020019190600101906149d8565b5b8082111561497b57600081556001016149f4565b6001600160a01b0381168114614a1d57600080fd5b50565b60008060408385031215614a3357600080fd5b8235614a3e81614a08565b946020939093013593505050565b6001600160e01b031981168114614a1d57600080fd5b600060208284031215614a7457600080fd5b8135611d6681614a4c565b60008083601f840112614a9157600080fd5b50813567ffffffffffffffff811115614aa957600080fd5b602083019150836020828501011115614ac157600080fd5b9250929050565b60008060008060608587031215614ade57600080fd5b8435614ae981614a08565b935060208501359250604085013567ffffffffffffffff811115614b0c57600080fd5b614b1887828801614a7f565b95989497509550505050565b600060208284031215614b3657600080fd5b5035919050565b60005b83811015614b58578181015183820152602001614b40565b838111156119975750506000910152565b60008151808452614b81816020860160208601614b3d565b601f01601f19169290920160200192915050565b602081526000611d666020830184614b69565b600060208284031215614bba57600080fd5b8135611d6681614a08565b634e487b7160e01b600052604160045260246000fd5b601f8201601f1916810167ffffffffffffffff81118282101715614c0157614c01614bc5565b6040525050565b600082601f830112614c1957600080fd5b813567ffffffffffffffff811115614c3357614c33614bc5565b604051614c4a601f8301601f191660200182614bdb565b818152846020838601011115614c5f57600080fd5b816020850160208301376000918101602001919091529392505050565b60008060008060808587031215614c9257600080fd5b8435614c9d81614a08565b93506020850135614cad81614a08565b925060408501359150606085013567ffffffffffffffff811115614cd057600080fd5b614cdc87828801614c08565b91505092959194509250565b600067ffffffffffffffff821115614d0257614d02614bc5565b5060051b60200190565b600082601f830112614d1d57600080fd5b81356020614d2a82614ce8565b604051614d378282614bdb565b83815260059390931b8501820192828101915086841115614d5757600080fd5b8286015b84811015614d725780358352918301918301614d5b565b509695505050505050565b60008060008060808587031215614d9357600080fd5b8435614d9e81614a08565b9350602085013567ffffffffffffffff80821115614dbb57600080fd5b614dc788838901614d0c565b94506040870135915080821115614ddd57600080fd5b614de988838901614d0c565b93506060870135915080821115614dff57600080fd5b50614cdc87828801614c08565b60008060408385031215614e1f57600080fd5b50508035926020909101359150565b600080600080600060a08688031215614e4657600080fd5b8535614e5181614a08565b94506020860135614e6181614a08565b9350604086013567ffffffffffffffff80821115614e7e57600080fd5b614e8a89838a01614d0c565b94506060880135915080821115614ea057600080fd5b614eac89838a01614d0c565b93506080880135915080821115614ec257600080fd5b50614ecf88828901614c08565b9150509295509295909350565b60008060408385031215614eef57600080fd5b823591506020830135614f0181614a08565b809150509250929050565b60008060408385031215614f1f57600080fd5b823567ffffffffffffffff80821115614f3757600080fd5b818501915085601f830112614f4b57600080fd5b81356020614f5882614ce8565b604051614f658282614bdb565b83815260059390931b8501820192828101915089841115614f8557600080fd5b948201945b83861015614fac578535614f9d81614a08565b82529482019490820190614f8a565b96505086013592505080821115614fc257600080fd5b50614fcf85828601614d0c565b9150509250929050565b600081518084526020808501945080840160005b8381101561500957815187529582019590820190600101614fed565b509495945050505050565b602081526000611d666020830184614fd9565b60008060006060848603121561503c57600080fd5b833561504781614a08565b9250602084013567ffffffffffffffff8082111561506457600080fd5b61507087838801614d0c565b9350604086013591508082111561508657600080fd5b5061509386828701614d0c565b9150509250925092565b600080600080608085870312156150b357600080fd5b84356150be81614a08565b93506020850135925060408501359150606085013567ffffffffffffffff811115614cd057600080fd5b8015158114614a1d57600080fd5b60006020828403121561510857600080fd5b8135611d66816150e8565b6000806020838503121561512657600080fd5b823567ffffffffffffffff81111561513d57600080fd5b61514985828601614a7f565b90969095509350505050565b634e487b7160e01b600052602160045260246000fd5b6001600160a01b038416815260606020820152600061518d6060830185614b69565b9050600383106151ad57634e487b7160e01b600052602160045260246000fd5b826040830152949350505050565b600080604083850312156151ce57600080fd5b82356151d981614a08565b91506020830135614f01816150e8565b60008083601f8401126151fb57600080fd5b50813567ffffffffffffffff81111561521357600080fd5b6020830191508360208260051b8501011115614ac157600080fd5b6000806020838503121561524157600080fd5b823567ffffffffffffffff81111561525857600080fd5b615149858286016151e9565b6000602080830181845280855180835260408601915060408160051b870101925083870160005b828110156152b957603f198886030184526152a7858351614b69565b9450928501929085019060010161528b565b5092979650505050505050565b6000806000806000608086880312156152de57600080fd5b85356152e981614a08565b94506020860135935060408601359250606086013567ffffffffffffffff81111561531357600080fd5b61531f88828901614a7f565b969995985093965092949392505050565b6000806040838503121561534357600080fd5b823561534e81614a08565b91506020830135614f0181614a08565b600080600080600060a0868803121561537657600080fd5b853561538181614a08565b9450602086013561539181614a08565b93506040860135925060608601359150608086013567ffffffffffffffff8111156153bb57600080fd5b614ecf88828901614c08565b6000806000606084860312156153dc57600080fd5b83356153e781614a08565b95602085013595506040909401359392505050565b6000806000806000806080878903121561541557600080fd5b863561542081614a08565b9550602087013567ffffffffffffffff8082111561543d57600080fd5b6154498a838b016151e9565b9097509550604089013591508082111561546257600080fd5b61546e8a838b016151e9565b9095509350606089013591508082111561548757600080fd5b5061549489828a01614c08565b9150509295509295509295565b6000602082840312156154b357600080fd5b8151611d6681614a08565b6000602082840312156154d057600080fd5b8151611d66816150e8565b634e487b7160e01b600052601160045260246000fd5b60008219821115615504576155046154db565b500190565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b848152836020820152606060408201526000614598606083018486615509565b600181811c9082168061556657607f821691505b6020821081141561558757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b60006000198214156155b7576155b76154db565b5060010190565b60008160001904831182151516156155d8576155d86154db565b500290565b6000826155fa57634e487b7160e01b600052601260045260246000fd5b500490565b6000808335601e1984360301811261561657600080fd5b83018035915067ffffffffffffffff82111561563157600080fd5b602001915036819003821315614ac157600080fd5b60006020828403121561565857600080fd5b5051919050565b858152846020820152836040820152608060608201526000615685608083018486615509565b979650505050505050565b81835260007f07ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8311156156c257600080fd5b8260051b8083602087013760009401602001938452509192915050565b6060815260006156f26060830188614fd9565b602083820381850152818783528183019050818860051b8401018960005b8a81101561577f57858303601f190184528135368d9003601e1901811261573657600080fd5b8c01803567ffffffffffffffff81111561574f57600080fd5b8036038e131561575e57600080fd5b61576b8582898501615509565b958701959450505090840190600101615710565b5050858103604087015261579481888a615690565b9b9a5050505050505050505050565b6040815260006157b66040830185614fd9565b82810360208401526157c88185614fd9565b95945050505050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351615809816017850160208801614b3d565b7f206973206d697373696e6720726f6c65200000000000000000000000000000006017918401918201528351615846816028840160208801614b3d565b01602801949350505050565b60006001600160a01b03808816835280871660208401525084604083015283606083015260a0608083015261568560a0830184614b69565b60006020828403121561589c57600080fd5b8151611d6681614a4c565b600060033d1115612d415760046000803e5060005160e01c90565b600060443d10156158d05790565b6040516003193d81016004833e81513d67ffffffffffffffff816024840111818411171561590057505050505090565b82850191508151818111156159185750505050505090565b843d87010160208285010111156159325750505050505090565b61594160208286010187614bdb565b509095945050505050565b60006001600160a01b03808816835280871660208401525060a0604083015261597860a0830186614fd9565b828103606084015261598a8186614fd9565b9050828103608084015261599e8185614b69565b98975050505050505050565b6000816159b9576159b96154db565b506000190190565b600082516159d3818460208701614b3d565b9190910192915050565b6000828210156159ef576159ef6154db565b500390565b634e487b7160e01b600052603160045260246000fdfe416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a164736f6c6343000809000a
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000003d9182c358e27f88da0ba70fe833d1fa968d82c7000000000000000000000000c82bbe41f2cf04e3a8efa18f7032bdd7f6d98a81000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000003e80000000000000000000000000000000000000000000000000000000000000037697066733a2f2f516d5874786f576967774838696532456a4564786e373646795869615837704c48566848534c72786e4d473958782f30000000000000000000
-----Decoded View---------------
Arg [0] : _controlCenter (address): 0x3d9182C358e27F88dA0BA70fE833D1FA968D82c7
Arg [1] : _trustedForwarder (address): 0xc82BbE41f2cF04e3a8efA18F7032BDD7f6d98a81
Arg [2] : _uri (string): ipfs://QmXtxoWigwH8ie2EjEdxn76FyXiaX7pLHVhHSLrxnMG9Xx/0
Arg [3] : _royaltyBps (uint256): 1000
-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000003d9182c358e27f88da0ba70fe833d1fa968d82c7
Arg [1] : 000000000000000000000000c82bbe41f2cf04e3a8efa18f7032bdd7f6d98a81
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [3] : 00000000000000000000000000000000000000000000000000000000000003e8
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000037
Arg [5] : 697066733a2f2f516d5874786f576967774838696532456a4564786e37364679
Arg [6] : 5869615837704c48566848534c72786e4d473958782f30000000000000000000
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.