Source Code
Overview
ETH Balance
0 ETH
More Info
ContractCreator
TokenTracker
Multichain Info
N/A
| Transaction Hash |
Method
|
Block
|
From
|
To
|
Amount
|
||||
|---|---|---|---|---|---|---|---|---|---|
Latest 1 internal transaction
| Parent Transaction Hash | Block | From | To | Amount | ||
|---|---|---|---|---|---|---|
| 7930402 | 735 days ago | Contract Creation | 0 ETH |
Loading...
Loading
Contract Name:
Loot8UniformCollection
Compiler Version
v0.8.17+commit.8df45f5f
Optimization Enabled:
Yes with 1 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: AGPL-3.0
pragma solidity ^0.8.0;
import "./Loot8Collection.sol";
import "../../interfaces/collections/ILoot8UniformCollection.sol";
contract Loot8UniformCollection is Loot8Collection, ILoot8UniformCollection {
string public contractURI;
address public helper;
constructor(
string memory _name,
string memory _symbol,
string memory _contractURI,
bool _transferable,
address _governor,
address _helper,
address _trustedForwarder,
address _layerZeroEndpoint
) Loot8Collection(_name, _symbol, _transferable, _governor, _trustedForwarder, _layerZeroEndpoint) {
helper = _helper;
contractURI = _contractURI;
}
function updateContractURI(string memory _contractURI) external {
require(_msgSender() == helper || _msgSender() == owner(), "UNAUTHORIZED");
contractURI = _contractURI;
}
function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
_requireMinted(tokenId);
return contractURI;
}
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
return interfaceId == 0x96f8caa1 || // ILoot8UniformCollection
super.supportsInterface(interfaceId);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (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 Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
_checkOwner();
_;
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if the sender is not the owner.
*/
function _checkOwner() internal view virtual {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby disabling 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: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (interfaces/IERC2981.sol)
pragma solidity ^0.8.0;
import "../utils/introspection/IERC165.sol";
/**
* @dev Interface for the NFT Royalty Standard.
*
* A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
* support for royalty payments across all NFT marketplaces and ecosystem participants.
*
* _Available since v4.5._
*/
interface IERC2981 is IERC165 {
/**
* @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
* exchange. The royalty amount is denominated and should be paid in that same unit of exchange.
*/
function royaltyInfo(
uint256 tokenId,
uint256 salePrice
) external view returns (address receiver, uint256 royaltyAmount);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/common/ERC2981.sol)
pragma solidity ^0.8.0;
import "../../interfaces/IERC2981.sol";
import "../../utils/introspection/ERC165.sol";
/**
* @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information.
*
* Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for
* specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first.
*
* Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the
* fee is specified in basis points by default.
*
* IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See
* https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to
* voluntarily pay royalties together with sales, but note that this standard is not yet widely supported.
*
* _Available since v4.5._
*/
abstract contract ERC2981 is IERC2981, ERC165 {
struct RoyaltyInfo {
address receiver;
uint96 royaltyFraction;
}
RoyaltyInfo private _defaultRoyaltyInfo;
mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo;
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC165) returns (bool) {
return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId);
}
/**
* @inheritdoc IERC2981
*/
function royaltyInfo(uint256 tokenId, uint256 salePrice) public view virtual override returns (address, uint256) {
RoyaltyInfo memory royalty = _tokenRoyaltyInfo[tokenId];
if (royalty.receiver == address(0)) {
royalty = _defaultRoyaltyInfo;
}
uint256 royaltyAmount = (salePrice * royalty.royaltyFraction) / _feeDenominator();
return (royalty.receiver, royaltyAmount);
}
/**
* @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a
* fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an
* override.
*/
function _feeDenominator() internal pure virtual returns (uint96) {
return 10000;
}
/**
* @dev Sets the royalty information that all ids in this contract will default to.
*
* Requirements:
*
* - `receiver` cannot be the zero address.
* - `feeNumerator` cannot be greater than the fee denominator.
*/
function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual {
require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
require(receiver != address(0), "ERC2981: invalid receiver");
_defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator);
}
/**
* @dev Removes default royalty information.
*/
function _deleteDefaultRoyalty() internal virtual {
delete _defaultRoyaltyInfo;
}
/**
* @dev Sets the royalty information for a specific token id, overriding the global default.
*
* Requirements:
*
* - `receiver` cannot be the zero address.
* - `feeNumerator` cannot be greater than the fee denominator.
*/
function _setTokenRoyalty(uint256 tokenId, address receiver, uint96 feeNumerator) internal virtual {
require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
require(receiver != address(0), "ERC2981: Invalid parameters");
_tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator);
}
/**
* @dev Resets royalty information for the token id back to the global default.
*/
function _resetTokenRoyalty(uint256 tokenId) internal virtual {
delete _tokenRoyaltyInfo[tokenId];
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC721/ERC721.sol)
pragma solidity ^0.8.0;
import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";
/**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata extension, but not including the Enumerable extension, which is available separately as
* {ERC721Enumerable}.
*/
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
using Address for address;
using Strings for uint256;
// Token name
string private _name;
// Token symbol
string private _symbol;
// Mapping from token ID to owner address
mapping(uint256 => address) private _owners;
// Mapping owner address to token count
mapping(address => uint256) private _balances;
// Mapping from token ID to approved address
mapping(uint256 => address) private _tokenApprovals;
// Mapping from owner to operator approvals
mapping(address => mapping(address => bool)) private _operatorApprovals;
/**
* @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
return
interfaceId == type(IERC721).interfaceId ||
interfaceId == type(IERC721Metadata).interfaceId ||
super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC721-balanceOf}.
*/
function balanceOf(address owner) public view virtual override returns (uint256) {
require(owner != address(0), "ERC721: address zero is not a valid owner");
return _balances[owner];
}
/**
* @dev See {IERC721-ownerOf}.
*/
function ownerOf(uint256 tokenId) public view virtual override returns (address) {
address owner = _ownerOf(tokenId);
require(owner != address(0), "ERC721: invalid token ID");
return owner;
}
/**
* @dev See {IERC721Metadata-name}.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev See {IERC721Metadata-symbol}.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev See {IERC721Metadata-tokenURI}.
*/
function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
_requireMinted(tokenId);
string memory baseURI = _baseURI();
return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
}
/**
* @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
* token will be the concatenation of the `baseURI` and the `tokenId`. Empty
* by default, can be overridden in child contracts.
*/
function _baseURI() internal view virtual returns (string memory) {
return "";
}
/**
* @dev See {IERC721-approve}.
*/
function approve(address to, uint256 tokenId) public virtual override {
address owner = ERC721.ownerOf(tokenId);
require(to != owner, "ERC721: approval to current owner");
require(
_msgSender() == owner || isApprovedForAll(owner, _msgSender()),
"ERC721: approve caller is not token owner or approved for all"
);
_approve(to, tokenId);
}
/**
* @dev See {IERC721-getApproved}.
*/
function getApproved(uint256 tokenId) public view virtual override returns (address) {
_requireMinted(tokenId);
return _tokenApprovals[tokenId];
}
/**
* @dev See {IERC721-setApprovalForAll}.
*/
function setApprovalForAll(address operator, bool approved) public virtual override {
_setApprovalForAll(_msgSender(), operator, approved);
}
/**
* @dev See {IERC721-isApprovedForAll}.
*/
function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
return _operatorApprovals[owner][operator];
}
/**
* @dev See {IERC721-transferFrom}.
*/
function transferFrom(address from, address to, uint256 tokenId) public virtual override {
//solhint-disable-next-line max-line-length
require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved");
_transfer(from, to, tokenId);
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(address from, address to, uint256 tokenId) public virtual override {
safeTransferFrom(from, to, tokenId, "");
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public virtual override {
require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner or approved");
_safeTransfer(from, to, tokenId, data);
}
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* `data` is additional data, it has no specified format and it is sent in call to `to`.
*
* This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
* implement alternative mechanisms to perform token transfer, such as signature-based.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function _safeTransfer(address from, address to, uint256 tokenId, bytes memory data) internal virtual {
_transfer(from, to, tokenId);
require(_checkOnERC721Received(from, to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer");
}
/**
* @dev Returns the owner of the `tokenId`. Does NOT revert if token doesn't exist
*/
function _ownerOf(uint256 tokenId) internal view virtual returns (address) {
return _owners[tokenId];
}
/**
* @dev Returns whether `tokenId` exists.
*
* Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
*
* Tokens start existing when they are minted (`_mint`),
* and stop existing when they are burned (`_burn`).
*/
function _exists(uint256 tokenId) internal view virtual returns (bool) {
return _ownerOf(tokenId) != address(0);
}
/**
* @dev Returns whether `spender` is allowed to manage `tokenId`.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
address owner = ERC721.ownerOf(tokenId);
return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender);
}
/**
* @dev Safely mints `tokenId` and transfers it to `to`.
*
* Requirements:
*
* - `tokenId` must not exist.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function _safeMint(address to, uint256 tokenId) internal virtual {
_safeMint(to, tokenId, "");
}
/**
* @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
* forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
*/
function _safeMint(address to, uint256 tokenId, bytes memory data) internal virtual {
_mint(to, tokenId);
require(
_checkOnERC721Received(address(0), to, tokenId, data),
"ERC721: transfer to non ERC721Receiver implementer"
);
}
/**
* @dev Mints `tokenId` and transfers it to `to`.
*
* WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
*
* Requirements:
*
* - `tokenId` must not exist.
* - `to` cannot be the zero address.
*
* Emits a {Transfer} event.
*/
function _mint(address to, uint256 tokenId) internal virtual {
require(to != address(0), "ERC721: mint to the zero address");
require(!_exists(tokenId), "ERC721: token already minted");
_beforeTokenTransfer(address(0), to, tokenId, 1);
// Check that tokenId was not minted by `_beforeTokenTransfer` hook
require(!_exists(tokenId), "ERC721: token already minted");
unchecked {
// Will not overflow unless all 2**256 token ids are minted to the same owner.
// Given that tokens are minted one by one, it is impossible in practice that
// this ever happens. Might change if we allow batch minting.
// The ERC fails to describe this case.
_balances[to] += 1;
}
_owners[tokenId] = to;
emit Transfer(address(0), to, tokenId);
_afterTokenTransfer(address(0), to, tokenId, 1);
}
/**
* @dev Destroys `tokenId`.
* The approval is cleared when the token is burned.
* This is an internal function that does not check if the sender is authorized to operate on the token.
*
* Requirements:
*
* - `tokenId` must exist.
*
* Emits a {Transfer} event.
*/
function _burn(uint256 tokenId) internal virtual {
address owner = ERC721.ownerOf(tokenId);
_beforeTokenTransfer(owner, address(0), tokenId, 1);
// Update ownership in case tokenId was transferred by `_beforeTokenTransfer` hook
owner = ERC721.ownerOf(tokenId);
// Clear approvals
delete _tokenApprovals[tokenId];
unchecked {
// Cannot overflow, as that would require more tokens to be burned/transferred
// out than the owner initially received through minting and transferring in.
_balances[owner] -= 1;
}
delete _owners[tokenId];
emit Transfer(owner, address(0), tokenId);
_afterTokenTransfer(owner, address(0), tokenId, 1);
}
/**
* @dev Transfers `tokenId` from `from` to `to`.
* As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
*
* Emits a {Transfer} event.
*/
function _transfer(address from, address to, uint256 tokenId) internal virtual {
require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
require(to != address(0), "ERC721: transfer to the zero address");
_beforeTokenTransfer(from, to, tokenId, 1);
// Check that tokenId was not transferred by `_beforeTokenTransfer` hook
require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
// Clear approvals from the previous owner
delete _tokenApprovals[tokenId];
unchecked {
// `_balances[from]` cannot overflow for the same reason as described in `_burn`:
// `from`'s balance is the number of token held, which is at least one before the current
// transfer.
// `_balances[to]` could overflow in the conditions described in `_mint`. That would require
// all 2**256 token ids to be minted, which in practice is impossible.
_balances[from] -= 1;
_balances[to] += 1;
}
_owners[tokenId] = to;
emit Transfer(from, to, tokenId);
_afterTokenTransfer(from, to, tokenId, 1);
}
/**
* @dev Approve `to` to operate on `tokenId`
*
* Emits an {Approval} event.
*/
function _approve(address to, uint256 tokenId) internal virtual {
_tokenApprovals[tokenId] = to;
emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
}
/**
* @dev Approve `operator` to operate on all of `owner` tokens
*
* Emits an {ApprovalForAll} event.
*/
function _setApprovalForAll(address owner, address operator, bool approved) internal virtual {
require(owner != operator, "ERC721: approve to caller");
_operatorApprovals[owner][operator] = approved;
emit ApprovalForAll(owner, operator, approved);
}
/**
* @dev Reverts if the `tokenId` has not been minted yet.
*/
function _requireMinted(uint256 tokenId) internal view virtual {
require(_exists(tokenId), "ERC721: invalid token ID");
}
/**
* @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
* The call is not executed if the target address is not a contract.
*
* @param from address representing the previous owner of the given token ID
* @param to target address that will receive the tokens
* @param tokenId uint256 ID of the token to be transferred
* @param data bytes optional data to send along with the call
* @return bool whether the call correctly returned the expected magic value
*/
function _checkOnERC721Received(
address from,
address to,
uint256 tokenId,
bytes memory data
) private returns (bool) {
if (to.isContract()) {
try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) {
return retval == IERC721Receiver.onERC721Received.selector;
} catch (bytes memory reason) {
if (reason.length == 0) {
revert("ERC721: transfer to non ERC721Receiver implementer");
} else {
/// @solidity memory-safe-assembly
assembly {
revert(add(32, reason), mload(reason))
}
}
}
} else {
return true;
}
}
/**
* @dev Hook that is called before any token transfer. This includes minting and burning. If {ERC721Consecutive} is
* used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, ``from``'s tokens will be transferred to `to`.
* - When `from` is zero, the tokens will be minted for `to`.
* - When `to` is zero, ``from``'s tokens will be burned.
* - `from` and `to` are never both zero.
* - `batchSize` is non-zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(address from, address to, uint256 firstTokenId, uint256 batchSize) internal virtual {}
/**
* @dev Hook that is called after any token transfer. This includes minting and burning. If {ERC721Consecutive} is
* used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, ``from``'s tokens were transferred to `to`.
* - When `from` is zero, the tokens were minted for `to`.
* - When `to` is zero, ``from``'s tokens were burned.
* - `from` and `to` are never both zero.
* - `batchSize` is non-zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _afterTokenTransfer(address from, address to, uint256 firstTokenId, uint256 batchSize) internal virtual {}
/**
* @dev Unsafe write access to the balances, used by extensions that "mint" tokens using an {ownerOf} override.
*
* WARNING: Anyone calling this MUST ensure that the balances remain consistent with the ownership. The invariant
* being that for any address `a` the value returned by `balanceOf(a)` must be equal to the number of tokens such
* that `ownerOf(tokenId)` is `a`.
*/
// solhint-disable-next-line func-name-mixedcase
function __unsafe_increaseBalance(address account, uint256 amount) internal {
_balances[account] += amount;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/extensions/ERC721Royalty.sol)
pragma solidity ^0.8.0;
import "../ERC721.sol";
import "../../common/ERC2981.sol";
import "../../../utils/introspection/ERC165.sol";
/**
* @dev Extension of ERC721 with the ERC2981 NFT Royalty Standard, a standardized way to retrieve royalty payment
* information.
*
* Royalty information can be specified globally for all token ids via {ERC2981-_setDefaultRoyalty}, and/or individually for
* specific token ids via {ERC2981-_setTokenRoyalty}. The latter takes precedence over the first.
*
* IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See
* https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to
* voluntarily pay royalties together with sales, but note that this standard is not yet widely supported.
*
* _Available since v4.5._
*/
abstract contract ERC721Royalty is ERC2981, ERC721 {
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721, ERC2981) returns (bool) {
return super.supportsInterface(interfaceId);
}
/**
* @dev See {ERC721-_burn}. This override additionally clears the royalty information for the token.
*/
function _burn(uint256 tokenId) internal virtual override {
super._burn(tokenId);
_resetTokenRoyalty(tokenId);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)
pragma solidity ^0.8.0;
import "../IERC721.sol";
/**
* @title ERC-721 Non-Fungible Token Standard, optional metadata extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Metadata is IERC721 {
/**
* @dev Returns the token collection name.
*/
function name() external view returns (string memory);
/**
* @dev Returns the token collection symbol.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
*/
function tokenURI(uint256 tokenId) external view returns (string memory);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (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`.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external;
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(address from, address to, uint256 tokenId) external;
/**
* @dev Transfers `tokenId` token from `from` to `to`.
*
* WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721
* or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must
* understand this adds an external call which potentially creates a reentrancy vulnerability.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
*
* Emits a {Transfer} event.
*/
function transferFrom(address from, address to, uint256 tokenId) external;
/**
* @dev Gives permission to `to` to transfer `tokenId` token to another account.
* The approval is cleared when the token is transferred.
*
* Only a single account can be approved at a time, so approving the zero address clears previous approvals.
*
* Requirements:
*
* - The caller must own the token or be an approved operator.
* - `tokenId` must exist.
*
* Emits an {Approval} event.
*/
function approve(address to, uint256 tokenId) external;
/**
* @dev Approve or remove `operator` as an operator for the caller.
* Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
*
* Requirements:
*
* - The `operator` cannot be the caller.
*
* Emits an {ApprovalForAll} event.
*/
function setApprovalForAll(address operator, bool approved) external;
/**
* @dev Returns the account approved for `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function getApproved(uint256 tokenId) external view returns (address operator);
/**
* @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
*
* See {setApprovalForAll}
*/
function isApprovedForAll(address owner, address operator) external view returns (bool);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)
pragma solidity ^0.8.0;
/**
* @title ERC721 token receiver interface
* @dev Interface for any contract that wants to support safeTransfers
* from ERC721 asset contracts.
*/
interface 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 `IERC721Receiver.onERC721Received.selector`.
*/
function onERC721Received(
address operator,
address from,
uint256 tokenId,
bytes calldata data
) external returns (bytes4);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)
pragma solidity ^0.8.1;
/**
* @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
*
* Furthermore, `isContract` will also return true if the target contract within
* the same transaction is already scheduled for destruction by `SELFDESTRUCT`,
* which only has an effect at the end of a transaction.
* ====
*
* [IMPORTANT]
* ====
* You shouldn't rely on `isContract` to protect against flash loan attacks!
*
* Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
* like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
* constructor.
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize/address.code.length, which returns 0
// for contracts in construction, since the code is only stored at the end
// of the constructor execution.
return account.code.length > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://consensys.net/diligence/blog/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.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
(bool success, ) = recipient.call{value: amount}("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev 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) {
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
* the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
*
* _Available since v4.8._
*/
function verifyCallResultFromTarget(
address target,
bool success,
bytes memory returndata,
string memory errorMessage
) internal view returns (bytes memory) {
if (success) {
if (returndata.length == 0) {
// only check isContract if the call was successful and the return data is empty
// otherwise we already know that it was a contract
require(isContract(target), "Address: call to non-contract");
}
return returndata;
} else {
_revert(returndata, errorMessage);
}
}
/**
* @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason or using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
_revert(returndata, errorMessage);
}
}
function _revert(bytes memory returndata, string memory errorMessage) private pure {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
/// @solidity memory-safe-assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts 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 (utils/Counters.sol)
pragma solidity ^0.8.0;
/**
* @title Counters
* @author Matt Condon (@shrugs)
* @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
* of elements in a mapping, issuing ERC721 ids, or counting request ids.
*
* Include with `using Counters for Counters.Counter;`
*/
library Counters {
struct Counter {
// This variable should never be directly accessed by users of the library: interactions must be restricted to
// the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
// this feature: see https://github.com/ethereum/solidity/issues/4637
uint256 _value; // default: 0
}
function current(Counter storage counter) internal view returns (uint256) {
return counter._value;
}
function increment(Counter storage counter) internal {
unchecked {
counter._value += 1;
}
}
function decrement(Counter storage counter) internal {
uint256 value = counter._value;
require(value > 0, "Counter: decrement overflow");
unchecked {
counter._value = value - 1;
}
}
function reset(Counter storage counter) internal {
counter._value = 0;
}
}// 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 (last updated v4.9.0) (utils/math/Math.sol)
pragma solidity ^0.8.0;
/**
* @dev Standard math utilities missing in the Solidity language.
*/
library Math {
enum Rounding {
Down, // Toward negative infinity
Up, // Toward infinity
Zero // Toward zero
}
/**
* @dev Returns the largest of two numbers.
*/
function max(uint256 a, uint256 b) internal pure returns (uint256) {
return a > b ? a : b;
}
/**
* @dev Returns the smallest of two numbers.
*/
function min(uint256 a, uint256 b) internal pure returns (uint256) {
return a < b ? a : b;
}
/**
* @dev Returns the average of two numbers. The result is rounded towards
* zero.
*/
function average(uint256 a, uint256 b) internal pure returns (uint256) {
// (a + b) / 2 can overflow.
return (a & b) + (a ^ b) / 2;
}
/**
* @dev Returns the ceiling of the division of two numbers.
*
* This differs from standard division with `/` in that it rounds up instead
* of rounding down.
*/
function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
// (a + b - 1) / b can overflow on addition, so we distribute.
return a == 0 ? 0 : (a - 1) / b + 1;
}
/**
* @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
* @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
* with further edits by Uniswap Labs also under MIT license.
*/
function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) {
unchecked {
// 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
// use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
// variables such that product = prod1 * 2^256 + prod0.
uint256 prod0; // Least significant 256 bits of the product
uint256 prod1; // Most significant 256 bits of the product
assembly {
let mm := mulmod(x, y, not(0))
prod0 := mul(x, y)
prod1 := sub(sub(mm, prod0), lt(mm, prod0))
}
// Handle non-overflow cases, 256 by 256 division.
if (prod1 == 0) {
// Solidity will revert if denominator == 0, unlike the div opcode on its own.
// The surrounding unchecked block does not change this fact.
// See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.
return prod0 / denominator;
}
// Make sure the result is less than 2^256. Also prevents denominator == 0.
require(denominator > prod1, "Math: mulDiv overflow");
///////////////////////////////////////////////
// 512 by 256 division.
///////////////////////////////////////////////
// Make division exact by subtracting the remainder from [prod1 prod0].
uint256 remainder;
assembly {
// Compute remainder using mulmod.
remainder := mulmod(x, y, denominator)
// Subtract 256 bit number from 512 bit number.
prod1 := sub(prod1, gt(remainder, prod0))
prod0 := sub(prod0, remainder)
}
// Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
// See https://cs.stackexchange.com/q/138556/92363.
// Does not overflow because the denominator cannot be zero at this stage in the function.
uint256 twos = denominator & (~denominator + 1);
assembly {
// Divide denominator by twos.
denominator := div(denominator, twos)
// Divide [prod1 prod0] by twos.
prod0 := div(prod0, twos)
// Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
twos := add(div(sub(0, twos), twos), 1)
}
// Shift in bits from prod1 into prod0.
prod0 |= prod1 * twos;
// Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
// that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
// four bits. That is, denominator * inv = 1 mod 2^4.
uint256 inverse = (3 * denominator) ^ 2;
// Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
// in modular arithmetic, doubling the correct bits in each step.
inverse *= 2 - denominator * inverse; // inverse mod 2^8
inverse *= 2 - denominator * inverse; // inverse mod 2^16
inverse *= 2 - denominator * inverse; // inverse mod 2^32
inverse *= 2 - denominator * inverse; // inverse mod 2^64
inverse *= 2 - denominator * inverse; // inverse mod 2^128
inverse *= 2 - denominator * inverse; // inverse mod 2^256
// Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
// This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
// less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
// is no longer required.
result = prod0 * inverse;
return result;
}
}
/**
* @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
*/
function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) {
uint256 result = mulDiv(x, y, denominator);
if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
result += 1;
}
return result;
}
/**
* @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
*
* Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
*/
function sqrt(uint256 a) internal pure returns (uint256) {
if (a == 0) {
return 0;
}
// For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
//
// We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
// `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
//
// This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
// → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
// → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
//
// Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
uint256 result = 1 << (log2(a) >> 1);
// At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
// since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
// every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
// into the expected uint128 result.
unchecked {
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
return min(result, a / result);
}
}
/**
* @notice Calculates sqrt(a), following the selected rounding direction.
*/
function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = sqrt(a);
return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
}
}
/**
* @dev Return the log in base 2, rounded down, of a positive value.
* Returns 0 if given 0.
*/
function log2(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
unchecked {
if (value >> 128 > 0) {
value >>= 128;
result += 128;
}
if (value >> 64 > 0) {
value >>= 64;
result += 64;
}
if (value >> 32 > 0) {
value >>= 32;
result += 32;
}
if (value >> 16 > 0) {
value >>= 16;
result += 16;
}
if (value >> 8 > 0) {
value >>= 8;
result += 8;
}
if (value >> 4 > 0) {
value >>= 4;
result += 4;
}
if (value >> 2 > 0) {
value >>= 2;
result += 2;
}
if (value >> 1 > 0) {
result += 1;
}
}
return result;
}
/**
* @dev Return the log in base 2, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = log2(value);
return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
}
}
/**
* @dev Return the log in base 10, rounded down, of a positive value.
* Returns 0 if given 0.
*/
function log10(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
unchecked {
if (value >= 10 ** 64) {
value /= 10 ** 64;
result += 64;
}
if (value >= 10 ** 32) {
value /= 10 ** 32;
result += 32;
}
if (value >= 10 ** 16) {
value /= 10 ** 16;
result += 16;
}
if (value >= 10 ** 8) {
value /= 10 ** 8;
result += 8;
}
if (value >= 10 ** 4) {
value /= 10 ** 4;
result += 4;
}
if (value >= 10 ** 2) {
value /= 10 ** 2;
result += 2;
}
if (value >= 10 ** 1) {
result += 1;
}
}
return result;
}
/**
* @dev Return the log in base 10, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = log10(value);
return result + (rounding == Rounding.Up && 10 ** result < value ? 1 : 0);
}
}
/**
* @dev Return the log in base 256, rounded down, of a positive value.
* Returns 0 if given 0.
*
* Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
*/
function log256(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
unchecked {
if (value >> 128 > 0) {
value >>= 128;
result += 16;
}
if (value >> 64 > 0) {
value >>= 64;
result += 8;
}
if (value >> 32 > 0) {
value >>= 32;
result += 4;
}
if (value >> 16 > 0) {
value >>= 16;
result += 2;
}
if (value >> 8 > 0) {
result += 1;
}
}
return result;
}
/**
* @dev Return the log in base 256, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = log256(value);
return result + (rounding == Rounding.Up && 1 << (result << 3) < value ? 1 : 0);
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/SignedMath.sol)
pragma solidity ^0.8.0;
/**
* @dev Standard signed math utilities missing in the Solidity language.
*/
library SignedMath {
/**
* @dev Returns the largest of two signed numbers.
*/
function max(int256 a, int256 b) internal pure returns (int256) {
return a > b ? a : b;
}
/**
* @dev Returns the smallest of two signed numbers.
*/
function min(int256 a, int256 b) internal pure returns (int256) {
return a < b ? a : b;
}
/**
* @dev Returns the average of two signed numbers without overflow.
* The result is rounded towards zero.
*/
function average(int256 a, int256 b) internal pure returns (int256) {
// Formula from the book "Hacker's Delight"
int256 x = (a & b) + ((a ^ b) >> 1);
return x + (int256(uint256(x) >> 255) & (a ^ b));
}
/**
* @dev Returns the absolute unsigned value of a signed value.
*/
function abs(int256 n) internal pure returns (uint256) {
unchecked {
// must be unchecked in order to support `n = type(int256).min`
return uint256(n >= 0 ? n : -n);
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/Strings.sol)
pragma solidity ^0.8.0;
import "./math/Math.sol";
import "./math/SignedMath.sol";
/**
* @dev String operations.
*/
library Strings {
bytes16 private constant _SYMBOLS = "0123456789abcdef";
uint8 private constant _ADDRESS_LENGTH = 20;
/**
* @dev Converts a `uint256` to its ASCII `string` decimal representation.
*/
function toString(uint256 value) internal pure returns (string memory) {
unchecked {
uint256 length = Math.log10(value) + 1;
string memory buffer = new string(length);
uint256 ptr;
/// @solidity memory-safe-assembly
assembly {
ptr := add(buffer, add(32, length))
}
while (true) {
ptr--;
/// @solidity memory-safe-assembly
assembly {
mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
}
value /= 10;
if (value == 0) break;
}
return buffer;
}
}
/**
* @dev Converts a `int256` to its ASCII `string` decimal representation.
*/
function toString(int256 value) internal pure returns (string memory) {
return string(abi.encodePacked(value < 0 ? "-" : "", toString(SignedMath.abs(value))));
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
*/
function toHexString(uint256 value) internal pure returns (string memory) {
unchecked {
return toHexString(value, Math.log256(value) + 1);
}
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
*/
function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
bytes memory buffer = new bytes(2 * length + 2);
buffer[0] = "0";
buffer[1] = "x";
for (uint256 i = 2 * length + 1; i > 1; --i) {
buffer[i] = _SYMBOLS[value & 0xf];
value >>= 4;
}
require(value == 0, "Strings: hex length insufficient");
return string(buffer);
}
/**
* @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
*/
function toHexString(address addr) internal pure returns (string memory) {
return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
}
/**
* @dev Returns true if the two strings are equal.
*/
function equal(string memory a, string memory b) internal pure returns (bool) {
return keccak256(bytes(a)) == keccak256(bytes(b));
}
}// SPDX-License-Identifier: AGPL-3.0
pragma solidity ^0.8.0;
import "../layerzero/NonblockingLzApp.sol";
import "../../interfaces/misc/ICollectionManager.sol";
import "../../interfaces/collections/ILoot8Collection.sol";
import "../../interfaces/collections/ILoot8BurnableCollection.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Royalty.sol";
contract Loot8Collection is ERC721, ERC721Royalty, ILoot8Collection, ILoot8BurnableCollection, NonblockingLzApp {
// events for cross-chain transfers
event CollectibleReceived(address indexed to, uint256 srcChainId, uint256 collectibleId);
event CollectibleSent(address indexed from, uint256 destChainId, uint256 collectibleId);
event MintingDisabled(address _collection);
event ManagerSet(address _manager);
event SubscriptionManagerSet(address _subscriptionManager);
using Counters for Counters.Counter;
Counters.Counter public collectionCollectibleIds;
bool public transferable;
bool public disabled;
address public manager;
address public governor;
address public trustedForwarder;
address public subscriptionManager;
constructor(
string memory _name,
string memory _symbol,
bool _transferable,
address _governor,
address _trustedForwarder,
address _layerZeroEndpoint
) ERC721(_name, _symbol)
NonblockingLzApp(_layerZeroEndpoint) {
// Start from 1 as 0 is for existence check
collectionCollectibleIds.increment();
transferable = _transferable;
governor = _governor;
trustedForwarder = _trustedForwarder;
}
/**
* @notice Mints a token to the patron
* @param _patron address Address of the patron
*/
function mint(
address _patron,
uint256 _collectibleId
) public virtual
{
require(msg.sender == manager || msg.sender == subscriptionManager, "UNAUTHORIZED");
require(!disabled, "MINTING IS DISABLED");
_safeMint(_patron, _collectibleId);
collectionCollectibleIds.increment();
}
/**
* @notice Mints next available token to the patron's address
* @param _patron address Address of the patron
*/
function mintNext(address _patron) public virtual {
require(msg.sender == manager || msg.sender == subscriptionManager, "UNAUTHORIZED");
mint(_patron, collectionCollectibleIds.current());
}
function disableMinting() external {
require(_msgSender() == governor, "UNAUTHORIZED");
require(!disabled, "MINTING ALREADY DISABLED");
disabled = true;
emit MintingDisabled(address(this));
}
function _burn(uint256 tokenId) internal virtual override(ERC721, ERC721Royalty) {
ERC721Royalty._burn(tokenId);
}
function burn(uint256 tokenId) external {
require(
(_isApprovedOrOwner(_msgSender(), tokenId)) ||
(
(msg.sender == manager || msg.sender == subscriptionManager) &&
!disabled
), "UNAUTHORIZED OR BURN DISABLED"
);
_burn(tokenId);
}
function getNextTokenId() external view returns(uint256 _collectionCollectibleId) {
return collectionCollectibleIds.current();
}
function _transfer(
address from,
address to,
uint256 tokenId
) internal override {
require(transferable, "TRANSFERS ARE NOT ALLOWED");
super._transfer(from, to, tokenId);
}
/* ======== LayerZero ======== */
/**
* @notice Used to send the collectible to another blockchain
* @param _destinationChainId uint16 Chain ID for destination chain
* @param _collectibleId uint256 Collectible ID for the Collectible to be transferred
*/
function sendCollectibleToChain(
uint16 _destinationChainId,
uint256 _collectibleId
) external virtual payable {
require(ownerOf(_collectibleId) == _msgSender(), "SENDER NOT OWNER");
// Burn the collectible on this chain so it can be reinstantiated on the destination chain
_burn(_collectibleId);
// Prepare payload to mint collectible and restore state on destination chain
bytes memory payload = abi.encode(
_msgSender(),
_collectibleId
);
// Encode the adapterParams to require more gas for the destination function call (and LayerZero message fees)
// You can see an example of this here: https://layerzero.gitbook.io/docs/guides/advanced/relayer-adapter-parameters
uint16 version = 1;
uint256 gas = 200000;
bytes memory adapterParams = abi.encodePacked(version, gas);
(uint256 messageFee, ) = this.estimateFees(
_destinationChainId,
address(this),
payload,
false,
adapterParams
);
// Send the message to the LayerZero endpoint to initiate the Collectible transfer
require(msg.value >= messageFee, "NOT ENOUGH MESSAGE VALUE FOR GAS");
_lzSend(_destinationChainId, payload, payable(_msgSender()), address(0x0), adapterParams, msg.value);
// Emit an event for transfer of Collectible to another chain
emit CollectibleSent(_msgSender(), _destinationChainId, _collectibleId);
}
/*
* @notice Receives the message from the endpoint on the destination chain to mint/remint the Collectible on this chain
* @param _srcChainId uint16 Chain ID for source chain
* @param _from uint256 address of the sender
* @param _nonce uint64 Nonce
* @param _payload bytes Data needed to restore the state of the Collectible on this chain
*/
function _nonblockingLzReceive(uint16 _srcChainId, bytes memory _from, uint64, bytes memory _payload) internal virtual override {
address from;
assembly {
from := mload(add(_from, 20))
}
(address toAddress, uint256 collectibleId) = abi.decode(
_payload,
(address, uint256)
);
// Mint the Collectible on this chain
_safeMint(toAddress, collectibleId);
// Emit an event for reception of Collectible on destination chain
emit CollectibleReceived(toAddress, _srcChainId, collectibleId);
}
/**
* @notice Returns an estimate of cross chain fees for the message to the remote endpoint when doing a Collectible transfer
* @param _dstChainId uint16 Chain ID for destination chain
* @param _userApplication uint256 address of the sender UA
* @param _payload uint64 Data needed to restore the state of the Collectible on this chain
* @param _payInZRO bytes
* @param _adapterParams bytes
*/
function estimateFees(uint16 _dstChainId, address _userApplication, bytes calldata _payload, bool _payInZRO, bytes calldata _adapterParams) external virtual view returns (uint256 nativeFee, uint256 zroFee) {
return
ILayerZeroEndpoint(lzEndpoint).estimateFees(
_dstChainId,
_userApplication,
_payload,
_payInZRO,
_adapterParams
);
}
/* ========= ERC2771 ============ */
function isTrustedForwarder(address sender) internal view returns (bool) {
return sender == 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`.
/// @solidity memory-safe-assembly
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();
}
}
function setTokenRoyalty(uint256 _tokenId, address _receiver, uint96 _feeNumerator) external {
require(_msgSender() == governor, "UNAUTHORIZED");
_setTokenRoyalty(_tokenId, _receiver, _feeNumerator);
}
function resetTokenRoyalty(uint256 tokenId) external {
require(_msgSender() == governor, "UNAUTHORIZED");
_resetTokenRoyalty(tokenId);
}
function setDefaultRoyalty(address _receiver, uint96 _feeNumerator) external {
require(_msgSender() == governor, "UNAUTHORIZED");
_setDefaultRoyalty(_receiver, _feeNumerator);
}
function deleteDefaultRoyalty() external {
require(_msgSender() == governor, "UNAUTHORIZED");
_deleteDefaultRoyalty();
}
function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721, ERC721Royalty) returns (bool) {
return interfaceId == 0x01ffc9a7 || // IERC165
interfaceId == 0x80ac58cd || // IERC721
interfaceId == 0x5b5e139f || // IERC721Metadata
interfaceId == 0x2a55205a || // IERC2981
interfaceId == 0x7a4aa290 || // ILoot8Collection
interfaceId == 0x42966c68 || // ILoot8BurnableCollection
interfaceId == 0xf625229c; // ILayerZeroReceiver
}
function setManager(address _manager) external onlyOwner {
require(manager == address(0), "MANAGER IS SET");
manager = _manager;
emit ManagerSet(_manager);
}
function setSubscriptionManager(address _subscriptionManager) external onlyOwner {
require(subscriptionManager == address(0), "SUBSCRIPTION MANAGER IS SET");
subscriptionManager = _subscriptionManager;
emit SubscriptionManagerSet(subscriptionManager);
}
function isValidToken(uint256 _tokenId) public view returns(bool) {
return _exists(_tokenId);
}
}// SPDX-License-Identifier: MIT
// Source Link https://github.com/LayerZero-Labs/solidity-examples/blob/main/contracts/lzApp/LzApp.sol
pragma solidity ^0.8.0;
import "../../util/BytesLib.sol";
import "../../interfaces/layerzero/ILayerZeroReceiver.sol";
import "../../interfaces/layerzero/ILayerZeroEndpoint.sol";
import "../../interfaces/layerzero/ILayerZeroUserApplicationConfig.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
/*
* a generic LzReceiver implementation
*/
abstract contract LzApp is Ownable, ILayerZeroReceiver, ILayerZeroUserApplicationConfig {
using BytesLib for bytes;
ILayerZeroEndpoint public immutable lzEndpoint;
mapping(uint16 => bytes) public trustedRemoteLookup;
mapping(uint16 => mapping(uint16 => uint)) public minDstGasLookup;
address public precrime;
event SetPrecrime(address precrime);
event SetTrustedRemote(uint16 _remoteChainId, bytes _path);
event SetTrustedRemoteAddress(uint16 _remoteChainId, bytes _remoteAddress);
event SetMinDstGas(uint16 _dstChainId, uint16 _type, uint _minDstGas);
constructor(address _endpoint) {
lzEndpoint = ILayerZeroEndpoint(_endpoint);
}
function lzReceive(uint16 _srcChainId, bytes calldata _srcAddress, uint64 _nonce, bytes calldata _payload) public virtual override {
// lzReceive must be called by the endpoint for security
require(_msgSender() == address(lzEndpoint), "LzApp: invalid endpoint caller");
bytes memory trustedRemote = trustedRemoteLookup[_srcChainId];
// if will still block the message pathway from (srcChainId, srcAddress). should not receive message from untrusted remote.
require(_srcAddress.length == trustedRemote.length && trustedRemote.length > 0 && keccak256(_srcAddress) == keccak256(trustedRemote), "LzApp: invalid source sending contract");
_blockingLzReceive(_srcChainId, _srcAddress, _nonce, _payload);
}
// abstract function - the default behaviour of LayerZero is blocking. See: NonblockingLzApp if you dont need to enforce ordered messaging
function _blockingLzReceive(uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload) internal virtual;
function _lzSend(uint16 _dstChainId, bytes memory _payload, address payable _refundAddress, address _zroPaymentAddress, bytes memory _adapterParams, uint _nativeFee) internal virtual {
bytes memory trustedRemote = trustedRemoteLookup[_dstChainId];
require(trustedRemote.length != 0, "LzApp: destination chain is not a trusted source");
lzEndpoint.send{value: _nativeFee}(_dstChainId, trustedRemote, _payload, _refundAddress, _zroPaymentAddress, _adapterParams);
}
function _checkGasLimit(uint16 _dstChainId, uint16 _type, bytes memory _adapterParams, uint _extraGas) internal view virtual {
uint providedGasLimit = _getGasLimit(_adapterParams);
uint minGasLimit = minDstGasLookup[_dstChainId][_type] + _extraGas;
require(minGasLimit > 0, "LzApp: minGasLimit not set");
require(providedGasLimit >= minGasLimit, "LzApp: gas limit is too low");
}
function _getGasLimit(bytes memory _adapterParams) internal pure virtual returns (uint gasLimit) {
require(_adapterParams.length >= 34, "LzApp: invalid adapterParams");
assembly {
gasLimit := mload(add(_adapterParams, 34))
}
}
//---------------------------UserApplication config----------------------------------------
function getConfig(uint16 _version, uint16 _chainId, address, uint _configType) external view returns (bytes memory) {
return lzEndpoint.getConfig(_version, _chainId, address(this), _configType);
}
// generic config for LayerZero user Application
function setConfig(uint16 _version, uint16 _chainId, uint _configType, bytes calldata _config) external override onlyOwner {
lzEndpoint.setConfig(_version, _chainId, _configType, _config);
}
function setSendVersion(uint16 _version) external override onlyOwner {
lzEndpoint.setSendVersion(_version);
}
function setReceiveVersion(uint16 _version) external override onlyOwner {
lzEndpoint.setReceiveVersion(_version);
}
function forceResumeReceive(uint16 _srcChainId, bytes calldata _srcAddress) external override onlyOwner {
lzEndpoint.forceResumeReceive(_srcChainId, _srcAddress);
}
// _path = abi.encodePacked(remoteAddress, localAddress)
// this function set the trusted path for the cross-chain communication
function setTrustedRemote(uint16 _srcChainId, bytes calldata _path) external onlyOwner {
trustedRemoteLookup[_srcChainId] = _path;
emit SetTrustedRemote(_srcChainId, _path);
}
function setTrustedRemoteAddress(uint16 _remoteChainId, bytes calldata _remoteAddress) external onlyOwner {
trustedRemoteLookup[_remoteChainId] = abi.encodePacked(_remoteAddress, address(this));
emit SetTrustedRemoteAddress(_remoteChainId, _remoteAddress);
}
function getTrustedRemoteAddress(uint16 _remoteChainId) external view returns (bytes memory) {
bytes memory path = trustedRemoteLookup[_remoteChainId];
require(path.length != 0, "LzApp: no trusted path record");
return path.slice(0, path.length - 20); // the last 20 bytes should be address(this)
}
function setPrecrime(address _precrime) external onlyOwner {
precrime = _precrime;
emit SetPrecrime(_precrime);
}
function setMinDstGas(uint16 _dstChainId, uint16 _packetType, uint _minGas) external onlyOwner {
require(_minGas > 0, "LzApp: invalid minGas");
minDstGasLookup[_dstChainId][_packetType] = _minGas;
emit SetMinDstGas(_dstChainId, _packetType, _minGas);
}
//--------------------------- VIEW FUNCTION ----------------------------------------
function isTrustedRemote(uint16 _srcChainId, bytes calldata _srcAddress) external view returns (bool) {
bytes memory trustedSource = trustedRemoteLookup[_srcChainId];
return keccak256(trustedSource) == keccak256(_srcAddress);
}
}// SPDX-License-Identifier: MIT
// Source Link https://github.com/LayerZero-Labs/solidity-examples/blob/main/contracts/lzApp/NonblockingLzApp.sol
pragma solidity ^0.8.0;
import "./LzApp.sol";
import "../../util/ExcessivelySafeCall.sol";
/*
* the default LayerZero messaging behaviour is blocking, i.e. any failed message will block the channel
* this abstract class try-catch all fail messages and store locally for future retry. hence, non-blocking
* NOTE: if the srcAddress is not configured properly, it will still block the message pathway from (srcChainId, srcAddress)
*/
abstract contract NonblockingLzApp is LzApp {
using ExcessivelySafeCall for address;
constructor(address _endpoint) LzApp(_endpoint) {}
mapping(uint16 => mapping(bytes => mapping(uint64 => bytes32))) public failedMessages;
event MessageFailed(uint16 _srcChainId, bytes _srcAddress, uint64 _nonce, bytes _payload, bytes _reason);
event RetryMessageSuccess(uint16 _srcChainId, bytes _srcAddress, uint64 _nonce, bytes32 _payloadHash);
// overriding the virtual function in LzReceiver
function _blockingLzReceive(uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload) internal virtual override {
(bool success, bytes memory reason) = address(this).excessivelySafeCall(gasleft(), 150, abi.encodeWithSelector(this.nonblockingLzReceive.selector, _srcChainId, _srcAddress, _nonce, _payload));
// try-catch all errors/exceptions
if (!success) {
_storeFailedMessage(_srcChainId, _srcAddress, _nonce, _payload, reason);
}
}
function _storeFailedMessage(uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload, bytes memory _reason) internal virtual {
failedMessages[_srcChainId][_srcAddress][_nonce] = keccak256(_payload);
emit MessageFailed(_srcChainId, _srcAddress, _nonce, _payload, _reason);
}
function nonblockingLzReceive(uint16 _srcChainId, bytes calldata _srcAddress, uint64 _nonce, bytes calldata _payload) public virtual {
// only internal transaction
require(_msgSender() == address(this), "NonblockingLzApp: caller must be LzApp");
_nonblockingLzReceive(_srcChainId, _srcAddress, _nonce, _payload);
}
//@notice override this function
function _nonblockingLzReceive(uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload) internal virtual;
function retryMessage(uint16 _srcChainId, bytes calldata _srcAddress, uint64 _nonce, bytes calldata _payload) public payable virtual {
// assert there is message to retry
bytes32 payloadHash = failedMessages[_srcChainId][_srcAddress][_nonce];
require(payloadHash != bytes32(0), "NonblockingLzApp: no stored message");
require(keccak256(_payload) == payloadHash, "NonblockingLzApp: invalid payload");
// clear the stored message
failedMessages[_srcChainId][_srcAddress][_nonce] = bytes32(0);
// execute the message. revert if it fails again
_nonblockingLzReceive(_srcChainId, _srcAddress, _nonce, _payload);
emit RetryMessageSuccess(_srcChainId, _srcAddress, _nonce, payloadHash);
}
}// SPDX-License-Identifier: AGPL-3.0
pragma solidity ^0.8.0;
interface IDAOAuthority {
/*********** EVENTS *************/
event ChangedGovernor(address _newGovernor);
event ChangedPolicy(address _newPolicy);
event ChangedAdmin(address _newAdmin);
event ChangedForwarder(address _newForwarder);
event ChangedDispatcher(address _newDispatcher);
event ChangedCollectionHelper(address _newCollectionHelper);
event ChangedCollectionManager(address _newCollectionManager);
event ChangedTokenPriceCalculator(address _newTokenPriceCalculator);
struct Authorities {
address governor;
address policy;
address admin;
address forwarder;
address dispatcher;
address collectionManager;
address tokenPriceCalculator;
}
function collectionHelper() external view returns(address);
function getAuthorities() external view returns(Authorities memory);
}// SPDX-License-Identifier: AGPL-3.0
pragma solidity ^0.8.0;
interface ICollectionData {
enum CollectionType {
ANY,
PASSPORT,
OFFER,
COLLECTION,
BADGE,
EVENT,
PREMIUM_ACCESS,
GAMEBOARD
}
enum OfferType {
NOTANOFFER,
FEATURED,
REGULAR
}
enum MintModel {
REGULAR,
SUBSCRIPTION
}
struct CollectionData {
// A collectible may optionally be linked to an entity
// If its not then this will be address(0)
address entity;
// Flag that checks if a collectible should be minted when a collectible which it is linked to is minted
// Eg: Offers/Events that should be airdropped along with passport for them
// If true for a linked collectible, mintLinked can be called by the
// dispatcher contract to mint collectibles linked to it
bool mintWithLinked;
// Price per collectible in this collection.
// 6 decimals precision 24494022 = 24.494022 USD
uint256 price;
// Max Purchase limit for this collection.
uint256 maxPurchase;
// Start time from when the Collection will be on offer to patrons
// Zero for non-time bound
uint256 start;
// End time from when the Collection will no longer be available for purchase
// Zero for non-time bound
uint256 end;
// Flag to indicate the need for check in to place an order
bool checkInNeeded;
// Maximum tokens that can be minted for this collection
// Used for passports
// Zero for unlimited
uint256 maxMint;
// Type of offer represented by the collection(NOTANOFFER for passports and other collections)
OfferType offerType;
// Non zero when the collection needs some criteria to be fulfilled on a passport
address passport;
// Min reward balance needed to get a collectible of this collection airdropped
int256 minRewardBalance;
// Min visits needed to get a collectible this collection airdropped
uint256 minVisits;
// Min friend visits needed to get a collectible this collection airdropped
uint256 minFriendVisits;
// Storage Gap
uint256[20] __gap;
}
struct CollectionDataAdditional {
// Max Balance a patron can hold for this collection.
// Zero for 1
uint256 maxBalance;
// Is minted only when a linked collection is minted
bool mintWithLinkedOnly;
uint256 isCoupon; //zero = false, nonzero = true.
MintModel mintModel; // The mint model for the collection. REGULAR, SUBSCRIPTION, etc.
// Storage Gap
uint256[17] __gap;
}
struct CollectibleDetails {
uint256 id;
uint256 mintTime; // timestamp
bool isActive;
int256 rewardBalance; // used for passports only
uint256 visits; // // used for passports only
uint256 friendVisits; // used for passports only
// A flag indicating whether the collectible was redeemed
// This can be useful in scenarios such as cancellation of orders
// where the the collectible minted to patron is supposed to be burnt/demarcated
// in some way when the payment is reversed to patron
bool redeemed;
// Storage Gap
uint256[20] __gap;
}
}// SPDX-License-Identifier: AGPL-3.0
pragma solidity ^0.8.0;
interface ILoot8BurnableCollection {
/**
* @dev Burns a token belonging to the collection
* @param tokenId uint256 tokenId that should be burned
*/
function burn(uint256 tokenId) external;
}// SPDX-License-Identifier: AGPL-3.0
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import "@openzeppelin/contracts/utils/introspection/IERC165.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol";
/**
* @title Minimally required collection interface of a LOOT8 compliant contract.
*/
interface ILoot8Collection {
/**
* @dev Mints `_collectibleId` and transfers it to `_patron`.
* @param _patron address representing an owner of minted token
* @param _collectibleId a tokenId to mint
*
* Requirements:
* - `tokenId` must not exist.
*/
function mint(address _patron, uint256 _collectibleId) external;
/**
* @dev Returns a tokenId available for minting.
*/
function getNextTokenId() external view returns(uint256 tokenId);
/**
* @dev Checks if a given tokenId is a valid token belonging to the collection
* @param _collectibleId a tokenId to validate
*/
function isValidToken(uint256 _collectibleId) external view returns(bool);
}// SPDX-License-Identifier: AGPL-3.0
pragma solidity ^0.8.0;
interface ILoot8UniformCollection {
/**
* @dev Returns a contract-level metadata URI.
*/
function contractURI() external view returns (string memory);
/**
* @dev Updates the metadata URI for the collection
* @param _contractURI string new contract URI
*/
function updateContractURI(string memory _contractURI) external;
}// SPDX-License-Identifier: AGPL-3.0
// Source Link https://github.com/LayerZero-Labs/solidity-examples/blob/main/contracts/interfaces/ILayerZeroEndpoint.sol
pragma solidity ^0.8.0;
import "./ILayerZeroUserApplicationConfig.sol";
interface ILayerZeroEndpoint is ILayerZeroUserApplicationConfig {
// @notice send a LayerZero message to the specified address at a LayerZero endpoint.
// @param _dstChainId - the destination chain identifier
// @param _destination - the address on destination chain (in bytes). address length/format may vary by chains
// @param _payload - a custom bytes payload to send to the destination contract
// @param _refundAddress - if the source transaction is cheaper than the amount of value passed, refund the additional amount to this address
// @param _zroPaymentAddress - the address of the ZRO token holder who would pay for the transaction
// @param _adapterParams - parameters for custom functionality. e.g. receive airdropped native gas from the relayer on destination
function send(uint16 _dstChainId, bytes calldata _destination, bytes calldata _payload, address payable _refundAddress, address _zroPaymentAddress, bytes calldata _adapterParams) external payable;
// @notice used by the messaging library to publish verified payload
// @param _srcChainId - the source chain identifier
// @param _srcAddress - the source contract (as bytes) at the source chain
// @param _dstAddress - the address on destination chain
// @param _nonce - the unbound message ordering nonce
// @param _gasLimit - the gas limit for external contract execution
// @param _payload - verified payload to send to the destination contract
function receivePayload(uint16 _srcChainId, bytes calldata _srcAddress, address _dstAddress, uint64 _nonce, uint _gasLimit, bytes calldata _payload) external;
// @notice get the inboundNonce of a lzApp from a source chain which could be EVM or non-EVM chain
// @param _srcChainId - the source chain identifier
// @param _srcAddress - the source chain contract address
function getInboundNonce(uint16 _srcChainId, bytes calldata _srcAddress) external view returns (uint64);
// @notice get the outboundNonce from this source chain which, consequently, is always an EVM
// @param _srcAddress - the source chain contract address
function getOutboundNonce(uint16 _dstChainId, address _srcAddress) external view returns (uint64);
// @notice gets a quote in source native gas, for the amount that send() requires to pay for message delivery
// @param _dstChainId - the destination chain identifier
// @param _userApplication - the user app address on this EVM chain
// @param _payload - the custom message to send over LayerZero
// @param _payInZRO - if false, user app pays the protocol fee in native token
// @param _adapterParam - parameters for the adapter service, e.g. send some dust native token to dstChain
function estimateFees(uint16 _dstChainId, address _userApplication, bytes calldata _payload, bool _payInZRO, bytes calldata _adapterParam) external view returns (uint nativeFee, uint zroFee);
// @notice get this Endpoint's immutable source identifier
function getChainId() external view returns (uint16);
// @notice the interface to retry failed message on this Endpoint destination
// @param _srcChainId - the source chain identifier
// @param _srcAddress - the source chain contract address
// @param _payload - the payload to be retried
function retryPayload(uint16 _srcChainId, bytes calldata _srcAddress, bytes calldata _payload) external;
// @notice query if any STORED payload (message blocking) at the endpoint.
// @param _srcChainId - the source chain identifier
// @param _srcAddress - the source chain contract address
function hasStoredPayload(uint16 _srcChainId, bytes calldata _srcAddress) external view returns (bool);
// @notice query if the _libraryAddress is valid for sending msgs.
// @param _userApplication - the user app address on this EVM chain
function getSendLibraryAddress(address _userApplication) external view returns (address);
// @notice query if the _libraryAddress is valid for receiving msgs.
// @param _userApplication - the user app address on this EVM chain
function getReceiveLibraryAddress(address _userApplication) external view returns (address);
// @notice query if the non-reentrancy guard for send() is on
// @return true if the guard is on. false otherwise
function isSendingPayload() external view returns (bool);
// @notice query if the non-reentrancy guard for receive() is on
// @return true if the guard is on. false otherwise
function isReceivingPayload() external view returns (bool);
// @notice get the configuration of the LayerZero messaging library of the specified version
// @param _version - messaging library version
// @param _chainId - the chainId for the pending config change
// @param _userApplication - the contract address of the user application
// @param _configType - type of configuration. every messaging library has its own convention.
function getConfig(uint16 _version, uint16 _chainId, address _userApplication, uint _configType) external view returns (bytes memory);
// @notice get the send() LayerZero messaging library version
// @param _userApplication - the contract address of the user application
function getSendVersion(address _userApplication) external view returns (uint16);
// @notice get the lzReceive() LayerZero messaging library version
// @param _userApplication - the contract address of the user application
function getReceiveVersion(address _userApplication) external view returns (uint16);
}// SPDX-License-Identifier: AGPL-3.0
// Source Link https://github.com/LayerZero-Labs/solidity-examples/blob/main/contracts/interfaces/ILayerZeroReceiver.sol
pragma solidity ^0.8.0;
interface ILayerZeroReceiver {
// @notice LayerZero endpoint will invoke this function to deliver the message on the destination
// @param _srcChainId - the source endpoint identifier
// @param _srcAddress - the source sending contract address from the source chain
// @param _nonce - the ordered message nonce
// @param _payload - the signed payload is the UA bytes has encoded to be sent
function lzReceive(uint16 _srcChainId, bytes calldata _srcAddress, uint64 _nonce, bytes calldata _payload) external;
}// SPDX-License-Identifier: AGPL-3.0
// Source Link https://github.com/LayerZero-Labs/solidity-examples/blob/main/contracts/interfaces/ILayerZeroUserApplicationConfig.sol
pragma solidity ^0.8.0;
interface ILayerZeroUserApplicationConfig {
// @notice set the configuration of the LayerZero messaging library of the specified version
// @param _version - messaging library version
// @param _chainId - the chainId for the pending config change
// @param _configType - type of configuration. every messaging library has its own convention.
// @param _config - configuration in the bytes. can encode arbitrary content.
function setConfig(uint16 _version, uint16 _chainId, uint _configType, bytes calldata _config) external;
// @notice set the send() LayerZero messaging library version to _version
// @param _version - new messaging library version
function setSendVersion(uint16 _version) external;
// @notice set the lzReceive() LayerZero messaging library version to _version
// @param _version - new messaging library version
function setReceiveVersion(uint16 _version) external;
// @notice Only when the UA needs to resume the message flow in blocking mode and clear the stored payload
// @param _srcChainId - the chainId of the source chain
// @param _srcAddress - the contract address of the source contract at the source chain
function forceResumeReceive(uint16 _srcChainId, bytes calldata _srcAddress) external;
}// SPDX-License-Identifier: AGPL-3.0
pragma solidity ^0.8.0;
interface ILocationBased {
struct Area {
// Area Co-ordinates.
// For circular area, points[] length = 1 and radius > 0
// For arbitrary area, points[] length > 1 and radius = 0
// For arbitrary areas UI should connect the points with a
// straight line in the same sequence as specified in the points array
string[] points; // Each element in this array should be specified in "lat,long" format
uint256 radius; // Unit: Meters. 2 decimals(5000 = 50 meters)
}
}// SPDX-License-Identifier: AGPL-3.0
pragma solidity ^0.8.0;
import "../../interfaces/access/IDAOAuthority.sol";
import "../../interfaces/location/ILocationBased.sol";
import "../../interfaces/misc/IExternalCollectionManager.sol";
import "../../interfaces/collections/ICollectionData.sol";
interface ICollectionManager is ICollectionData, ILocationBased {
event CollectionAdded(address indexed _collection, CollectionType indexed _collectionType);
event CollectionDataUpdated(address _collection);
event CollectionRetired(address indexed _collection, CollectionType indexed _collectionType);
event CollectibleMinted(address indexed _collection, uint256 indexed _collectibleId, CollectionType indexed _collectionType);
event CollectibleToggled(address indexed _collection, uint256 indexed _collectibleId, bool _status);
event CreditRewards(address indexed _collection, uint256 indexed _collectibleId, address indexed _patron, uint256 _amount);
event BurnRewards(address indexed _collection, uint256 indexed _collectibleId, address indexed _patron, uint256 _amount);
event Visited(address indexed _collection, uint256 indexed _collectibleId);
event FriendVisited(address indexed _collection, uint256 indexed _collectibleId);
event CollectionMintWithLinkedToggled(address indexed _collection, bool indexed _mintWithLinked);
event CollectionWhitelisted(address indexed _passport, address indexed _source, uint256 indexed _chainId);
event CollectionDelisted(address indexed _passport, address indexed _source, uint256 indexed _chainId);
function addCollection(
address _collection,
uint256 _chainId,
CollectionType _collectionType,
CollectionData calldata _collectionData,
CollectionDataAdditional calldata _collectionDataAdditional,
Area calldata _area,
bool _tradability
) external;
function updateCollection(
address _collection,
CollectionData calldata _collectionData,
CollectionDataAdditional calldata _collectionDataAdditional,
Area calldata _area
) external;
function mintCollectible(
address _patron,
address _collection
) external returns(uint256 _collectibleId);
function toggle(address _collection, uint256 _collectibleId) external;
function creditRewards(
address _collection,
address _patron,
uint256 _amount
) external;
function debitRewards(
address _collection,
address _patron,
uint256 _amount
) external;
// function addVisit(
// address _collection,
// uint256 _collectibleId,
// bool _friend
// ) external;
function toggleMintWithLinked(address _collection) external;
//function whitelistCollection(address _source, uint256 _chainId, address _passport) external;
//function getWhitelistedCollectionsForPassport(address _passport) external view returns(ContractDetails[] memory _wl);
//function delistCollection(address _source, uint256 _chainId, address _passport) external;
function setCollectibleRedemption(address _collection, uint256 _collectibleId) external;
function isCollection(address _collection) external view returns(bool);
function isRetired(address _collection, uint256 _collectibleId) external view returns(bool);
function checkCollectionActive(address _collection) external view returns(bool);
function getCollectibleDetails(address _collection, uint256 _collectibleId) external view returns(CollectibleDetails memory);
function getCollectionType(address _collection) external view returns(CollectionType);
function getCollectionData(address _collection) external view returns(CollectionData memory _collectionData);
function getLocationDetails(address _collection) external view returns(string[] memory, uint256);
function getCollectionsForEntity(address _entity, CollectionType _collectionType, bool _onlyActive) external view returns(IExternalCollectionManager.ContractDetails[] memory _entityCollections);
function getAllCollectionsWithChainId(CollectionType _collectionType, bool _onlyActive) external view returns(IExternalCollectionManager.ContractDetails[] memory _allCollections);
function getAllCollectionsForPatron(CollectionType _collectionType, address _patron, bool _onlyActive) external view returns(address[] memory _allCollections);
function getCollectionChainId(address _collection) external view returns(uint256);
function getCollectionInfo(address _collection) external view
returns (string memory _name,
string memory _symbol,
string memory _dataURI,
CollectionData memory _data,
CollectionDataAdditional memory _additionCollectionData,
bool _isActive,
string[] memory _areaPoints,
uint256 _areaRadius,
address[] memory _linkedCollections,
CollectionType _collectionType);
// function getExternalCollectionsForPatron(address _patron) external view returns (address[] memory _collections);
function getAllTokensForPatron(address _collection, address _patron) external view returns(uint256[] memory _patronTokenIds);
}// SPDX-License-Identifier: AGPL-3.0
pragma solidity ^0.8.0;
import "../../interfaces/collections/ICollectionData.sol";
interface IExternalCollectionManager is ICollectionData {
event CollectionWhitelisted(address _passport, address _source, uint256 _chainId);
event CollectionDelisted(address _passport, address _source, uint256 _chainId);
struct ContractDetails {
// Contract address
address source;
// ChainId where the contract deployed
uint256 chainId;
// Storage Gap
uint256[5] __gap;
}
function whitelistCollection(address _source, uint256 _chainId, address _passport) external;
function getWhitelistedCollectionsForPassport(address _passport) external view returns(ContractDetails[] memory _wl);
function delistCollection(address _source, uint256 _chainId, address _passport) external;
}// SPDX-License-Identifier: Unlicense // Source Link https://github.com/LayerZero-Labs/solidity-examples/blob/main/contracts/util/BytesLib.sol /* * @title Solidity Bytes Arrays Utils * @author Gonçalo Sá <[email protected]> * * @dev Bytes tightly packed arrays utility library for ethereum contracts written in Solidity. * The library lets you concatenate, slice and type cast bytes arrays both in memory and storage. */ pragma solidity ^0.8.0; library BytesLib { function concat( bytes memory _preBytes, bytes memory _postBytes ) internal pure returns (bytes memory) { bytes memory tempBytes; assembly { // Get a location of some free memory and store it in tempBytes as // Solidity does for memory variables. tempBytes := mload(0x40) // Store the length of the first bytes array at the beginning of // the memory for tempBytes. let length := mload(_preBytes) mstore(tempBytes, length) // Maintain a memory counter for the current write location in the // temp bytes array by adding the 32 bytes for the array length to // the starting location. let mc := add(tempBytes, 0x20) // Stop copying when the memory counter reaches the length of the // first bytes array. let end := add(mc, length) for { // Initialize a copy counter to the start of the _preBytes data, // 32 bytes into its memory. let cc := add(_preBytes, 0x20) } lt(mc, end) { // Increase both counters by 32 bytes each iteration. mc := add(mc, 0x20) cc := add(cc, 0x20) } { // Write the _preBytes data into the tempBytes memory 32 bytes // at a time. mstore(mc, mload(cc)) } // Add the length of _postBytes to the current length of tempBytes // and store it as the new length in the first 32 bytes of the // tempBytes memory. length := mload(_postBytes) mstore(tempBytes, add(length, mload(tempBytes))) // Move the memory counter back from a multiple of 0x20 to the // actual end of the _preBytes data. mc := end // Stop copying when the memory counter reaches the new combined // length of the arrays. end := add(mc, length) for { let cc := add(_postBytes, 0x20) } lt(mc, end) { mc := add(mc, 0x20) cc := add(cc, 0x20) } { mstore(mc, mload(cc)) } // Update the free-memory pointer by padding our last write location // to 32 bytes: add 31 bytes to the end of tempBytes to move to the // next 32 byte block, then round down to the nearest multiple of // 32. If the sum of the length of the two arrays is zero then add // one before rounding down to leave a blank 32 bytes (the length block with 0). mstore(0x40, and( add(add(end, iszero(add(length, mload(_preBytes)))), 31), not(31) // Round down to the nearest 32 bytes. )) } return tempBytes; } function concatStorage(bytes storage _preBytes, bytes memory _postBytes) internal { assembly { // Read the first 32 bytes of _preBytes storage, which is the length // of the array. (We don't need to use the offset into the slot // because arrays use the entire slot.) let fslot := sload(_preBytes.slot) // Arrays of 31 bytes or less have an even value in their slot, // while longer arrays have an odd value. The actual length is // the slot divided by two for odd values, and the lowest order // byte divided by two for even values. // If the slot is even, bitwise and the slot with 255 and divide by // two to get the length. If the slot is odd, bitwise and the slot // with -1 and divide by two. let slength := div(and(fslot, sub(mul(0x100, iszero(and(fslot, 1))), 1)), 2) let mlength := mload(_postBytes) let newlength := add(slength, mlength) // slength can contain both the length and contents of the array // if length < 32 bytes so let's prepare for that // v. http://solidity.readthedocs.io/en/latest/miscellaneous.html#layout-of-state-variables-in-storage switch add(lt(slength, 32), lt(newlength, 32)) case 2 { // Since the new array still fits in the slot, we just need to // update the contents of the slot. // uint256(bytes_storage) = uint256(bytes_storage) + uint256(bytes_memory) + new_length sstore( _preBytes.slot, // all the modifications to the slot are inside this // next block add( // we can just add to the slot contents because the // bytes we want to change are the LSBs fslot, add( mul( div( // load the bytes from memory mload(add(_postBytes, 0x20)), // zero all bytes to the right exp(0x100, sub(32, mlength)) ), // and now shift left the number of bytes to // leave space for the length in the slot exp(0x100, sub(32, newlength)) ), // increase length by the double of the memory // bytes length mul(mlength, 2) ) ) ) } case 1 { // The stored value fits in the slot, but the combined value // will exceed it. // get the keccak hash to get the contents of the array mstore(0x0, _preBytes.slot) let sc := add(keccak256(0x0, 0x20), div(slength, 32)) // save new length sstore(_preBytes.slot, add(mul(newlength, 2), 1)) // The contents of the _postBytes array start 32 bytes into // the structure. Our first read should obtain the `submod` // bytes that can fit into the unused space in the last word // of the stored array. To get this, we read 32 bytes starting // from `submod`, so the data we read overlaps with the array // contents by `submod` bytes. Masking the lowest-order // `submod` bytes allows us to add that value directly to the // stored value. let submod := sub(32, slength) let mc := add(_postBytes, submod) let end := add(_postBytes, mlength) let mask := sub(exp(0x100, submod), 1) sstore( sc, add( and( fslot, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00 ), and(mload(mc), mask) ) ) for { mc := add(mc, 0x20) sc := add(sc, 1) } lt(mc, end) { sc := add(sc, 1) mc := add(mc, 0x20) } { sstore(sc, mload(mc)) } mask := exp(0x100, sub(mc, end)) sstore(sc, mul(div(mload(mc), mask), mask)) } default { // get the keccak hash to get the contents of the array mstore(0x0, _preBytes.slot) // Start copying to the last used word of the stored array. let sc := add(keccak256(0x0, 0x20), div(slength, 32)) // save new length sstore(_preBytes.slot, add(mul(newlength, 2), 1)) // Copy over the first `submod` bytes of the new data as in // case 1 above. let slengthmod := mod(slength, 32) let mlengthmod := mod(mlength, 32) let submod := sub(32, slengthmod) let mc := add(_postBytes, submod) let end := add(_postBytes, mlength) let mask := sub(exp(0x100, submod), 1) sstore(sc, add(sload(sc), and(mload(mc), mask))) for { sc := add(sc, 1) mc := add(mc, 0x20) } lt(mc, end) { sc := add(sc, 1) mc := add(mc, 0x20) } { sstore(sc, mload(mc)) } mask := exp(0x100, sub(mc, end)) sstore(sc, mul(div(mload(mc), mask), mask)) } } } function slice( bytes memory _bytes, uint256 _start, uint256 _length ) internal pure returns (bytes memory) { require(_length + 31 >= _length, "slice_overflow"); require(_bytes.length >= _start + _length, "slice_outOfBounds"); bytes memory tempBytes; assembly { switch iszero(_length) case 0 { // Get a location of some free memory and store it in tempBytes as // Solidity does for memory variables. tempBytes := mload(0x40) // The first word of the slice result is potentially a partial // word read from the original array. To read it, we calculate // the length of that partial word and start copying that many // bytes into the array. The first word we copy will start with // data we don't care about, but the last `lengthmod` bytes will // land at the beginning of the contents of the new array. When // we're done copying, we overwrite the full first word with // the actual length of the slice. let lengthmod := and(_length, 31) // The multiplication in the next line is necessary // because when slicing multiples of 32 bytes (lengthmod == 0) // the following copy loop was copying the origin's length // and then ending prematurely not copying everything it should. let mc := add(add(tempBytes, lengthmod), mul(0x20, iszero(lengthmod))) let end := add(mc, _length) for { // The multiplication in the next line has the same exact purpose // as the one above. let cc := add(add(add(_bytes, lengthmod), mul(0x20, iszero(lengthmod))), _start) } lt(mc, end) { mc := add(mc, 0x20) cc := add(cc, 0x20) } { mstore(mc, mload(cc)) } mstore(tempBytes, _length) //update free-memory pointer //allocating the array padded to 32 bytes like the compiler does now mstore(0x40, and(add(mc, 31), not(31))) } //if we want a zero-length slice let's just return a zero-length array default { tempBytes := mload(0x40) //zero out the 32 bytes slice we are about to return //we need to do it because Solidity does not garbage collect mstore(tempBytes, 0) mstore(0x40, add(tempBytes, 0x20)) } } return tempBytes; } function toAddress(bytes memory _bytes, uint256 _start) internal pure returns (address) { require(_bytes.length >= _start + 20, "toAddress_outOfBounds"); address tempAddress; assembly { tempAddress := div(mload(add(add(_bytes, 0x20), _start)), 0x1000000000000000000000000) } return tempAddress; } function toUint8(bytes memory _bytes, uint256 _start) internal pure returns (uint8) { require(_bytes.length >= _start + 1 , "toUint8_outOfBounds"); uint8 tempUint; assembly { tempUint := mload(add(add(_bytes, 0x1), _start)) } return tempUint; } function toUint16(bytes memory _bytes, uint256 _start) internal pure returns (uint16) { require(_bytes.length >= _start + 2, "toUint16_outOfBounds"); uint16 tempUint; assembly { tempUint := mload(add(add(_bytes, 0x2), _start)) } return tempUint; } function toUint32(bytes memory _bytes, uint256 _start) internal pure returns (uint32) { require(_bytes.length >= _start + 4, "toUint32_outOfBounds"); uint32 tempUint; assembly { tempUint := mload(add(add(_bytes, 0x4), _start)) } return tempUint; } function toUint64(bytes memory _bytes, uint256 _start) internal pure returns (uint64) { require(_bytes.length >= _start + 8, "toUint64_outOfBounds"); uint64 tempUint; assembly { tempUint := mload(add(add(_bytes, 0x8), _start)) } return tempUint; } function toUint96(bytes memory _bytes, uint256 _start) internal pure returns (uint96) { require(_bytes.length >= _start + 12, "toUint96_outOfBounds"); uint96 tempUint; assembly { tempUint := mload(add(add(_bytes, 0xc), _start)) } return tempUint; } function toUint128(bytes memory _bytes, uint256 _start) internal pure returns (uint128) { require(_bytes.length >= _start + 16, "toUint128_outOfBounds"); uint128 tempUint; assembly { tempUint := mload(add(add(_bytes, 0x10), _start)) } return tempUint; } function toUint256(bytes memory _bytes, uint256 _start) internal pure returns (uint256) { require(_bytes.length >= _start + 32, "toUint256_outOfBounds"); uint256 tempUint; assembly { tempUint := mload(add(add(_bytes, 0x20), _start)) } return tempUint; } function toBytes32(bytes memory _bytes, uint256 _start) internal pure returns (bytes32) { require(_bytes.length >= _start + 32, "toBytes32_outOfBounds"); bytes32 tempBytes32; assembly { tempBytes32 := mload(add(add(_bytes, 0x20), _start)) } return tempBytes32; } function equal(bytes memory _preBytes, bytes memory _postBytes) internal pure returns (bool) { bool success = true; assembly { let length := mload(_preBytes) // if lengths don't match the arrays are not equal switch eq(length, mload(_postBytes)) case 1 { // cb is a circuit breaker in the for loop since there's // no said feature for inline assembly loops // cb = 1 - don't breaker // cb = 0 - break let cb := 1 let mc := add(_preBytes, 0x20) let end := add(mc, length) for { let cc := add(_postBytes, 0x20) // the next line is the loop condition: // while(uint256(mc < end) + cb == 2) } eq(add(lt(mc, end), cb), 2) { mc := add(mc, 0x20) cc := add(cc, 0x20) } { // if any of these checks fails then arrays are not equal if iszero(eq(mload(mc), mload(cc))) { // unsuccess: success := 0 cb := 0 } } } default { // unsuccess: success := 0 } } return success; } function equalStorage( bytes storage _preBytes, bytes memory _postBytes ) internal view returns (bool) { bool success = true; assembly { // we know _preBytes_offset is 0 let fslot := sload(_preBytes.slot) // Decode the length of the stored array like in concatStorage(). let slength := div(and(fslot, sub(mul(0x100, iszero(and(fslot, 1))), 1)), 2) let mlength := mload(_postBytes) // if lengths don't match the arrays are not equal switch eq(slength, mlength) case 1 { // slength can contain both the length and contents of the array // if length < 32 bytes so let's prepare for that // v. http://solidity.readthedocs.io/en/latest/miscellaneous.html#layout-of-state-variables-in-storage if iszero(iszero(slength)) { switch lt(slength, 32) case 1 { // blank the last byte which is the length fslot := mul(div(fslot, 0x100), 0x100) if iszero(eq(fslot, mload(add(_postBytes, 0x20)))) { // unsuccess: success := 0 } } default { // cb is a circuit breaker in the for loop since there's // no said feature for inline assembly loops // cb = 1 - don't breaker // cb = 0 - break let cb := 1 // get the keccak hash to get the contents of the array mstore(0x0, _preBytes.slot) let sc := keccak256(0x0, 0x20) let mc := add(_postBytes, 0x20) let end := add(mc, mlength) // the next line is the loop condition: // while(uint256(mc < end) + cb == 2) for {} eq(add(lt(mc, end), cb), 2) { sc := add(sc, 1) mc := add(mc, 0x20) } { if iszero(eq(sload(sc), mload(mc))) { // unsuccess: success := 0 cb := 0 } } } } } default { // unsuccess: success := 0 } } return success; } }
// SPDX-License-Identifier: MIT OR Apache-2.0
// Source Link https://github.com/LayerZero-Labs/solidity-examples/blob/main/contracts/util/ExcessivelySafeCall.sol
pragma solidity ^0.8.0;
library ExcessivelySafeCall {
uint256 constant LOW_28_MASK =
0x00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff;
/// @notice Use when you _really_ really _really_ don't trust the called
/// contract. This prevents the called contract from causing reversion of
/// the caller in as many ways as we can.
/// @dev The main difference between this and a solidity low-level call is
/// that we limit the number of bytes that the callee can cause to be
/// copied to caller memory. This prevents stupid things like malicious
/// contracts returning 10,000,000 bytes causing a local OOG when copying
/// to memory.
/// @param _target The address to call
/// @param _gas The amount of gas to forward to the remote contract
/// @param _maxCopy The maximum number of bytes of returndata to copy
/// to memory.
/// @param _calldata The data to send to the remote contract
/// @return success and returndata, as `.call()`. Returndata is capped to
/// `_maxCopy` bytes.
function excessivelySafeCall(
address _target,
uint256 _gas,
uint16 _maxCopy,
bytes memory _calldata
) internal returns (bool, bytes memory) {
// set up for assembly call
uint256 _toCopy;
bool _success;
bytes memory _returnData = new bytes(_maxCopy);
// dispatch message to recipient
// by assembly calling "handle" function
// we call via assembly to avoid memcopying a very large returndata
// returned by a malicious contract
assembly {
_success := call(
_gas, // gas
_target, // recipient
0, // ether value
add(_calldata, 0x20), // inloc
mload(_calldata), // inlen
0, // outloc
0 // outlen
)
// limit our copy to 256 bytes
_toCopy := returndatasize()
if gt(_toCopy, _maxCopy) {
_toCopy := _maxCopy
}
// Store the length of the copied bytes
mstore(_returnData, _toCopy)
// copy the bytes from returndata[0:_toCopy]
returndatacopy(add(_returnData, 0x20), 0, _toCopy)
}
return (_success, _returnData);
}
/// @notice Use when you _really_ really _really_ don't trust the called
/// contract. This prevents the called contract from causing reversion of
/// the caller in as many ways as we can.
/// @dev The main difference between this and a solidity low-level call is
/// that we limit the number of bytes that the callee can cause to be
/// copied to caller memory. This prevents stupid things like malicious
/// contracts returning 10,000,000 bytes causing a local OOG when copying
/// to memory.
/// @param _target The address to call
/// @param _gas The amount of gas to forward to the remote contract
/// @param _maxCopy The maximum number of bytes of returndata to copy
/// to memory.
/// @param _calldata The data to send to the remote contract
/// @return success and returndata, as `.call()`. Returndata is capped to
/// `_maxCopy` bytes.
function excessivelySafeStaticCall(
address _target,
uint256 _gas,
uint16 _maxCopy,
bytes memory _calldata
) internal view returns (bool, bytes memory) {
// set up for assembly call
uint256 _toCopy;
bool _success;
bytes memory _returnData = new bytes(_maxCopy);
// dispatch message to recipient
// by assembly calling "handle" function
// we call via assembly to avoid memcopying a very large returndata
// returned by a malicious contract
assembly {
_success := staticcall(
_gas, // gas
_target, // recipient
add(_calldata, 0x20), // inloc
mload(_calldata), // inlen
0, // outloc
0 // outlen
)
// limit our copy to 256 bytes
_toCopy := returndatasize()
if gt(_toCopy, _maxCopy) {
_toCopy := _maxCopy
}
// Store the length of the copied bytes
mstore(_returnData, _toCopy)
// copy the bytes from returndata[0:_toCopy]
returndatacopy(add(_returnData, 0x20), 0, _toCopy)
}
return (_success, _returnData);
}
/**
* @notice Swaps function selectors in encoded contract calls
* @dev Allows reuse of encoded calldata for functions with identical
* argument types but different names. It simply swaps out the first 4 bytes
* for the new selector. This function modifies memory in place, and should
* only be used with caution.
* @param _newSelector The new 4-byte selector
* @param _buf The encoded contract args
*/
function swapSelector(bytes4 _newSelector, bytes memory _buf)
internal
pure
{
require(_buf.length >= 4);
uint256 _mask = LOW_28_MASK;
assembly {
// load the first word of
let _word := mload(add(_buf, 0x20))
// mask out the top 4 bytes
// /x
_word := and(_word, _mask)
_word := or(_newSelector, _word)
mstore(add(_buf, 0x20), _word)
}
}
}{
"metadata": {
"bytecodeHash": "none",
"useLiteralContent": true
},
"optimizer": {
"enabled": true,
"runs": 1
},
"viaIR": true,
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"libraries": {}
}Contract ABI
API[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_contractURI","type":"string"},{"internalType":"bool","name":"_transferable","type":"bool"},{"internalType":"address","name":"_governor","type":"address"},{"internalType":"address","name":"_helper","type":"address"},{"internalType":"address","name":"_trustedForwarder","type":"address"},{"internalType":"address","name":"_layerZeroEndpoint","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"srcChainId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"collectibleId","type":"uint256"}],"name":"CollectibleReceived","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"destChainId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"collectibleId","type":"uint256"}],"name":"CollectibleSent","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_manager","type":"address"}],"name":"ManagerSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"indexed":false,"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"indexed":false,"internalType":"uint64","name":"_nonce","type":"uint64"},{"indexed":false,"internalType":"bytes","name":"_payload","type":"bytes"},{"indexed":false,"internalType":"bytes","name":"_reason","type":"bytes"}],"name":"MessageFailed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_collection","type":"address"}],"name":"MintingDisabled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"indexed":false,"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"indexed":false,"internalType":"uint64","name":"_nonce","type":"uint64"},{"indexed":false,"internalType":"bytes32","name":"_payloadHash","type":"bytes32"}],"name":"RetryMessageSuccess","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"indexed":false,"internalType":"uint16","name":"_type","type":"uint16"},{"indexed":false,"internalType":"uint256","name":"_minDstGas","type":"uint256"}],"name":"SetMinDstGas","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"precrime","type":"address"}],"name":"SetPrecrime","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"_remoteChainId","type":"uint16"},{"indexed":false,"internalType":"bytes","name":"_path","type":"bytes"}],"name":"SetTrustedRemote","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"_remoteChainId","type":"uint16"},{"indexed":false,"internalType":"bytes","name":"_remoteAddress","type":"bytes"}],"name":"SetTrustedRemoteAddress","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_subscriptionManager","type":"address"}],"name":"SubscriptionManagerSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"collectionCollectibleIds","outputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deleteDefaultRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"internalType":"address","name":"_userApplication","type":"address"},{"internalType":"bytes","name":"_payload","type":"bytes"},{"internalType":"bool","name":"_payInZRO","type":"bool"},{"internalType":"bytes","name":"_adapterParams","type":"bytes"}],"name":"estimateFees","outputs":[{"internalType":"uint256","name":"nativeFee","type":"uint256"},{"internalType":"uint256","name":"zroFee","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"},{"internalType":"bytes","name":"","type":"bytes"},{"internalType":"uint64","name":"","type":"uint64"}],"name":"failedMessages","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"}],"name":"forceResumeReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_version","type":"uint16"},{"internalType":"uint16","name":"_chainId","type":"uint16"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"_configType","type":"uint256"}],"name":"getConfig","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getNextTokenId","outputs":[{"internalType":"uint256","name":"_collectionCollectibleId","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_remoteChainId","type":"uint16"}],"name":"getTrustedRemoteAddress","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"governor","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"helper","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"}],"name":"isTrustedRemote","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"isValidToken","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lzEndpoint","outputs":[{"internalType":"contract ILayerZeroEndpoint","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"lzReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"manager","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"},{"internalType":"uint16","name":"","type":"uint16"}],"name":"minDstGasLookup","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_patron","type":"address"},{"internalType":"uint256","name":"_collectibleId","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_patron","type":"address"}],"name":"mintNext","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"nonblockingLzReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"precrime","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"resetTokenRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"retryMessage","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_destinationChainId","type":"uint16"},{"internalType":"uint256","name":"_collectibleId","type":"uint256"}],"name":"sendCollectibleToChain","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_version","type":"uint16"},{"internalType":"uint16","name":"_chainId","type":"uint16"},{"internalType":"uint256","name":"_configType","type":"uint256"},{"internalType":"bytes","name":"_config","type":"bytes"}],"name":"setConfig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_receiver","type":"address"},{"internalType":"uint96","name":"_feeNumerator","type":"uint96"}],"name":"setDefaultRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_manager","type":"address"}],"name":"setManager","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"internalType":"uint16","name":"_packetType","type":"uint16"},{"internalType":"uint256","name":"_minGas","type":"uint256"}],"name":"setMinDstGas","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_precrime","type":"address"}],"name":"setPrecrime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_version","type":"uint16"}],"name":"setReceiveVersion","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_version","type":"uint16"}],"name":"setSendVersion","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_subscriptionManager","type":"address"}],"name":"setSubscriptionManager","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"},{"internalType":"uint96","name":"_feeNumerator","type":"uint96"}],"name":"setTokenRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_path","type":"bytes"}],"name":"setTrustedRemote","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_remoteChainId","type":"uint16"},{"internalType":"bytes","name":"_remoteAddress","type":"bytes"}],"name":"setTrustedRemoteAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"subscriptionManager","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"trustedForwarder","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"}],"name":"trustedRemoteLookup","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_contractURI","type":"string"}],"name":"updateContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
60a060405234620006235762004534803803806200001d8162000628565b92833981019061010081830312620006235780516001600160401b0381116200062357826200004e9183016200064e565b60208201516001600160401b038111620006235783620000709184016200064e565b604083015190936001600160401b0382116200062357620000939184016200064e565b9260608301519182151583036200062357620000b260808501620006c0565b93620000c160a08201620006c0565b92620000de60e0620000d660c08501620006c0565b9301620006c0565b835190936001600160401b038211620003fd5760025490600182811c9216801562000618575b6020831014620003dc5781601f849311620005b4575b50602090601f83116001146200053a576000926200052e575b50508160011b916000199060031b1c1916176002555b8051906001600160401b038211620003fd5760035490600182811c9216801562000523575b6020831014620003dc5781601f849311620004ae575b50602090601f83116001146200041f5760009262000413575b50508160011b916000199060031b1c1916176003555b620001bd620006d5565b6008549560018060a01b0395868095818095168260018060a01b03199b828d821617600855167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0600080a3166080526001600d5401600d5560ff8019600e54169115151617600e551685600f541617600f551683601054161760105516906013541617601355805160018060401b038111620003fd57601254600181811c91168015620003f2575b6020821014620003dc57601f811162000372575b50602091601f82116001146200030857918192600092620002fc575b50508160011b916000199060031b1c1916176012555b604051613e199081620006fb82396080518181816105b401528181610ab701528181610c97015281816111f10152818161201401528181612303015281816129e2015281816135c401526138560152f35b01519050388062000295565b601f19821692601260005260206000209160005b85811062000359575083600195106200033f575b505050811b01601255620002ab565b015160001960f88460031b161c1916905538808062000330565b919260206001819286850151815501940192016200031c565b60126000527fbb8a6a4669ba250d26cd7a459eca9d215f8307e33aebe50379bc5a3617ec3444601f830160051c81019160208410620003d1575b601f0160051c01905b818110620003c4575062000279565b60008155600101620003b5565b9091508190620003ac565b634e487b7160e01b600052602260045260246000fd5b90607f169062000265565b634e487b7160e01b600052604160045260246000fd5b0151905038806200019d565b6003600090815293507fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b91905b601f198416851062000492576001945083601f1981161062000478575b505050811b01600355620001b3565b015160001960f88460031b161c1916905538808062000469565b818101518355602094850194600190930192909101906200044c565b60036000529091507fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b601f840160051c8101916020851062000518575b90601f859493920160051c01905b81811062000508575062000184565b60008155849350600101620004f9565b9091508190620004eb565b91607f16916200016e565b01519050388062000133565b60026000908152600080516020620045148339815191529350601f198516905b8181106200059b575090846001959493921062000581575b505050811b0160025562000149565b015160001960f88460031b161c1916905538808062000572565b929360206001819287860151815501950193016200055a565b600260005290915060008051602062004514833981519152601f840160051c810191602085106200060d575b90601f859493920160051c01905b818110620005fd57506200011a565b60008155849350600101620005ee565b9091508190620005e0565b91607f169162000104565b600080fd5b6040519190601f01601f191682016001600160401b03811183821017620003fd57604052565b919080601f84011215620006235782516001600160401b038111620003fd5760209062000684601f8201601f1916830162000628565b92818452828287010111620006235760005b818110620006ac57508260009394955001015290565b858101830151848201840152820162000696565b51906001600160a01b03821682036200062357565b601054336001600160a01b0390911603620006f65736601319013560601c90565b339056fe60806040526004361015610013575b600080fd5b60003560e01c80621d3567146104b9578063016ea35a146104b057806301ffc9a7146104a757806304634d8d1461049e57806306fdde031461049557806307e0db171461048c578063081812fc14610483578063095ea7b31461047a5780630c340a241461047157806310ddb1371461046857806320d33d531461045f57806323b872dd146104565780632a55205a1461044d5780633d8b38f61461044457806340a7bb101461043b57806340c10f191461043257806342842e0e1461042957806342966c681461042057806342d65a8d14610417578063481c6a751461040e5780635944c753146104055780635b8c41e6146103fc5780636352211e146103f357806363b0e66a146103ea57806366ad5c8a146103e157806370a08231146103d8578063715018a6146103cf5780637533d788146103c65780637da0a877146103bd5780637e5b1e24146103b45780637e5cd5c1146103ab578063860fc78b146103a25780638a616bc0146103995780638cfd8f5c146103905780638da5cb5b1461038757806392ff0d311461037e578063950c8a741461037557806395d89b411461036c5780639d78df5b146103095780639f38369a14610363578063a22cb4651461035a578063a6c3d16514610351578063aa1b103f14610348578063b353aaa71461033f578063b88d4fde14610336578063baf3292d1461032d578063bf158fd214610324578063c05b35851461031b578063c87b56dd14610312578063caa0f92a14610309578063cbed8b9c14610300578063d0ebdbe7146102f7578063d1deba1f146102ee578063df2a5b3b146102e5578063e8a3d485146102dc578063e985e9c5146102d3578063eb8d72b7146102ca578063ee070805146102c1578063f2fde38b146102b85763f5ecbdbc146102b057600080fd5b61000e61297c565b5061000e6128c6565b5061000e61289f565b5061000e61276a565b5061000e612711565b5061000e61267e565b5061000e612598565b5061000e61246b565b5061000e6123a9565b5061000e6122b6565b5061000e611cbc565b5061000e6121f5565b5061000e612135565b5061000e61210b565b5061000e61209a565b5061000e612043565b5061000e611ffd565b5061000e611fd9565b5061000e611e69565b5061000e611d7b565b5061000e611cdb565b5061000e611c17565b5061000e611bed565b5061000e611bc9565b5061000e611b9f565b5061000e611b4b565b5061000e611b17565b5061000e611aee565b5061000e611a26565b5061000e6118c7565b5061000e61189d565b5061000e611849565b5061000e611711565b5061000e61166b565b5061000e611584565b5061000e61155a565b5061000e61153b565b5061000e6114ab565b5061000e611286565b5061000e611258565b5061000e6111d6565b5061000e611115565b5061000e6110ec565b5061000e6110c2565b5061000e611039565b5061000e610fcd565b5061000e610eed565b5061000e610ea1565b5061000e610cf8565b5061000e610c71565b5061000e610c47565b5061000e610b7a565b5061000e610b49565b5061000e610a91565b5061000e6109b4565b5061000e61084c565b5061000e61072a565b5061000e6106be565b5061000e61058e565b6004359061ffff8216820361000e57565b6024359061ffff8216820361000e57565b9181601f8401121561000e578235916001600160401b03831161000e576020838186019501011161000e57565b604435906001600160401b038216820361000e57565b90608060031983011261000e5760043561ffff8116810361000e57916001600160401b039060243582811161000e5781610563916004016104e4565b93909392604435818116810361000e579260643591821161000e5761058a916004016104e4565b9091565b503461000e5761059d36610527565b91929493906105aa613624565b6001600160a01b037f000000000000000000000000000000000000000000000000000000000000000081169116036106685761062b610633926106399761062461060a6106058a61ffff166000526009602052604060002090565b61182e565b805190818414918261065e575b508161063b575b50613771565b3691611442565b923691611442565b926139c2565b005b9050610648368486611442565b602081519101209060208151910120143861061e565b1515915038610617565b60405162461bcd60e51b815260206004820152601e60248201527f4c7a4170703a20696e76616c696420656e64706f696e742063616c6c657200006044820152606490fd5b6001600160a01b0381160361000e57565b503461000e57602036600319011261000e576106396004356106df816106ad565b61070160018060a01b0380600e5460101c16331490811561070a575b50613049565b600d5490613084565b9050601154163314386106fb565b6001600160e01b031981160361000e57565b503461000e57602036600319011261000e5761077960043561074b81610718565b63ffffffff60e01b166396f8caa160e01b811490811561077d575b5060405190151581529081906020820190565b0390f35b6301ffc9a760e01b81149150811561080f575b81156107fe575b81156107ed575b81156107dc575b81156107cb575b81156107ba575b5038610766565b633d8948a760e21b149050386107b3565b630852cd8d60e31b811491506107ac565b6307a4aa2960e41b811491506107a5565b63152a902d60e11b8114915061079e565b635b5e139f60e01b81149150610797565b6380ac58cd60e01b81149150610790565b602435906001600160601b038216820361000e57565b604435906001600160601b038216820361000e57565b503461000e57604036600319011261000e5760043561086a816106ad565b610872610820565b9061087b613624565b600f546001600160a01b039161089691831690831614613049565b6108ad6127106001600160601b0385161115613648565b81161561090c576108e5610639926108d56108c6611409565b6001600160a01b039094168452565b6001600160601b03166020830152565b805160209091015160a01b6001600160a01b0319166001600160a01b039190911617600055565b60405162461bcd60e51b815260206004820152601960248201527822a921991c9c189d1034b73b30b634b2103932b1b2b4bb32b960391b6044820152606490fd5b600091031261000e57565b60005b83811061096b5750506000910152565b818101518382015260200161095b565b9060209161099481518092818552858086019101610958565b601f01601f1916010190565b9060206109b192818152019061097b565b90565b503461000e57600080600319360112610a8e57604051816002546109d78161175e565b80845290600190818116908115610a665750600114610a0d575b61077984610a01818803826113e6565b604051918291826109a0565b60028352602094507f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace5b828410610a53575050508161077993610a0192820101936109f1565b8054858501870152928501928101610a37565b6107799650610a019450602092508593915060ff191682840152151560051b820101936109f1565b80fd5b503461000e5760006020366003190112610a8e57610aad6104c2565b610ab5612a57565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316908290823b15610b3257602461ffff918360405195869485936307e0db1760e01b85521660048401525af18015610b25575b610b19575080f35b610b2290611375565b80f35b610b2d612e9c565b610b11565b5080fd5b6001600160a01b03909116815260200190565b503461000e57602036600319011261000e576020610b68600435612bf6565b6040516001600160a01b039091168152f35b503461000e57604036600319011261000e57600435610b98816106ad565b602435610ba481612b51565b6001600160a01b0380821693918183168514610bf85761063994610bda92610bca613624565b1614908115610bdf575b50612b74565b612dba565b610bf29150610bec613624565b90612c1d565b38610bd4565b60405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608490fd5b503461000e57600036600319011261000e57600f546040516001600160a01b039091168152602090f35b503461000e5760006020366003190112610a8e57610c8d6104c2565b610c95612a57565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316908290823b15610b3257602461ffff918360405195869485936310ddb13760e01b85521660048401525af18015610b2557610b19575080f35b5060408060031936011261000e577f78681e22b3128fa7b772bf15b61212f0586756a653dde43efbaa16e15683c76b610d2f6104c2565b60243590610d67610d3f83612b51565b610d56610d4a613624565b6001600160a01b031690565b6001600160a01b0390911614613441565b610d7082613213565b610e1c82610d7c613624565b610d8d875192839260208401610ed2565b03610da0601f19918281018452836113e6565b8651600160f01b602082015262030d4060228201526042918201815290610dc790826113e6565b865163040a7bb160e41b8152610e0890888180610dea8688308c60048601613496565b0381305afa908115610e68575b600091610e3a575b503410156134d9565b3491610e15610d4a613624565b9085613825565b610e35610e2a610d4a613624565b945192839283613524565b0390a2005b610e5a9150893d8b11610e61575b610e5281836113e6565b810190613480565b5038610dff565b503d610e48565b610e70612e9c565b610df7565b606090600319011261000e57600435610e8d816106ad565b90602435610e9a816106ad565b9060443590565b503461000e57610639610eb336610e75565b91610ecd610ec884610ec3613624565b612d4c565b612c45565b61329e565b6001600160a01b039091168152602081019190915260400190565b503461000e57604036600319011261000e576127106024356004356000526001602052610f1d604060002061300d565b80516001600160a01b031615610f7c575b610f616107799160018060601b0360208201511693848102948186041490151715610f6f575b516001600160a01b031690565b604051938493049083610ed2565b610f77613032565b610f54565b50610779610f61610f8b612fe7565b915050610f2e565b90604060031983011261000e5760043561ffff8116810361000e5791602435906001600160401b03821161000e5761058a916004016104e4565b503461000e57602061ffff61101b610fe436610f93565b939091166000526009845261100661100d604060002060405192838092611798565b03826113e6565b848151910120923691611442565b82815191012014604051908152f35b60243590811515820361000e57565b503461000e5760a036600319011261000e576110536104c2565b60243561105f816106ad565b6001600160401b039160443583811161000e576110809036906004016104e4565b60643591821515830361000e5760843595861161000e576110a86110b09636906004016104e4565b95909461355b565b60408051928352602083019190915290f35b503461000e57604036600319011261000e576106396004356110e3816106ad565b60243590613084565b503461000e576106396110fe36610e75565b906040519261110c846113b0565b60008452612ca7565b503461000e57602036600319011261000e5760043561113681610ec3613624565b8015611190575b1561114b5761063990613213565b60405162461bcd60e51b815260206004820152601d60248201527f554e415554484f52495a4544204f52204255524e2044495341424c45440000006044820152606490fd5b50600e5460018060a01b0390818160101c1633149182156111c8575b50816111b9575b5061113d565b60ff915060081c1615386111b3565b6011541633149150386111ac565b503461000e576111e536610f93565b91906111ef612a57565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031691823b1561000e57604051928380926342d65a8d60e01b8252816112466000988997889460048501613990565b03925af18015610b2557610b19575080f35b503461000e57600036600319011261000e57600e5460405160109190911c6001600160a01b03168152602090f35b503461000e57606036600319011261000e576024356112a4816106ad565b6112ac610836565b906112b5613624565b600f546001600160a01b03916112d091831690831614613049565b6112e76127106001600160601b0385161115613648565b81161561131b57611300610639926108d56108c6611409565b6113166004356000526001602052604060002090565b6136a7565b60405162461bcd60e51b815260206004820152601b60248201527a455243323938313a20496e76616c696420706172616d657465727360281b6044820152606490fd5b50634e487b7160e01b600052604160045260246000fd5b6001600160401b03811161138857604052565b61139061135e565b604052565b604081019081106001600160401b0382111761138857604052565b602081019081106001600160401b0382111761138857604052565b60c081019081106001600160401b0382111761138857604052565b601f909101601f19168101906001600160401b0382119082101761138857604052565b6040519061141682611395565b565b6020906001600160401b038111611435575b601f01601f19160190565b61143d61135e565b61142a565b92919261144e82611418565b9161145c60405193846113e6565b82948184528183011161000e578281602093846000960137010152565b9080601f8301121561000e578160206109b193359101611442565b9060018060401b0316600052602052604060002090565b503461000e57606036600319011261000e576114c56104c2565b6024356001600160401b03811161000e576107799161151c60206114f061152a943690600401611479565b61ffff6114fb610511565b9416600052600c825260406000208260405194838680955193849201610958565b820190815203019020611494565b546040519081529081906020820190565b503461000e57602036600319011261000e576020610b68600435612b51565b503461000e57600036600319011261000e576013546040516001600160a01b039091168152602090f35b503461000e5761159336610527565b9091506115a1939293613624565b6001600160a01b0394903090861603611617576115cb936115c3913691611442565b503691611442565b60408180518101031261000e57600080516020613d8d8339815191529160406020830151926115f9846106ad565b01519116926116088285613100565b610e3560405192839283613524565b60405162461bcd60e51b815260206004820152602660248201527f4e6f6e626c6f636b696e674c7a4170703a2063616c6c6572206d7573742062656044820152650204c7a4170760d41b6064820152608490fd5b503461000e57602036600319011261000e57600435611689816106ad565b6001600160a01b031680156116ba576000526005602052610779604060002054604051918291829190602083019252565b60405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608490fd5b503461000e57600080600319360112610a8e5761172c612a57565b600880546001600160a01b0319811690915581906001600160a01b0316600080516020613dad8339815191528280a380f35b90600182811c9216801561178e575b602083101461177857565b634e487b7160e01b600052602260045260246000fd5b91607f169161176d565b90600092918054916117a98361175e565b91828252600193848116908160001461180b57506001146117cb575b50505050565b90919394506000526020928360002092846000945b8386106117f75750505050010190388080806117c5565b8054858701830152940193859082016117e0565b9294505050602093945060ff191683830152151560051b010190388080806117c5565b906114166118429260405193848092611798565b03836113e6565b503461000e57602036600319011261000e5761ffff6118666104c2565b166000526009602052610779611006611889604060002060405192838092611798565b60405191829160208352602083019061097b565b503461000e57600036600319011261000e576010546040516001600160a01b039091168152602090f35b503461000e5760208060031936011261000e576001600160401b0360043581811161000e573660238201121561000e5761190b903690602481600401359101611442565b91611936611917613624565b6013546001600160a01b0391821690821614908115611a0d5750613049565b8251918211611a00575b6119548261194f60125461175e565b6136f2565b80601f831160011461198f57508192600092611984575b5050600019600383901b1c191660019190911b17601255005b01519050388061196b565b6012600052601f19831693909190600080516020613d4d833981519152926000905b8682106119e857505083600195106119cf575b505050811b01601255005b015160001960f88460031b161c191690553880806119c4565b806001859682949686015181550195019301906119b1565b611a0861135e565b611940565b9050611a17613624565b908060085416911614386106fb565b503461000e57600036600319011261000e57611a59611a43613624565b600f546001600160a01b03918216911614613049565b60ff600e5460081c16611aae57611a7a61010061ff0019600e541617600e55565b7f340bf1b235fa0bbed4b1b74504c172953a38e3ef4bd71a7042fd2a0057455b7360405180611aa93082610b36565b0390a1005b60405162461bcd60e51b815260206004820152601860248201527713525395125391c81053149150511648111254d05093115160421b6044820152606490fd5b503461000e57602036600319011261000e576020611b0d600435612e0e565b6040519015158152f35b503461000e57602036600319011261000e57611b34611a43613624565b610639600435600052600160205260006040812055565b503461000e57604036600319011261000e576020611b96611b6a6104c2565b61ffff611b756104d3565b9116600052600a835260406000209061ffff16600052602052604060002090565b54604051908152f35b503461000e57600036600319011261000e576008546040516001600160a01b039091168152602090f35b503461000e57600036600319011261000e57602060ff600e54166040519015158152f35b503461000e57600036600319011261000e57600b546040516001600160a01b039091168152602090f35b503461000e57600080600319360112610a8e5760405181600354611c3a8161175e565b80845290600190818116908115610a665750600114611c635761077984610a01818803826113e6565b60038352602094507fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b5b828410611ca9575050508161077993610a0192820101936109f1565b8054858501870152928501928101611c8d565b503461000e57600036600319011261000e576020600d54604051908152f35b503461000e57602036600319011261000e5761ffff611cf86104c2565b166000526009602052611006611d18604060002060405192838092611798565b805115611d3657610a0181611d3061077993516139ab565b90613ccc565b60405162461bcd60e51b815260206004820152601d60248201527f4c7a4170703a206e6f20747275737465642070617468207265636f72640000006044820152606490fd5b503461000e57604036600319011261000e57600435611d99816106ad565b611da161102a565b90611daa613624565b6001600160a01b0382811693911691828414611e285781611e117f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3193611e00611e23948760005260076020526040600020612af3565b9060ff801983541691151516179055565b60405190151581529081906020820190565b0390a3005b60405162461bcd60e51b815260206004820152601960248201527822a9219b99189d1030b8383937bb32903a379031b0b63632b960391b6044820152606490fd5b503461000e57611e7836610f93565b9190611e82612a57565b604051916020848382860137611ead6034858781013060601b858201520360148101875201856113e6565b61ffff821660009081526009825260408120855191959092906001600160401b038311611fcc575b611ee983611ee3865461175e565b86613737565b81601f8411600114611f4857509180611f379492889994600080516020613d6d8339815191529992611f3d575b50508160011b916000199060031b1c19161790555b60405193849384613990565b0390a180f35b015190503880611f16565b9190601f198416611f5e86600052602060002090565b9389905b828210611fb4575050926001928592600080516020613d6d8339815191529a9b96611f37989610611f9b575b505050811b019055611f2b565b015160001960f88460031b161c19169055388080611f8e565b80600186978294978701518155019601940190611f62565b611fd461135e565b611ed5565b503461000e57600080600319360112610a8e57611ff7611a43613624565b80805580f35b503461000e57600036600319011261000e576040517f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03168152602090f35b503461000e57608036600319011261000e57600435612061816106ad565b60243561206d816106ad565b606435916001600160401b03831161000e57612090610639933690600401611479565b9160443591612ca7565b503461000e57602036600319011261000e577f5db758e995a17ec1ad84bdef7e8c3293a0bd6179bcce400dff5d4c3d87db726b60206004356120db816106ad565b6120e3612a57565b600b80546001600160a01b0319166001600160a01b03929092169182179055604051908152a1005b503461000e57600036600319011261000e576011546040516001600160a01b039091168152602090f35b503461000e57602036600319011261000e57600435612153816106ad565b61215b612a57565b6011546001600160a01b0391908281166121b2576001600160a01b03191691169081176011556040517fff834ca93c0258022d2badc9c6e2c2e68a029c3e57db637c54b1d78240bdc78c918190611aa99082610b36565b60405162461bcd60e51b815260206004820152601b60248201527a14d55094d0d49254151253d3881350539051d154881254c814d155602a1b6044820152606490fd5b503461000e5760208060031936011261000e5761221b612216600435612e0e565b612b0a565b60405160009160125461222d8161175e565b8084529060019081811690811561229657506001146122565761077984610a01818803826113e6565b919350601260005283600020916000925b828410612283575050508161077993610a0192820101936109f1565b8054858501870152928501928101612267565b60ff1916858501525050151560051b8201019150610a01816107796109f1565b503461000e57608036600319011261000e576122d06104c2565b6122d86104d3565b6064356001600160401b03811161000e576122f79036906004016104e4565b9092612301612a57565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031690813b1561000e5760008094612378604051978896879586946332fb62e760e21b865261ffff8092166004870152166024850152604435604485015260806064850152608484019161353a565b03925af1801561239c575b61238957005b8061239661063992611375565b8061094d565b6123a4612e9c565b612383565b503461000e57602036600319011261000e576004356123c7816106ad565b6123cf612a57565b600e54601081901c6001600160a01b03166124355762010000600160b01b031916601082901b62010000600160b01b031617600e556040517f60a0f5b9f9e81e98216071b85826681c796256fe3d1354ecb675580fba64fa69918190611aa99082610b36565b60405162461bcd60e51b815260206004820152600e60248201526d1350539051d154881254c814d15560921b6044820152606490fd5b5061247536610527565b9161ffff8694929616600052600c6020526124a981604060002060206040518092878b833787820190815203019020611494565b54918215612547577fc264d91f3adc5588250e1551f547752ca0cfa8f6b530d243b9f9f4cab10ea8e596611aa99461253b91612535916000612529876125248d8961251e8f61250a8f6124fd368c8e611442565b6020815191012014613bb4565b61ffff16600052600c602052604060002090565b91613b9b565b611494565b556115c336868c611442565b86613b40565b60405195869586613c0a565b60405162461bcd60e51b815260206004820152602360248201527f4e6f6e626c6f636b696e674c7a4170703a206e6f2073746f726564206d65737360448201526261676560e81b6064820152608490fd5b503461000e57606036600319011261000e576125b26104c2565b6125ba6104d3565b604435916125c6612a57565b821561264157611aa97f9d5c7c0b934da8fefa9c7760c98383778a12dfbfc0c3b3106518f43fb9508ac09361ffff8316600052600a6020528061261b8560406000209061ffff16600052602052604060002090565b556040519384938460409194939294606082019561ffff80921683521660208201520152565b60405162461bcd60e51b81526020600482015260156024820152744c7a4170703a20696e76616c6964206d696e47617360581b6044820152606490fd5b503461000e57600080600319360112610a8e57604051816012546126a18161175e565b80845290600190818116908115610a6657506001146126ca5761077984610a01818803826113e6565b6012835260209450600080516020613d4d8339815191525b8284106126fe575050508161077993610a0192820101936109f1565b80548585018701529285019281016126e2565b503461000e57604036600319011261000e57602060ff61275e600435612736816106ad565b60243590612743826106ad565b6001600160a01b031660009081526007855260409020612af3565b54166040519015158152f35b503461000e5761277936610f93565b9190612783612a57565b60009161ffff81168352602060098152604084209060018060401b038611612892575b6127ba866127b4845461175e565b84613737565b8490601f8711600114612810575094611f3791818697600080516020613ded8339815191529791612805575b508260011b906000198460031b1c191617905560405193849384613990565b9050850135386127e6565b90601f19871661282584600052602060002090565b9287905b82821061287a57505091611f37939188600080516020613ded83398151915298999410612860575b5050600182811b019055611f2b565b860135600019600385901b60f8161c191690553880612851565b80600185968294968b01358155019501930190612829565b61289a61135e565b6127a6565b503461000e57600036600319011261000e57602060ff600e5460081c166040519015158152f35b503461000e57602036600319011261000e576004356128e4816106ad565b6128ec612a57565b6001600160a01b0390811690811561292857600880546001600160a01b03198116841790915516600080516020613dad833981519152600080a3005b60405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608490fd5b503461000e57608036600319011261000e576107796129996104c2565b6129a16104d3565b906129ad6044356106ad565b604051633d7b2f6f60e21b815261ffff91821660048201529116602482015230604482015260648035908201526000816084817f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03165afa908115612a4a575b600091612a29575b50604051918291826109a0565b612a44913d8091833e612a3c81836113e6565b810190613932565b38612a1c565b612a52612e9c565b612a14565b6008546001600160a01b0390811690612a6e613624565b1603612a7657565b606460405162461bcd60e51b815260206004820152602060248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152fd5b80546001600160a01b0319166001600160a01b03909216919091179055565b6001600160a01b0316600090815260056020526040902090565b9060018060a01b0316600052602052604060002090565b15612b1157565b60405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606490fd5b6000908152600460205260409020546001600160a01b03166109b1811515612b0a565b15612b7b57565b60405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c0000006064820152608490fd5b6000526004602052604060002090565b612c0261221682612e0e565b6000908152600660205260409020546001600160a01b031690565b6001600160a01b0316600090815260076020526040902060ff91612c4091612af3565b541690565b15612c4c57565b60405162461bcd60e51b815260206004820152602d60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201526c1c881bdc88185c1c1c9bdd9959609a1b6064820152608490fd5b916114169391612cd093612cc0610ec884610ec3613624565b612ccb83838361329e565b612fa2565b612d28565b60809060208152603260208201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60608201520190565b15612d2f57565b60405162461bcd60e51b815280612d4860048201612cd5565b0390fd5b6001600160a01b0380612d5e84612b51565b169281831692848414948515612d94575b50508315612d7e575b50505090565b612d8a91929350612bf6565b1614388080612d78565b60ff92955090612db09160005260076020526040600020612af3565b5416923880612d6f565b816000526006602052612dd1816040600020612aba565b6001600160a01b0380612de384612b51565b169116907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925600080a4565b6000908152600460205260409020546001600160a01b0316151590565b9081602091031261000e57516109b181610718565b6109b1939260809260018060a01b03168252600060208301526040820152816060820152019061097b565b6001600160a01b0391821681529116602082015260408101919091526080606082018190526109b19291019061097b565b506040513d6000823e3d90fd5b3d15612ed4573d90612eba82611418565b91612ec860405193846113e6565b82523d6000602084013e565b606090565b909190803b15612f9a57612f1391602091612ef2613624565b946000604051809681958294630a85bd0160e11b9a8b855260048501612e40565b03926001600160a01b03165af160009181612f6a575b50612f5c57612f36612ea9565b80519081612f575760405162461bcd60e51b815280612d4860048201612cd5565b602001fd5b6001600160e01b0319161490565b612f8c91925060203d8111612f93575b612f8481836113e6565b810190612e2b565b9038612f29565b503d612f7a565b505050600190565b92909190823b15612fde57612f13926020926000612fbe613624565b9660405196879586948593630a85bd0160e11b9b8c865260048601612e6b565b50505050600190565b60405190612ff482611395565b6000546001600160a01b038116835260a01c6020830152565b9060405161301a81611395565b91546001600160a01b038116835260a01c6020830152565b50634e487b7160e01b600052601160045260246000fd5b1561305057565b60405162461bcd60e51b815260206004820152600c60248201526b15539055551213d49256915160a21b6044820152606490fd5b9060ff600e546130a960018060a01b03808360101c16331490811561070a5750613049565b60081c166130c5576130ba91613100565b6001600d5401600d55565b60405162461bcd60e51b815260206004820152601360248201527213525395125391c81254c8111254d050931151606a1b6044820152606490fd5b9060405161310d816113b0565b600081526001600160a01b038316918215613184576114169381612cd09461313d61313783612e0e565b156131c8565b61314961313783612e0e565b61315283612ad9565b6001815401905561316b8361316684612be6565b612aba565b6000600080516020613dcd8339815191528180a4612ed9565b606460405162461bcd60e51b815260206004820152602060248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152fd5b156131cf57565b60405162461bcd60e51b815260206004820152601c60248201527b115490cdcc8c4e881d1bdad95b88185b1c9958591e481b5a5b9d195960221b6044820152606490fd5b6114169061322081612b51565b508061322b81612b51565b600082815260066020908152604080832080546001600160a01b03199081169091556001600160a01b03909416808452600590925282208054600019019055909161327584612be6565b908154169055600080516020613dcd8339815191528280a4600052600160205260006040812055565b60ff600e5416156133a6576132cd906132b684612b51565b6001600160a01b03828116939091821684146133e7565b83169283156133555761331f613340926132f3856132ed610d4a8a612b51565b146133e7565b61331a61330a886000526006602052604060002090565b80546001600160a01b0319169055565b612ad9565b805460001901905561333081612ad9565b6001815401905561316685612be6565b600080516020613dcd833981519152600080a4565b60405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608490fd5b60405162461bcd60e51b81526020600482015260196024820152781514905394d1915494c8105491481393d50810531313d5d151603a1b6044820152606490fd5b156133ee57565b60405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608490fd5b1561344857565b60405162461bcd60e51b815260206004820152601060248201526f29a2a72222a9102727aa1027aba722a960811b6044820152606490fd5b919082604091031261000e576020825192015190565b926109b1949261ffff6134c49316855260018060a01b0316602085015260a0604085015260a084019061097b565b9160006060820152608081840391015261097b565b156134e057565b606460405162461bcd60e51b815260206004820152602060248201527f4e4f5420454e4f554748204d4553534147452056414c554520464f52204741536044820152fd5b6020909392919361ffff60408201951681520152565b908060209392818452848401376000828201840152601f01601f1916010190565b9092936135c09061ffff9398976040976135a789519b8c998a98899863040a7bb160e41b8a5216600489015260018060a01b03809a16602489015260a0604489015260a488019161353a565b921515606486015284830360031901608486015261353a565b03917f0000000000000000000000000000000000000000000000000000000000000000165afa918215613617575b60009081936135fc57509190565b905061058a91925060403d8111610e6157610e5281836113e6565b61361f612e9c565b6135ee565b601054336001600160a01b03909116036136445736601319013560601c90565b3390565b1561364f57565b60405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608490fd5b90602060018060a01b03916136bf8382511685612aba565b0151825490911660a09190911b6001600160a01b031916179055565b8181106136e6575050565b600081556001016136db565b90601f82116136ff575050565b6114169160126000526020600020906020601f840160051c8301931061372d575b601f0160051c01906136db565b9091508190613720565b9190601f811161374657505050565b611416926000526020600020906020601f840160051c8301931061372d57601f0160051c01906136db565b1561377857565b60405162461bcd60e51b815260206004820152602660248201527f4c7a4170703a20696e76616c696420736f757263652073656e64696e6720636f6044820152651b9d1c9858dd60d21b6064820152608490fd5b91926137f16109b1969461ffff6137ff9416855260c0602086015260c085019061097b565b90838203604085015261097b565b6001600160a01b0390931660608201526000608082015280830360a0919091015261097b565b9091936118429061ffff8316600052600960205261384d604060002060405193848092611798565b8151156138d4577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031692833b1561000e576138a86000966040519889978896879562c5803160e81b8752600487016137cc565b03925af180156138c7575b6138ba5750565b8061239661141692611375565b6138cf612e9c565b6138b3565b60405162461bcd60e51b815260206004820152603060248201527f4c7a4170703a2064657374696e6174696f6e20636861696e206973206e6f742060448201526f61207472757374656420736f7572636560801b6064820152608490fd5b60208183031261000e578051906001600160401b03821161000e570181601f8201121561000e57805161396481611418565b9261397260405194856113e6565b8184526020828401011161000e576109b19160208085019101610958565b60409061ffff6109b19593168152816020820152019161353a565b6013198101919082116139ba57565b611416613032565b9290915a604051633356ae4560e11b6020820190815261ffff87166024830152608060448301529491613a2e82613a206139ff60a483018761097b565b6001600160401b03881660648401528281036023190160848401528861097b565b03601f1981018452836113e6565b6000809160405197613a3f896113cb565b609689528260208a019560a036883751923090f1903d9060968211613a86575b6000908288523e15613a73575b5050505050565b613a7c94613a8f565b3880808080613a6c565b60969150613a5f565b9193613b2d7fe183f33de2837795525b4792ca4cd60535bd77c53b7e7030060bfcf5734d6b0c95613b3b939561ffff8151602083012096169586600052600c602052613af38361151c60208b60406000208260405194838680955193849201610958565b55613b10604051978897885260a0602089015260a088019061097b565b6001600160401b039092166040870152858203606087015261097b565b90838203608085015261097b565b0390a1565b9060408180518101031261000e578060406020600080516020613d8d83398151915293015191613b6f836106ad565b01516001600160a01b0390911692613b878285613100565b613b9660405192839283613524565b0390a2565b6020919283604051948593843782019081520301902090565b15613bbb57565b60405162461bcd60e51b815260206004820152602160248201527f4e6f6e626c6f636b696e674c7a4170703a20696e76616c6964207061796c6f616044820152601960fa1b6064820152608490fd5b9160609361ffff613c2d939897969816845260806020850152608084019161353a565b6001600160401b0390951660408201520152565b90601f82018092116139ba57565b15613c5657565b60405162461bcd60e51b815260206004820152600e60248201526d736c6963655f6f766572666c6f7760901b6044820152606490fd5b15613c9357565b60405162461bcd60e51b8152602060048201526011602482015270736c6963655f6f75744f66426f756e647360781b6044820152606490fd5b613ce082613cd981613c41565b1015613c4f565b613ced8282511015613c8c565b81613d05575050604051600081526020810160405290565b60405191601f811691821560051b808486010193838501920101905b808410613d395750508252601f01601f191660405290565b9092835181526020809101930190613d2156febb8a6a4669ba250d26cd7a459eca9d215f8307e33aebe50379bc5a3617ec34448c0400cfe2d1199b1a725c78960bcc2a344d869b80590d0f2bd005db15a572cee699cc96fd0137f69aa35bf7ee50850fab5220d6a207b5609448e71e659cd0648be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3effa41487ad5d6728f0b19276fa1eddc16558578f5109fc39d2dc33c3230470daba164736f6c6343000811000a405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000001000000000000000000000000de9eb6ab368290d17eb207206e2a067c65d98f15000000000000000000000000986a164c4fb936228e4a95cfab4641c4e2fcae910000000000000000000000000fc89252f0994870ed41af3de2eeafbac69d7063000000000000000000000000ae92d5ad7583ad66e49a0c67bad18f6ba52dddc10000000000000000000000000000000000000000000000000000000000000010506c756d62696e672070687973696373000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010506c756d62696e672070687973696373000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d5144596a7555755055797274474a63354c5754504550786d664234655242316b64354c3956334b646733386e0000000000000000000000
Deployed Bytecode
0x60806040526004361015610013575b600080fd5b60003560e01c80621d3567146104b9578063016ea35a146104b057806301ffc9a7146104a757806304634d8d1461049e57806306fdde031461049557806307e0db171461048c578063081812fc14610483578063095ea7b31461047a5780630c340a241461047157806310ddb1371461046857806320d33d531461045f57806323b872dd146104565780632a55205a1461044d5780633d8b38f61461044457806340a7bb101461043b57806340c10f191461043257806342842e0e1461042957806342966c681461042057806342d65a8d14610417578063481c6a751461040e5780635944c753146104055780635b8c41e6146103fc5780636352211e146103f357806363b0e66a146103ea57806366ad5c8a146103e157806370a08231146103d8578063715018a6146103cf5780637533d788146103c65780637da0a877146103bd5780637e5b1e24146103b45780637e5cd5c1146103ab578063860fc78b146103a25780638a616bc0146103995780638cfd8f5c146103905780638da5cb5b1461038757806392ff0d311461037e578063950c8a741461037557806395d89b411461036c5780639d78df5b146103095780639f38369a14610363578063a22cb4651461035a578063a6c3d16514610351578063aa1b103f14610348578063b353aaa71461033f578063b88d4fde14610336578063baf3292d1461032d578063bf158fd214610324578063c05b35851461031b578063c87b56dd14610312578063caa0f92a14610309578063cbed8b9c14610300578063d0ebdbe7146102f7578063d1deba1f146102ee578063df2a5b3b146102e5578063e8a3d485146102dc578063e985e9c5146102d3578063eb8d72b7146102ca578063ee070805146102c1578063f2fde38b146102b85763f5ecbdbc146102b057600080fd5b61000e61297c565b5061000e6128c6565b5061000e61289f565b5061000e61276a565b5061000e612711565b5061000e61267e565b5061000e612598565b5061000e61246b565b5061000e6123a9565b5061000e6122b6565b5061000e611cbc565b5061000e6121f5565b5061000e612135565b5061000e61210b565b5061000e61209a565b5061000e612043565b5061000e611ffd565b5061000e611fd9565b5061000e611e69565b5061000e611d7b565b5061000e611cdb565b5061000e611c17565b5061000e611bed565b5061000e611bc9565b5061000e611b9f565b5061000e611b4b565b5061000e611b17565b5061000e611aee565b5061000e611a26565b5061000e6118c7565b5061000e61189d565b5061000e611849565b5061000e611711565b5061000e61166b565b5061000e611584565b5061000e61155a565b5061000e61153b565b5061000e6114ab565b5061000e611286565b5061000e611258565b5061000e6111d6565b5061000e611115565b5061000e6110ec565b5061000e6110c2565b5061000e611039565b5061000e610fcd565b5061000e610eed565b5061000e610ea1565b5061000e610cf8565b5061000e610c71565b5061000e610c47565b5061000e610b7a565b5061000e610b49565b5061000e610a91565b5061000e6109b4565b5061000e61084c565b5061000e61072a565b5061000e6106be565b5061000e61058e565b6004359061ffff8216820361000e57565b6024359061ffff8216820361000e57565b9181601f8401121561000e578235916001600160401b03831161000e576020838186019501011161000e57565b604435906001600160401b038216820361000e57565b90608060031983011261000e5760043561ffff8116810361000e57916001600160401b039060243582811161000e5781610563916004016104e4565b93909392604435818116810361000e579260643591821161000e5761058a916004016104e4565b9091565b503461000e5761059d36610527565b91929493906105aa613624565b6001600160a01b037f000000000000000000000000ae92d5ad7583ad66e49a0c67bad18f6ba52dddc181169116036106685761062b610633926106399761062461060a6106058a61ffff166000526009602052604060002090565b61182e565b805190818414918261065e575b508161063b575b50613771565b3691611442565b923691611442565b926139c2565b005b9050610648368486611442565b602081519101209060208151910120143861061e565b1515915038610617565b60405162461bcd60e51b815260206004820152601e60248201527f4c7a4170703a20696e76616c696420656e64706f696e742063616c6c657200006044820152606490fd5b6001600160a01b0381160361000e57565b503461000e57602036600319011261000e576106396004356106df816106ad565b61070160018060a01b0380600e5460101c16331490811561070a575b50613049565b600d5490613084565b9050601154163314386106fb565b6001600160e01b031981160361000e57565b503461000e57602036600319011261000e5761077960043561074b81610718565b63ffffffff60e01b166396f8caa160e01b811490811561077d575b5060405190151581529081906020820190565b0390f35b6301ffc9a760e01b81149150811561080f575b81156107fe575b81156107ed575b81156107dc575b81156107cb575b81156107ba575b5038610766565b633d8948a760e21b149050386107b3565b630852cd8d60e31b811491506107ac565b6307a4aa2960e41b811491506107a5565b63152a902d60e11b8114915061079e565b635b5e139f60e01b81149150610797565b6380ac58cd60e01b81149150610790565b602435906001600160601b038216820361000e57565b604435906001600160601b038216820361000e57565b503461000e57604036600319011261000e5760043561086a816106ad565b610872610820565b9061087b613624565b600f546001600160a01b039161089691831690831614613049565b6108ad6127106001600160601b0385161115613648565b81161561090c576108e5610639926108d56108c6611409565b6001600160a01b039094168452565b6001600160601b03166020830152565b805160209091015160a01b6001600160a01b0319166001600160a01b039190911617600055565b60405162461bcd60e51b815260206004820152601960248201527822a921991c9c189d1034b73b30b634b2103932b1b2b4bb32b960391b6044820152606490fd5b600091031261000e57565b60005b83811061096b5750506000910152565b818101518382015260200161095b565b9060209161099481518092818552858086019101610958565b601f01601f1916010190565b9060206109b192818152019061097b565b90565b503461000e57600080600319360112610a8e57604051816002546109d78161175e565b80845290600190818116908115610a665750600114610a0d575b61077984610a01818803826113e6565b604051918291826109a0565b60028352602094507f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace5b828410610a53575050508161077993610a0192820101936109f1565b8054858501870152928501928101610a37565b6107799650610a019450602092508593915060ff191682840152151560051b820101936109f1565b80fd5b503461000e5760006020366003190112610a8e57610aad6104c2565b610ab5612a57565b7f000000000000000000000000ae92d5ad7583ad66e49a0c67bad18f6ba52dddc16001600160a01b0316908290823b15610b3257602461ffff918360405195869485936307e0db1760e01b85521660048401525af18015610b25575b610b19575080f35b610b2290611375565b80f35b610b2d612e9c565b610b11565b5080fd5b6001600160a01b03909116815260200190565b503461000e57602036600319011261000e576020610b68600435612bf6565b6040516001600160a01b039091168152f35b503461000e57604036600319011261000e57600435610b98816106ad565b602435610ba481612b51565b6001600160a01b0380821693918183168514610bf85761063994610bda92610bca613624565b1614908115610bdf575b50612b74565b612dba565b610bf29150610bec613624565b90612c1d565b38610bd4565b60405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608490fd5b503461000e57600036600319011261000e57600f546040516001600160a01b039091168152602090f35b503461000e5760006020366003190112610a8e57610c8d6104c2565b610c95612a57565b7f000000000000000000000000ae92d5ad7583ad66e49a0c67bad18f6ba52dddc16001600160a01b0316908290823b15610b3257602461ffff918360405195869485936310ddb13760e01b85521660048401525af18015610b2557610b19575080f35b5060408060031936011261000e577f78681e22b3128fa7b772bf15b61212f0586756a653dde43efbaa16e15683c76b610d2f6104c2565b60243590610d67610d3f83612b51565b610d56610d4a613624565b6001600160a01b031690565b6001600160a01b0390911614613441565b610d7082613213565b610e1c82610d7c613624565b610d8d875192839260208401610ed2565b03610da0601f19918281018452836113e6565b8651600160f01b602082015262030d4060228201526042918201815290610dc790826113e6565b865163040a7bb160e41b8152610e0890888180610dea8688308c60048601613496565b0381305afa908115610e68575b600091610e3a575b503410156134d9565b3491610e15610d4a613624565b9085613825565b610e35610e2a610d4a613624565b945192839283613524565b0390a2005b610e5a9150893d8b11610e61575b610e5281836113e6565b810190613480565b5038610dff565b503d610e48565b610e70612e9c565b610df7565b606090600319011261000e57600435610e8d816106ad565b90602435610e9a816106ad565b9060443590565b503461000e57610639610eb336610e75565b91610ecd610ec884610ec3613624565b612d4c565b612c45565b61329e565b6001600160a01b039091168152602081019190915260400190565b503461000e57604036600319011261000e576127106024356004356000526001602052610f1d604060002061300d565b80516001600160a01b031615610f7c575b610f616107799160018060601b0360208201511693848102948186041490151715610f6f575b516001600160a01b031690565b604051938493049083610ed2565b610f77613032565b610f54565b50610779610f61610f8b612fe7565b915050610f2e565b90604060031983011261000e5760043561ffff8116810361000e5791602435906001600160401b03821161000e5761058a916004016104e4565b503461000e57602061ffff61101b610fe436610f93565b939091166000526009845261100661100d604060002060405192838092611798565b03826113e6565b848151910120923691611442565b82815191012014604051908152f35b60243590811515820361000e57565b503461000e5760a036600319011261000e576110536104c2565b60243561105f816106ad565b6001600160401b039160443583811161000e576110809036906004016104e4565b60643591821515830361000e5760843595861161000e576110a86110b09636906004016104e4565b95909461355b565b60408051928352602083019190915290f35b503461000e57604036600319011261000e576106396004356110e3816106ad565b60243590613084565b503461000e576106396110fe36610e75565b906040519261110c846113b0565b60008452612ca7565b503461000e57602036600319011261000e5760043561113681610ec3613624565b8015611190575b1561114b5761063990613213565b60405162461bcd60e51b815260206004820152601d60248201527f554e415554484f52495a4544204f52204255524e2044495341424c45440000006044820152606490fd5b50600e5460018060a01b0390818160101c1633149182156111c8575b50816111b9575b5061113d565b60ff915060081c1615386111b3565b6011541633149150386111ac565b503461000e576111e536610f93565b91906111ef612a57565b7f000000000000000000000000ae92d5ad7583ad66e49a0c67bad18f6ba52dddc16001600160a01b031691823b1561000e57604051928380926342d65a8d60e01b8252816112466000988997889460048501613990565b03925af18015610b2557610b19575080f35b503461000e57600036600319011261000e57600e5460405160109190911c6001600160a01b03168152602090f35b503461000e57606036600319011261000e576024356112a4816106ad565b6112ac610836565b906112b5613624565b600f546001600160a01b03916112d091831690831614613049565b6112e76127106001600160601b0385161115613648565b81161561131b57611300610639926108d56108c6611409565b6113166004356000526001602052604060002090565b6136a7565b60405162461bcd60e51b815260206004820152601b60248201527a455243323938313a20496e76616c696420706172616d657465727360281b6044820152606490fd5b50634e487b7160e01b600052604160045260246000fd5b6001600160401b03811161138857604052565b61139061135e565b604052565b604081019081106001600160401b0382111761138857604052565b602081019081106001600160401b0382111761138857604052565b60c081019081106001600160401b0382111761138857604052565b601f909101601f19168101906001600160401b0382119082101761138857604052565b6040519061141682611395565b565b6020906001600160401b038111611435575b601f01601f19160190565b61143d61135e565b61142a565b92919261144e82611418565b9161145c60405193846113e6565b82948184528183011161000e578281602093846000960137010152565b9080601f8301121561000e578160206109b193359101611442565b9060018060401b0316600052602052604060002090565b503461000e57606036600319011261000e576114c56104c2565b6024356001600160401b03811161000e576107799161151c60206114f061152a943690600401611479565b61ffff6114fb610511565b9416600052600c825260406000208260405194838680955193849201610958565b820190815203019020611494565b546040519081529081906020820190565b503461000e57602036600319011261000e576020610b68600435612b51565b503461000e57600036600319011261000e576013546040516001600160a01b039091168152602090f35b503461000e5761159336610527565b9091506115a1939293613624565b6001600160a01b0394903090861603611617576115cb936115c3913691611442565b503691611442565b60408180518101031261000e57600080516020613d8d8339815191529160406020830151926115f9846106ad565b01519116926116088285613100565b610e3560405192839283613524565b60405162461bcd60e51b815260206004820152602660248201527f4e6f6e626c6f636b696e674c7a4170703a2063616c6c6572206d7573742062656044820152650204c7a4170760d41b6064820152608490fd5b503461000e57602036600319011261000e57600435611689816106ad565b6001600160a01b031680156116ba576000526005602052610779604060002054604051918291829190602083019252565b60405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608490fd5b503461000e57600080600319360112610a8e5761172c612a57565b600880546001600160a01b0319811690915581906001600160a01b0316600080516020613dad8339815191528280a380f35b90600182811c9216801561178e575b602083101461177857565b634e487b7160e01b600052602260045260246000fd5b91607f169161176d565b90600092918054916117a98361175e565b91828252600193848116908160001461180b57506001146117cb575b50505050565b90919394506000526020928360002092846000945b8386106117f75750505050010190388080806117c5565b8054858701830152940193859082016117e0565b9294505050602093945060ff191683830152151560051b010190388080806117c5565b906114166118429260405193848092611798565b03836113e6565b503461000e57602036600319011261000e5761ffff6118666104c2565b166000526009602052610779611006611889604060002060405192838092611798565b60405191829160208352602083019061097b565b503461000e57600036600319011261000e576010546040516001600160a01b039091168152602090f35b503461000e5760208060031936011261000e576001600160401b0360043581811161000e573660238201121561000e5761190b903690602481600401359101611442565b91611936611917613624565b6013546001600160a01b0391821690821614908115611a0d5750613049565b8251918211611a00575b6119548261194f60125461175e565b6136f2565b80601f831160011461198f57508192600092611984575b5050600019600383901b1c191660019190911b17601255005b01519050388061196b565b6012600052601f19831693909190600080516020613d4d833981519152926000905b8682106119e857505083600195106119cf575b505050811b01601255005b015160001960f88460031b161c191690553880806119c4565b806001859682949686015181550195019301906119b1565b611a0861135e565b611940565b9050611a17613624565b908060085416911614386106fb565b503461000e57600036600319011261000e57611a59611a43613624565b600f546001600160a01b03918216911614613049565b60ff600e5460081c16611aae57611a7a61010061ff0019600e541617600e55565b7f340bf1b235fa0bbed4b1b74504c172953a38e3ef4bd71a7042fd2a0057455b7360405180611aa93082610b36565b0390a1005b60405162461bcd60e51b815260206004820152601860248201527713525395125391c81053149150511648111254d05093115160421b6044820152606490fd5b503461000e57602036600319011261000e576020611b0d600435612e0e565b6040519015158152f35b503461000e57602036600319011261000e57611b34611a43613624565b610639600435600052600160205260006040812055565b503461000e57604036600319011261000e576020611b96611b6a6104c2565b61ffff611b756104d3565b9116600052600a835260406000209061ffff16600052602052604060002090565b54604051908152f35b503461000e57600036600319011261000e576008546040516001600160a01b039091168152602090f35b503461000e57600036600319011261000e57602060ff600e54166040519015158152f35b503461000e57600036600319011261000e57600b546040516001600160a01b039091168152602090f35b503461000e57600080600319360112610a8e5760405181600354611c3a8161175e565b80845290600190818116908115610a665750600114611c635761077984610a01818803826113e6565b60038352602094507fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b5b828410611ca9575050508161077993610a0192820101936109f1565b8054858501870152928501928101611c8d565b503461000e57600036600319011261000e576020600d54604051908152f35b503461000e57602036600319011261000e5761ffff611cf86104c2565b166000526009602052611006611d18604060002060405192838092611798565b805115611d3657610a0181611d3061077993516139ab565b90613ccc565b60405162461bcd60e51b815260206004820152601d60248201527f4c7a4170703a206e6f20747275737465642070617468207265636f72640000006044820152606490fd5b503461000e57604036600319011261000e57600435611d99816106ad565b611da161102a565b90611daa613624565b6001600160a01b0382811693911691828414611e285781611e117f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3193611e00611e23948760005260076020526040600020612af3565b9060ff801983541691151516179055565b60405190151581529081906020820190565b0390a3005b60405162461bcd60e51b815260206004820152601960248201527822a9219b99189d1030b8383937bb32903a379031b0b63632b960391b6044820152606490fd5b503461000e57611e7836610f93565b9190611e82612a57565b604051916020848382860137611ead6034858781013060601b858201520360148101875201856113e6565b61ffff821660009081526009825260408120855191959092906001600160401b038311611fcc575b611ee983611ee3865461175e565b86613737565b81601f8411600114611f4857509180611f379492889994600080516020613d6d8339815191529992611f3d575b50508160011b916000199060031b1c19161790555b60405193849384613990565b0390a180f35b015190503880611f16565b9190601f198416611f5e86600052602060002090565b9389905b828210611fb4575050926001928592600080516020613d6d8339815191529a9b96611f37989610611f9b575b505050811b019055611f2b565b015160001960f88460031b161c19169055388080611f8e565b80600186978294978701518155019601940190611f62565b611fd461135e565b611ed5565b503461000e57600080600319360112610a8e57611ff7611a43613624565b80805580f35b503461000e57600036600319011261000e576040517f000000000000000000000000ae92d5ad7583ad66e49a0c67bad18f6ba52dddc16001600160a01b03168152602090f35b503461000e57608036600319011261000e57600435612061816106ad565b60243561206d816106ad565b606435916001600160401b03831161000e57612090610639933690600401611479565b9160443591612ca7565b503461000e57602036600319011261000e577f5db758e995a17ec1ad84bdef7e8c3293a0bd6179bcce400dff5d4c3d87db726b60206004356120db816106ad565b6120e3612a57565b600b80546001600160a01b0319166001600160a01b03929092169182179055604051908152a1005b503461000e57600036600319011261000e576011546040516001600160a01b039091168152602090f35b503461000e57602036600319011261000e57600435612153816106ad565b61215b612a57565b6011546001600160a01b0391908281166121b2576001600160a01b03191691169081176011556040517fff834ca93c0258022d2badc9c6e2c2e68a029c3e57db637c54b1d78240bdc78c918190611aa99082610b36565b60405162461bcd60e51b815260206004820152601b60248201527a14d55094d0d49254151253d3881350539051d154881254c814d155602a1b6044820152606490fd5b503461000e5760208060031936011261000e5761221b612216600435612e0e565b612b0a565b60405160009160125461222d8161175e565b8084529060019081811690811561229657506001146122565761077984610a01818803826113e6565b919350601260005283600020916000925b828410612283575050508161077993610a0192820101936109f1565b8054858501870152928501928101612267565b60ff1916858501525050151560051b8201019150610a01816107796109f1565b503461000e57608036600319011261000e576122d06104c2565b6122d86104d3565b6064356001600160401b03811161000e576122f79036906004016104e4565b9092612301612a57565b7f000000000000000000000000ae92d5ad7583ad66e49a0c67bad18f6ba52dddc16001600160a01b031690813b1561000e5760008094612378604051978896879586946332fb62e760e21b865261ffff8092166004870152166024850152604435604485015260806064850152608484019161353a565b03925af1801561239c575b61238957005b8061239661063992611375565b8061094d565b6123a4612e9c565b612383565b503461000e57602036600319011261000e576004356123c7816106ad565b6123cf612a57565b600e54601081901c6001600160a01b03166124355762010000600160b01b031916601082901b62010000600160b01b031617600e556040517f60a0f5b9f9e81e98216071b85826681c796256fe3d1354ecb675580fba64fa69918190611aa99082610b36565b60405162461bcd60e51b815260206004820152600e60248201526d1350539051d154881254c814d15560921b6044820152606490fd5b5061247536610527565b9161ffff8694929616600052600c6020526124a981604060002060206040518092878b833787820190815203019020611494565b54918215612547577fc264d91f3adc5588250e1551f547752ca0cfa8f6b530d243b9f9f4cab10ea8e596611aa99461253b91612535916000612529876125248d8961251e8f61250a8f6124fd368c8e611442565b6020815191012014613bb4565b61ffff16600052600c602052604060002090565b91613b9b565b611494565b556115c336868c611442565b86613b40565b60405195869586613c0a565b60405162461bcd60e51b815260206004820152602360248201527f4e6f6e626c6f636b696e674c7a4170703a206e6f2073746f726564206d65737360448201526261676560e81b6064820152608490fd5b503461000e57606036600319011261000e576125b26104c2565b6125ba6104d3565b604435916125c6612a57565b821561264157611aa97f9d5c7c0b934da8fefa9c7760c98383778a12dfbfc0c3b3106518f43fb9508ac09361ffff8316600052600a6020528061261b8560406000209061ffff16600052602052604060002090565b556040519384938460409194939294606082019561ffff80921683521660208201520152565b60405162461bcd60e51b81526020600482015260156024820152744c7a4170703a20696e76616c6964206d696e47617360581b6044820152606490fd5b503461000e57600080600319360112610a8e57604051816012546126a18161175e565b80845290600190818116908115610a6657506001146126ca5761077984610a01818803826113e6565b6012835260209450600080516020613d4d8339815191525b8284106126fe575050508161077993610a0192820101936109f1565b80548585018701529285019281016126e2565b503461000e57604036600319011261000e57602060ff61275e600435612736816106ad565b60243590612743826106ad565b6001600160a01b031660009081526007855260409020612af3565b54166040519015158152f35b503461000e5761277936610f93565b9190612783612a57565b60009161ffff81168352602060098152604084209060018060401b038611612892575b6127ba866127b4845461175e565b84613737565b8490601f8711600114612810575094611f3791818697600080516020613ded8339815191529791612805575b508260011b906000198460031b1c191617905560405193849384613990565b9050850135386127e6565b90601f19871661282584600052602060002090565b9287905b82821061287a57505091611f37939188600080516020613ded83398151915298999410612860575b5050600182811b019055611f2b565b860135600019600385901b60f8161c191690553880612851565b80600185968294968b01358155019501930190612829565b61289a61135e565b6127a6565b503461000e57600036600319011261000e57602060ff600e5460081c166040519015158152f35b503461000e57602036600319011261000e576004356128e4816106ad565b6128ec612a57565b6001600160a01b0390811690811561292857600880546001600160a01b03198116841790915516600080516020613dad833981519152600080a3005b60405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608490fd5b503461000e57608036600319011261000e576107796129996104c2565b6129a16104d3565b906129ad6044356106ad565b604051633d7b2f6f60e21b815261ffff91821660048201529116602482015230604482015260648035908201526000816084817f000000000000000000000000ae92d5ad7583ad66e49a0c67bad18f6ba52dddc16001600160a01b03165afa908115612a4a575b600091612a29575b50604051918291826109a0565b612a44913d8091833e612a3c81836113e6565b810190613932565b38612a1c565b612a52612e9c565b612a14565b6008546001600160a01b0390811690612a6e613624565b1603612a7657565b606460405162461bcd60e51b815260206004820152602060248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152fd5b80546001600160a01b0319166001600160a01b03909216919091179055565b6001600160a01b0316600090815260056020526040902090565b9060018060a01b0316600052602052604060002090565b15612b1157565b60405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606490fd5b6000908152600460205260409020546001600160a01b03166109b1811515612b0a565b15612b7b57565b60405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c0000006064820152608490fd5b6000526004602052604060002090565b612c0261221682612e0e565b6000908152600660205260409020546001600160a01b031690565b6001600160a01b0316600090815260076020526040902060ff91612c4091612af3565b541690565b15612c4c57565b60405162461bcd60e51b815260206004820152602d60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201526c1c881bdc88185c1c1c9bdd9959609a1b6064820152608490fd5b916114169391612cd093612cc0610ec884610ec3613624565b612ccb83838361329e565b612fa2565b612d28565b60809060208152603260208201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60608201520190565b15612d2f57565b60405162461bcd60e51b815280612d4860048201612cd5565b0390fd5b6001600160a01b0380612d5e84612b51565b169281831692848414948515612d94575b50508315612d7e575b50505090565b612d8a91929350612bf6565b1614388080612d78565b60ff92955090612db09160005260076020526040600020612af3565b5416923880612d6f565b816000526006602052612dd1816040600020612aba565b6001600160a01b0380612de384612b51565b169116907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925600080a4565b6000908152600460205260409020546001600160a01b0316151590565b9081602091031261000e57516109b181610718565b6109b1939260809260018060a01b03168252600060208301526040820152816060820152019061097b565b6001600160a01b0391821681529116602082015260408101919091526080606082018190526109b19291019061097b565b506040513d6000823e3d90fd5b3d15612ed4573d90612eba82611418565b91612ec860405193846113e6565b82523d6000602084013e565b606090565b909190803b15612f9a57612f1391602091612ef2613624565b946000604051809681958294630a85bd0160e11b9a8b855260048501612e40565b03926001600160a01b03165af160009181612f6a575b50612f5c57612f36612ea9565b80519081612f575760405162461bcd60e51b815280612d4860048201612cd5565b602001fd5b6001600160e01b0319161490565b612f8c91925060203d8111612f93575b612f8481836113e6565b810190612e2b565b9038612f29565b503d612f7a565b505050600190565b92909190823b15612fde57612f13926020926000612fbe613624565b9660405196879586948593630a85bd0160e11b9b8c865260048601612e6b565b50505050600190565b60405190612ff482611395565b6000546001600160a01b038116835260a01c6020830152565b9060405161301a81611395565b91546001600160a01b038116835260a01c6020830152565b50634e487b7160e01b600052601160045260246000fd5b1561305057565b60405162461bcd60e51b815260206004820152600c60248201526b15539055551213d49256915160a21b6044820152606490fd5b9060ff600e546130a960018060a01b03808360101c16331490811561070a5750613049565b60081c166130c5576130ba91613100565b6001600d5401600d55565b60405162461bcd60e51b815260206004820152601360248201527213525395125391c81254c8111254d050931151606a1b6044820152606490fd5b9060405161310d816113b0565b600081526001600160a01b038316918215613184576114169381612cd09461313d61313783612e0e565b156131c8565b61314961313783612e0e565b61315283612ad9565b6001815401905561316b8361316684612be6565b612aba565b6000600080516020613dcd8339815191528180a4612ed9565b606460405162461bcd60e51b815260206004820152602060248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152fd5b156131cf57565b60405162461bcd60e51b815260206004820152601c60248201527b115490cdcc8c4e881d1bdad95b88185b1c9958591e481b5a5b9d195960221b6044820152606490fd5b6114169061322081612b51565b508061322b81612b51565b600082815260066020908152604080832080546001600160a01b03199081169091556001600160a01b03909416808452600590925282208054600019019055909161327584612be6565b908154169055600080516020613dcd8339815191528280a4600052600160205260006040812055565b60ff600e5416156133a6576132cd906132b684612b51565b6001600160a01b03828116939091821684146133e7565b83169283156133555761331f613340926132f3856132ed610d4a8a612b51565b146133e7565b61331a61330a886000526006602052604060002090565b80546001600160a01b0319169055565b612ad9565b805460001901905561333081612ad9565b6001815401905561316685612be6565b600080516020613dcd833981519152600080a4565b60405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608490fd5b60405162461bcd60e51b81526020600482015260196024820152781514905394d1915494c8105491481393d50810531313d5d151603a1b6044820152606490fd5b156133ee57565b60405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608490fd5b1561344857565b60405162461bcd60e51b815260206004820152601060248201526f29a2a72222a9102727aa1027aba722a960811b6044820152606490fd5b919082604091031261000e576020825192015190565b926109b1949261ffff6134c49316855260018060a01b0316602085015260a0604085015260a084019061097b565b9160006060820152608081840391015261097b565b156134e057565b606460405162461bcd60e51b815260206004820152602060248201527f4e4f5420454e4f554748204d4553534147452056414c554520464f52204741536044820152fd5b6020909392919361ffff60408201951681520152565b908060209392818452848401376000828201840152601f01601f1916010190565b9092936135c09061ffff9398976040976135a789519b8c998a98899863040a7bb160e41b8a5216600489015260018060a01b03809a16602489015260a0604489015260a488019161353a565b921515606486015284830360031901608486015261353a565b03917f000000000000000000000000ae92d5ad7583ad66e49a0c67bad18f6ba52dddc1165afa918215613617575b60009081936135fc57509190565b905061058a91925060403d8111610e6157610e5281836113e6565b61361f612e9c565b6135ee565b601054336001600160a01b03909116036136445736601319013560601c90565b3390565b1561364f57565b60405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608490fd5b90602060018060a01b03916136bf8382511685612aba565b0151825490911660a09190911b6001600160a01b031916179055565b8181106136e6575050565b600081556001016136db565b90601f82116136ff575050565b6114169160126000526020600020906020601f840160051c8301931061372d575b601f0160051c01906136db565b9091508190613720565b9190601f811161374657505050565b611416926000526020600020906020601f840160051c8301931061372d57601f0160051c01906136db565b1561377857565b60405162461bcd60e51b815260206004820152602660248201527f4c7a4170703a20696e76616c696420736f757263652073656e64696e6720636f6044820152651b9d1c9858dd60d21b6064820152608490fd5b91926137f16109b1969461ffff6137ff9416855260c0602086015260c085019061097b565b90838203604085015261097b565b6001600160a01b0390931660608201526000608082015280830360a0919091015261097b565b9091936118429061ffff8316600052600960205261384d604060002060405193848092611798565b8151156138d4577f000000000000000000000000ae92d5ad7583ad66e49a0c67bad18f6ba52dddc16001600160a01b031692833b1561000e576138a86000966040519889978896879562c5803160e81b8752600487016137cc565b03925af180156138c7575b6138ba5750565b8061239661141692611375565b6138cf612e9c565b6138b3565b60405162461bcd60e51b815260206004820152603060248201527f4c7a4170703a2064657374696e6174696f6e20636861696e206973206e6f742060448201526f61207472757374656420736f7572636560801b6064820152608490fd5b60208183031261000e578051906001600160401b03821161000e570181601f8201121561000e57805161396481611418565b9261397260405194856113e6565b8184526020828401011161000e576109b19160208085019101610958565b60409061ffff6109b19593168152816020820152019161353a565b6013198101919082116139ba57565b611416613032565b9290915a604051633356ae4560e11b6020820190815261ffff87166024830152608060448301529491613a2e82613a206139ff60a483018761097b565b6001600160401b03881660648401528281036023190160848401528861097b565b03601f1981018452836113e6565b6000809160405197613a3f896113cb565b609689528260208a019560a036883751923090f1903d9060968211613a86575b6000908288523e15613a73575b5050505050565b613a7c94613a8f565b3880808080613a6c565b60969150613a5f565b9193613b2d7fe183f33de2837795525b4792ca4cd60535bd77c53b7e7030060bfcf5734d6b0c95613b3b939561ffff8151602083012096169586600052600c602052613af38361151c60208b60406000208260405194838680955193849201610958565b55613b10604051978897885260a0602089015260a088019061097b565b6001600160401b039092166040870152858203606087015261097b565b90838203608085015261097b565b0390a1565b9060408180518101031261000e578060406020600080516020613d8d83398151915293015191613b6f836106ad565b01516001600160a01b0390911692613b878285613100565b613b9660405192839283613524565b0390a2565b6020919283604051948593843782019081520301902090565b15613bbb57565b60405162461bcd60e51b815260206004820152602160248201527f4e6f6e626c6f636b696e674c7a4170703a20696e76616c6964207061796c6f616044820152601960fa1b6064820152608490fd5b9160609361ffff613c2d939897969816845260806020850152608084019161353a565b6001600160401b0390951660408201520152565b90601f82018092116139ba57565b15613c5657565b60405162461bcd60e51b815260206004820152600e60248201526d736c6963655f6f766572666c6f7760901b6044820152606490fd5b15613c9357565b60405162461bcd60e51b8152602060048201526011602482015270736c6963655f6f75744f66426f756e647360781b6044820152606490fd5b613ce082613cd981613c41565b1015613c4f565b613ced8282511015613c8c565b81613d05575050604051600081526020810160405290565b60405191601f811691821560051b808486010193838501920101905b808410613d395750508252601f01601f191660405290565b9092835181526020809101930190613d2156febb8a6a4669ba250d26cd7a459eca9d215f8307e33aebe50379bc5a3617ec34448c0400cfe2d1199b1a725c78960bcc2a344d869b80590d0f2bd005db15a572cee699cc96fd0137f69aa35bf7ee50850fab5220d6a207b5609448e71e659cd0648be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3effa41487ad5d6728f0b19276fa1eddc16558578f5109fc39d2dc33c3230470daba164736f6c6343000811000a
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000001000000000000000000000000de9eb6ab368290d17eb207206e2a067c65d98f15000000000000000000000000986a164c4fb936228e4a95cfab4641c4e2fcae910000000000000000000000000fc89252f0994870ed41af3de2eeafbac69d7063000000000000000000000000ae92d5ad7583ad66e49a0c67bad18f6ba52dddc10000000000000000000000000000000000000000000000000000000000000010506c756d62696e672070687973696373000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010506c756d62696e672070687973696373000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d5144596a7555755055797274474a63354c5754504550786d664234655242316b64354c3956334b646733386e0000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): Plumbing physics
Arg [1] : _symbol (string): Plumbing physics
Arg [2] : _contractURI (string): ipfs://QmQDYjuUuPUyrtGJc5LWTPEPxmfB4eRB1kd5L9V3Kdg38n
Arg [3] : _transferable (bool): True
Arg [4] : _governor (address): 0xde9eB6AB368290D17eb207206e2a067C65D98F15
Arg [5] : _helper (address): 0x986A164c4FB936228e4A95cfAb4641c4E2FCaE91
Arg [6] : _trustedForwarder (address): 0x0fC89252F0994870eD41af3dE2EEaFBAc69D7063
Arg [7] : _layerZeroEndpoint (address): 0xae92d5aD7583AD66E49A0c67BAd18F6ba52dDDc1
-----Encoded View---------------
15 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000180
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [4] : 000000000000000000000000de9eb6ab368290d17eb207206e2a067c65d98f15
Arg [5] : 000000000000000000000000986a164c4fb936228e4a95cfab4641c4e2fcae91
Arg [6] : 0000000000000000000000000fc89252f0994870ed41af3de2eeafbac69d7063
Arg [7] : 000000000000000000000000ae92d5ad7583ad66e49a0c67bad18f6ba52dddc1
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000010
Arg [9] : 506c756d62696e67207068797369637300000000000000000000000000000000
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000010
Arg [11] : 506c756d62696e67207068797369637300000000000000000000000000000000
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [13] : 697066733a2f2f516d5144596a7555755055797274474a63354c575450455078
Arg [14] : 6d664234655242316b64354c3956334b646733386e0000000000000000000000
Loading...
Loading
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.