Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 9 from a total of 9 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Set Approval For... | 16649726 | 1082 days ago | IN | 0 ETH | 0.00230078 | ||||
| Grant Role | 16645560 | 1083 days ago | IN | 0 ETH | 0.00147684 | ||||
| Grant Role | 16645557 | 1083 days ago | IN | 0 ETH | 0.00150682 | ||||
| Grant Role | 16645554 | 1083 days ago | IN | 0 ETH | 0.00153956 | ||||
| Renounce Ownersh... | 16645480 | 1083 days ago | IN | 0 ETH | 0.0007328 | ||||
| Set Approval For... | 16644887 | 1083 days ago | IN | 0 ETH | 0.00179604 | ||||
| Set Ghostlist Du... | 16644850 | 1083 days ago | IN | 0 ETH | 0.00097054 | ||||
| Set Ghostlist Ro... | 16644849 | 1083 days ago | IN | 0 ETH | 0.00152316 | ||||
| Increment Reserv... | 16644848 | 1083 days ago | IN | 0 ETH | 0.03494749 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Name:
GhostBoy
Compiler Version
v0.8.17+commit.8df45f5f
Optimization Enabled:
Yes with 10000 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.17;
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/utils/Multicall.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "./Marketplace.sol";
import "./AdminControls.sol";
/**
* @title GhostBoy
* @author ghostboy team
* @notice deployer of this contract becomes owner
* @notice this contract is honored and deployed by https://ghostboy.rip
*/
contract GhostBoy is Marketplace, AdminControls, Multicall {
using MerkleProof for bytes32[];
using Strings for uint256;
uint256 public constant mintPrice = 0.025 ether;
uint256 public constant cap = 6666;
uint256 public immutable reserved;
string public baseUri = "";
string public placeholderTokenUri;
address public immutable vault;
mapping(address => uint256) public minterTokenId;
event UpdateBaseUri(string uri);
event UpdatePlaceholderTokenUri(string uri);
error MissingValue(uint256 provided, uint256 required);
error OutsideWindow(uint256 startTime, uint256 endTime);
error MintingLocked();
error MintingCapped(address minter);
error MintingComplete();
error ReserveSupplyMissing(uint256 provided, uint256 required);
constructor(
address _vault,
uint96 _reserved,
string memory _placeholderTokenUri
) Marketplace("Ghost Boy", "GHOST") AdminControls() {
_grantRole(DEFAULT_ADMIN_ROLE, _vault);
_grantRole(FUND_MANAGER_ROLE, _vault);
_grantRole(DOMAIN_SETTER_ROLE, _vault);
_grantRole(TIME_SETTER_ROLE, _vault);
_grantRole(LIST_SETTER_ROLE, _vault);
address deployer = _msgSender();
_grantRole(DOMAIN_SETTER_ROLE, deployer);
_grantRole(TIME_SETTER_ROLE, deployer);
_grantRole(LIST_SETTER_ROLE, deployer);
vault = _vault;
reserved = _reserved;
placeholderTokenUri = _placeholderTokenUri;
_transferOwnership(_vault);
}
/**
* mints a reserve of token ids during constructor
* @param toTokenId the limit of the token id to mint
* tokens in - reserved for givaways and key players in projects history
* @notice only called once during constructor
* not available to anyone outside of deploy key during constructor
*/
function mintReserves(uint256 toTokenId) public {
address _vault = vault;
uint256 limit = reserved;
uint256 fromTokenId = totalSupply() + 1;
toTokenId = toTokenId == 0 ? limit : toTokenId;
toTokenId = toTokenId > limit ? limit : toTokenId;
if (fromTokenId > limit) {
return;
}
do {
_safeMint(_vault, fromTokenId);
++fromTokenId;
} while (fromTokenId <= toTokenId);
}
function incrementReserves(uint256 countToMint) external {
mintReserves(totalSupply() + countToMint);
}
/**
* allow funds to be deposited
*/
receive() external payable {}
/**
* prove that an account exists in a merkle root
* @param account the leaf to check in the merkle root
* @param proof a list of merkle branches prooving that the leaf is valid
*/
function isGhostlisted(
address account,
bytes32[] calldata proof
) public view returns (bool) {
return proof.verify(ghostlistRoot, keccak256(abi.encodePacked(account)));
}
/**
* mint an nft by either providing a proof that you are in a merkle tree ghostlist
* or by minting after the ghostlist duration is over
* @param proof a proof of merkle branches to show that a leaf is in a tree
*/
function mint(bytes32[] calldata proof) external payable {
if (msg.value < mintPrice) {
revert MissingValue(msg.value, mintPrice);
}
uint256 startTime = mintStart;
if (startTime == 0) {
revert OutsideWindow(0, 0);
}
uint256 timestamp = block.timestamp;
if (timestamp < startTime) {
revert OutsideWindow(startTime, 0);
}
address sender = _msgSender();
if (timestamp < (startTime + ghostlistDuration)) {
if (!isGhostlisted(sender, proof)) {
revert OutsideWindow(startTime, startTime + ghostlistDuration);
}
}
if (minterTokenId[sender] != 0) {
revert MintingCapped(sender);
}
uint256 supply = totalSupply();
if (supply < reserved) {
revert ReserveSupplyMissing(supply, reserved);
}
uint256 tokenId = supply + 1;
minterTokenId[sender] = tokenId;
if (tokenId > cap) {
revert MintingComplete();
}
_safeMint(sender, tokenId);
}
/**
* sets the base uri
* @param _baseUri the updated base uri
* the final resting place of ghost boy
*/
function setBaseURI(string memory _baseUri) public onlyRole(DOMAIN_SETTER_ROLE) {
baseUri = _baseUri;
emit UpdateBaseUri(_baseUri);
}
/**
* update the placeholder token uri
* @param _placeholderTokenUri the placeholder token uri to update
*/
function setPlaceholderTokenURI(string memory _placeholderTokenUri) public onlyRole(DOMAIN_SETTER_ROLE) {
placeholderTokenUri = _placeholderTokenUri;
emit UpdatePlaceholderTokenUri(_placeholderTokenUri);
}
/**
* retrieve the token id's uri
* @param tokenId the token id to retreive the uri for
*/
function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
string memory tokenUri = super.tokenURI(tokenId);
if (bytes(tokenUri).length > 0) {
return string(abi.encodePacked(tokenUri, ".json"));
}
return string(abi.encodePacked(placeholderTokenUri, tokenId.toString(), ".json"));
}
/**
* gets the base uri - the domain and path where the metadata is held
*/
function _baseURI() internal view virtual override returns (string memory) {
return baseUri;
}
/**
* looks for a method to check for compatability
* @param interfaceId the method to look for
*/
function supportsInterface(bytes4 interfaceId) public view virtual override(AdminControls, Marketplace) returns(bool) {
return super.supportsInterface(interfaceId);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (access/AccessControl.sol)
pragma solidity ^0.8.0;
import "./IAccessControl.sol";
import "../utils/Context.sol";
import "../utils/Strings.sol";
import "../utils/introspection/ERC165.sol";
/**
* @dev Contract module that allows children to implement role-based access
* control mechanisms. This is a lightweight version that doesn't allow enumerating role
* members except through off-chain means by accessing the contract event logs. Some
* applications may benefit from on-chain enumerability, for those cases see
* {AccessControlEnumerable}.
*
* Roles are referred to by their `bytes32` identifier. These should be exposed
* in the external API and be unique. The best way to achieve this is by
* using `public constant` hash digests:
*
* ```
* bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
* ```
*
* Roles can be used to represent a set of permissions. To restrict access to a
* function call, use {hasRole}:
*
* ```
* function foo() public {
* require(hasRole(MY_ROLE, msg.sender));
* ...
* }
* ```
*
* Roles can be granted and revoked dynamically via the {grantRole} and
* {revokeRole} functions. Each role has an associated admin role, and only
* accounts that have a role's admin role can call {grantRole} and {revokeRole}.
*
* By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
* that only accounts with this role will be able to grant or revoke other
* roles. More complex role relationships can be created by using
* {_setRoleAdmin}.
*
* WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
* grant and revoke this role. Extra precautions should be taken to secure
* accounts that have been granted it.
*/
abstract contract AccessControl is Context, IAccessControl, ERC165 {
struct RoleData {
mapping(address => bool) members;
bytes32 adminRole;
}
mapping(bytes32 => RoleData) private _roles;
bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;
/**
* @dev Modifier that checks that an account has a specific role. Reverts
* with a standardized message including the required role.
*
* The format of the revert reason is given by the following regular expression:
*
* /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
*
* _Available since v4.1._
*/
modifier onlyRole(bytes32 role) {
_checkRole(role);
_;
}
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId);
}
/**
* @dev Returns `true` if `account` has been granted `role`.
*/
function hasRole(bytes32 role, address account) public view virtual override returns (bool) {
return _roles[role].members[account];
}
/**
* @dev Revert with a standard message if `_msgSender()` is missing `role`.
* Overriding this function changes the behavior of the {onlyRole} modifier.
*
* Format of the revert message is described in {_checkRole}.
*
* _Available since v4.6._
*/
function _checkRole(bytes32 role) internal view virtual {
_checkRole(role, _msgSender());
}
/**
* @dev Revert with a standard message if `account` is missing `role`.
*
* The format of the revert reason is given by the following regular expression:
*
* /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
*/
function _checkRole(bytes32 role, address account) internal view virtual {
if (!hasRole(role, account)) {
revert(
string(
abi.encodePacked(
"AccessControl: account ",
Strings.toHexString(account),
" is missing role ",
Strings.toHexString(uint256(role), 32)
)
)
);
}
}
/**
* @dev Returns the admin role that controls `role`. See {grantRole} and
* {revokeRole}.
*
* To change a role's admin, use {_setRoleAdmin}.
*/
function getRoleAdmin(bytes32 role) public view virtual override returns (bytes32) {
return _roles[role].adminRole;
}
/**
* @dev Grants `role` to `account`.
*
* If `account` had not been already granted `role`, emits a {RoleGranted}
* event.
*
* Requirements:
*
* - the caller must have ``role``'s admin role.
*
* May emit a {RoleGranted} event.
*/
function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
_grantRole(role, account);
}
/**
* @dev Revokes `role` from `account`.
*
* If `account` had been granted `role`, emits a {RoleRevoked} event.
*
* Requirements:
*
* - the caller must have ``role``'s admin role.
*
* May emit a {RoleRevoked} event.
*/
function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
_revokeRole(role, account);
}
/**
* @dev Revokes `role` from the calling account.
*
* Roles are often managed via {grantRole} and {revokeRole}: this function's
* purpose is to provide a mechanism for accounts to lose their privileges
* if they are compromised (such as when a trusted device is misplaced).
*
* If the calling account had been revoked `role`, emits a {RoleRevoked}
* event.
*
* Requirements:
*
* - the caller must be `account`.
*
* May emit a {RoleRevoked} event.
*/
function renounceRole(bytes32 role, address account) public virtual override {
require(account == _msgSender(), "AccessControl: can only renounce roles for self");
_revokeRole(role, account);
}
/**
* @dev Grants `role` to `account`.
*
* If `account` had not been already granted `role`, emits a {RoleGranted}
* event. Note that unlike {grantRole}, this function doesn't perform any
* checks on the calling account.
*
* May emit a {RoleGranted} event.
*
* [WARNING]
* ====
* This function should only be called from the constructor when setting
* up the initial roles for the system.
*
* Using this function in any other way is effectively circumventing the admin
* system imposed by {AccessControl}.
* ====
*
* NOTE: This function is deprecated in favor of {_grantRole}.
*/
function _setupRole(bytes32 role, address account) internal virtual {
_grantRole(role, account);
}
/**
* @dev Sets `adminRole` as ``role``'s admin role.
*
* Emits a {RoleAdminChanged} event.
*/
function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
bytes32 previousAdminRole = getRoleAdmin(role);
_roles[role].adminRole = adminRole;
emit RoleAdminChanged(role, previousAdminRole, adminRole);
}
/**
* @dev Grants `role` to `account`.
*
* Internal function without access restriction.
*
* May emit a {RoleGranted} event.
*/
function _grantRole(bytes32 role, address account) internal virtual {
if (!hasRole(role, account)) {
_roles[role].members[account] = true;
emit RoleGranted(role, account, _msgSender());
}
}
/**
* @dev Revokes `role` from `account`.
*
* Internal function without access restriction.
*
* May emit a {RoleRevoked} event.
*/
function _revokeRole(bytes32 role, address account) internal virtual {
if (hasRole(role, account)) {
_roles[role].members[account] = false;
emit RoleRevoked(role, account, _msgSender());
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol)
pragma solidity ^0.8.0;
/**
* @dev External interface of AccessControl declared to support ERC165 detection.
*/
interface IAccessControl {
/**
* @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
*
* `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
* {RoleAdminChanged} not being emitted signaling this.
*
* _Available since v3.1._
*/
event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);
/**
* @dev Emitted when `account` is granted `role`.
*
* `sender` is the account that originated the contract call, an admin role
* bearer except when using {AccessControl-_setupRole}.
*/
event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);
/**
* @dev Emitted when `account` is revoked `role`.
*
* `sender` is the account that originated the contract call:
* - if using `revokeRole`, it is the admin role bearer
* - if using `renounceRole`, it is the role bearer (i.e. `account`)
*/
event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);
/**
* @dev Returns `true` if `account` has been granted `role`.
*/
function hasRole(bytes32 role, address account) external view returns (bool);
/**
* @dev Returns the admin role that controls `role`. See {grantRole} and
* {revokeRole}.
*
* To change a role's admin, use {AccessControl-_setRoleAdmin}.
*/
function getRoleAdmin(bytes32 role) external view returns (bytes32);
/**
* @dev Grants `role` to `account`.
*
* If `account` had not been already granted `role`, emits a {RoleGranted}
* event.
*
* Requirements:
*
* - the caller must have ``role``'s admin role.
*/
function grantRole(bytes32 role, address account) external;
/**
* @dev Revokes `role` from `account`.
*
* If `account` had been granted `role`, emits a {RoleRevoked} event.
*
* Requirements:
*
* - the caller must have ``role``'s admin role.
*/
function revokeRole(bytes32 role, address account) external;
/**
* @dev Revokes `role` from the calling account.
*
* Roles are often managed via {grantRole} and {revokeRole}: this function's
* purpose is to provide a mechanism for accounts to lose their privileges
* if they are compromised (such as when a trusted device is misplaced).
*
* If the calling account had been granted `role`, emits a {RoleRevoked}
* event.
*
* Requirements:
*
* - the caller must be `account`.
*/
function renounceRole(bytes32 role, address account) external;
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.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 anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (interfaces/IERC165.sol) pragma solidity ^0.8.0; import "../utils/introspection/IERC165.sol";
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
* https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
*
* Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
* presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
* need to send a transaction, and thus is not required to hold Ether at all.
*/
interface IERC20Permit {
/**
* @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
* given ``owner``'s signed approval.
*
* IMPORTANT: The same issues {IERC20-approve} has related to transaction
* ordering also apply here.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `deadline` must be a timestamp in the future.
* - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
* over the EIP712-formatted function arguments.
* - the signature must use ``owner``'s current nonce (see {nonces}).
*
* For more information on the signature format, see the
* https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
* section].
*/
function permit(
address owner,
address spender,
uint256 value,
uint256 deadline,
uint8 v,
bytes32 r,
bytes32 s
) external;
/**
* @dev Returns the current nonce for `owner`. This value must be
* included whenever a signature is generated for {permit}.
*
* Every successful call to {permit} increases ``owner``'s nonce by one. This
* prevents a signature from being used multiple times.
*/
function nonces(address owner) external view returns (uint256);
/**
* @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
*/
// solhint-disable-next-line func-name-mixedcase
function DOMAIN_SEPARATOR() external view returns (bytes32);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `to`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address to, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `from` to `to` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 amount
) external returns (bool);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/utils/SafeERC20.sol)
pragma solidity ^0.8.0;
import "../IERC20.sol";
import "../extensions/draft-IERC20Permit.sol";
import "../../../utils/Address.sol";
/**
* @title SafeERC20
* @dev Wrappers around ERC20 operations that throw on failure (when the token
* contract returns false). Tokens that return no value (and instead revert or
* throw on failure) are also supported, non-reverting calls are assumed to be
* successful.
* To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
* which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
*/
library SafeERC20 {
using Address for address;
function safeTransfer(
IERC20 token,
address to,
uint256 value
) internal {
_callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
}
function safeTransferFrom(
IERC20 token,
address from,
address to,
uint256 value
) internal {
_callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
}
/**
* @dev Deprecated. This function has issues similar to the ones found in
* {IERC20-approve}, and its usage is discouraged.
*
* Whenever possible, use {safeIncreaseAllowance} and
* {safeDecreaseAllowance} instead.
*/
function safeApprove(
IERC20 token,
address spender,
uint256 value
) internal {
// safeApprove should only be called when setting an initial allowance,
// or when resetting it to zero. To increase and decrease it, use
// 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
require(
(value == 0) || (token.allowance(address(this), spender) == 0),
"SafeERC20: approve from non-zero to non-zero allowance"
);
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
}
function safeIncreaseAllowance(
IERC20 token,
address spender,
uint256 value
) internal {
uint256 newAllowance = token.allowance(address(this), spender) + value;
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
}
function safeDecreaseAllowance(
IERC20 token,
address spender,
uint256 value
) internal {
unchecked {
uint256 oldAllowance = token.allowance(address(this), spender);
require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
uint256 newAllowance = oldAllowance - value;
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
}
}
function safePermit(
IERC20Permit token,
address owner,
address spender,
uint256 value,
uint256 deadline,
uint8 v,
bytes32 r,
bytes32 s
) internal {
uint256 nonceBefore = token.nonces(owner);
token.permit(owner, spender, value, deadline, v, r, s);
uint256 nonceAfter = token.nonces(owner);
require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed");
}
/**
* @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
* on the return value: the return value is optional (but if data is returned, it must not be false).
* @param token The token targeted by the call.
* @param data The call data (encoded using abi.encode or one of its variants).
*/
function _callOptionalReturn(IERC20 token, bytes memory data) private {
// We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
// we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that
// the target address contains contract code and also asserts for success in the low-level call.
bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
if (returndata.length > 0) {
// Return data is optional
require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.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 {
if (batchSize > 1) {
if (from != address(0)) {
_balances[from] -= batchSize;
}
if (to != address(0)) {
_balances[to] += batchSize;
}
}
}
/**
* @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 {}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/extensions/ERC721Enumerable.sol)
pragma solidity ^0.8.0;
import "../ERC721.sol";
import "./IERC721Enumerable.sol";
/**
* @dev This implements an optional extension of {ERC721} defined in the EIP that adds
* enumerability of all the token ids in the contract as well as all token ids owned by each
* account.
*/
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
// Mapping from owner to list of owned token IDs
mapping(address => mapping(uint256 => uint256)) private _ownedTokens;
// Mapping from token ID to index of the owner tokens list
mapping(uint256 => uint256) private _ownedTokensIndex;
// Array with all token ids, used for enumeration
uint256[] private _allTokens;
// Mapping from token id to position in the allTokens array
mapping(uint256 => uint256) private _allTokensIndex;
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) {
return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
*/
function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
return _ownedTokens[owner][index];
}
/**
* @dev See {IERC721Enumerable-totalSupply}.
*/
function totalSupply() public view virtual override returns (uint256) {
return _allTokens.length;
}
/**
* @dev See {IERC721Enumerable-tokenByIndex}.
*/
function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
return _allTokens[index];
}
/**
* @dev See {ERC721-_beforeTokenTransfer}.
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 firstTokenId,
uint256 batchSize
) internal virtual override {
super._beforeTokenTransfer(from, to, firstTokenId, batchSize);
if (batchSize > 1) {
// Will only trigger during construction. Batch transferring (minting) is not available afterwards.
revert("ERC721Enumerable: consecutive transfers not supported");
}
uint256 tokenId = firstTokenId;
if (from == address(0)) {
_addTokenToAllTokensEnumeration(tokenId);
} else if (from != to) {
_removeTokenFromOwnerEnumeration(from, tokenId);
}
if (to == address(0)) {
_removeTokenFromAllTokensEnumeration(tokenId);
} else if (to != from) {
_addTokenToOwnerEnumeration(to, tokenId);
}
}
/**
* @dev Private function to add a token to this extension's ownership-tracking data structures.
* @param to address representing the new owner of the given token ID
* @param tokenId uint256 ID of the token to be added to the tokens list of the given address
*/
function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
uint256 length = ERC721.balanceOf(to);
_ownedTokens[to][length] = tokenId;
_ownedTokensIndex[tokenId] = length;
}
/**
* @dev Private function to add a token to this extension's token tracking data structures.
* @param tokenId uint256 ID of the token to be added to the tokens list
*/
function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
_allTokensIndex[tokenId] = _allTokens.length;
_allTokens.push(tokenId);
}
/**
* @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
* while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
* gas optimizations e.g. when performing a transfer operation (avoiding double writes).
* This has O(1) time complexity, but alters the order of the _ownedTokens array.
* @param from address representing the previous owner of the given token ID
* @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
*/
function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
// To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
// then delete the last slot (swap and pop).
uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
uint256 tokenIndex = _ownedTokensIndex[tokenId];
// When the token to delete is the last token, the swap operation is unnecessary
if (tokenIndex != lastTokenIndex) {
uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];
_ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
_ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
}
// This also deletes the contents at the last position of the array
delete _ownedTokensIndex[tokenId];
delete _ownedTokens[from][lastTokenIndex];
}
/**
* @dev Private function to remove a token from this extension's token tracking data structures.
* This has O(1) time complexity, but alters the order of the _allTokens array.
* @param tokenId uint256 ID of the token to be removed from the tokens list
*/
function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
// To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
// then delete the last slot (swap and pop).
uint256 lastTokenIndex = _allTokens.length - 1;
uint256 tokenIndex = _allTokensIndex[tokenId];
// When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
// rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
// an 'if' statement (like in _removeTokenFromOwnerEnumeration)
uint256 lastTokenId = _allTokens[lastTokenIndex];
_allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
_allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
// This also deletes the contents at the last position of the array
delete _allTokensIndex[tokenId];
_allTokens.pop();
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)
pragma solidity ^0.8.0;
import "../IERC721.sol";
/**
* @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Enumerable is IERC721 {
/**
* @dev Returns the total amount of tokens stored by the contract.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns a token ID owned by `owner` at a given `index` of its token list.
* Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
*/
function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);
/**
* @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
* Use along with {totalSupply} to enumerate all tokens.
*/
function tokenByIndex(uint256 index) external view returns (uint256);
}// 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.8.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.8.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
* ====
*
* [IMPORTANT]
* ====
* You shouldn't rely on `isContract` to protect against flash loan attacks!
*
* Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
* like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
* constructor.
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize/address.code.length, which returns 0
// for contracts in construction, since the code is only stored at the end
// of the constructor execution.
return account.code.length > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
(bool success, ) = recipient.call{value: amount}("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value
) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev 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 (last updated v4.8.0) (utils/cryptography/MerkleProof.sol)
pragma solidity ^0.8.0;
/**
* @dev These functions deal with verification of Merkle Tree proofs.
*
* The tree and the proofs can be generated using our
* https://github.com/OpenZeppelin/merkle-tree[JavaScript library].
* You will find a quickstart guide in the readme.
*
* WARNING: You should avoid using leaf values that are 64 bytes long prior to
* hashing, or use a hash function other than keccak256 for hashing leaves.
* This is because the concatenation of a sorted pair of internal nodes in
* the merkle tree could be reinterpreted as a leaf value.
* OpenZeppelin's JavaScript library generates merkle trees that are safe
* against this attack out of the box.
*/
library MerkleProof {
/**
* @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
* defined by `root`. For this, a `proof` must be provided, containing
* sibling hashes on the branch from the leaf to the root of the tree. Each
* pair of leaves and each pair of pre-images are assumed to be sorted.
*/
function verify(
bytes32[] memory proof,
bytes32 root,
bytes32 leaf
) internal pure returns (bool) {
return processProof(proof, leaf) == root;
}
/**
* @dev Calldata version of {verify}
*
* _Available since v4.7._
*/
function verifyCalldata(
bytes32[] calldata proof,
bytes32 root,
bytes32 leaf
) internal pure returns (bool) {
return processProofCalldata(proof, leaf) == root;
}
/**
* @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
* from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
* hash matches the root of the tree. When processing the proof, the pairs
* of leafs & pre-images are assumed to be sorted.
*
* _Available since v4.4._
*/
function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
bytes32 computedHash = leaf;
for (uint256 i = 0; i < proof.length; i++) {
computedHash = _hashPair(computedHash, proof[i]);
}
return computedHash;
}
/**
* @dev Calldata version of {processProof}
*
* _Available since v4.7._
*/
function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
bytes32 computedHash = leaf;
for (uint256 i = 0; i < proof.length; i++) {
computedHash = _hashPair(computedHash, proof[i]);
}
return computedHash;
}
/**
* @dev Returns true if the `leaves` can be simultaneously proven to be a part of a merkle tree defined by
* `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
*
* CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
*
* _Available since v4.7._
*/
function multiProofVerify(
bytes32[] memory proof,
bool[] memory proofFlags,
bytes32 root,
bytes32[] memory leaves
) internal pure returns (bool) {
return processMultiProof(proof, proofFlags, leaves) == root;
}
/**
* @dev Calldata version of {multiProofVerify}
*
* CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
*
* _Available since v4.7._
*/
function multiProofVerifyCalldata(
bytes32[] calldata proof,
bool[] calldata proofFlags,
bytes32 root,
bytes32[] memory leaves
) internal pure returns (bool) {
return processMultiProofCalldata(proof, proofFlags, leaves) == root;
}
/**
* @dev Returns the root of a tree reconstructed from `leaves` and sibling nodes in `proof`. The reconstruction
* proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another
* leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false
* respectively.
*
* CAUTION: Not all merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree
* is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the
* tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer).
*
* _Available since v4.7._
*/
function processMultiProof(
bytes32[] memory proof,
bool[] memory proofFlags,
bytes32[] memory leaves
) internal pure returns (bytes32 merkleRoot) {
// This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
// consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
// `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
// the merkle tree.
uint256 leavesLen = leaves.length;
uint256 totalHashes = proofFlags.length;
// Check proof validity.
require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");
// The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
// `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
bytes32[] memory hashes = new bytes32[](totalHashes);
uint256 leafPos = 0;
uint256 hashPos = 0;
uint256 proofPos = 0;
// At each step, we compute the next hash using two values:
// - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
// get the next hash.
// - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
// `proof` array.
for (uint256 i = 0; i < totalHashes; i++) {
bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
hashes[i] = _hashPair(a, b);
}
if (totalHashes > 0) {
return hashes[totalHashes - 1];
} else if (leavesLen > 0) {
return leaves[0];
} else {
return proof[0];
}
}
/**
* @dev Calldata version of {processMultiProof}.
*
* CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
*
* _Available since v4.7._
*/
function processMultiProofCalldata(
bytes32[] calldata proof,
bool[] calldata proofFlags,
bytes32[] memory leaves
) internal pure returns (bytes32 merkleRoot) {
// This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
// consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
// `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
// the merkle tree.
uint256 leavesLen = leaves.length;
uint256 totalHashes = proofFlags.length;
// Check proof validity.
require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");
// The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
// `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
bytes32[] memory hashes = new bytes32[](totalHashes);
uint256 leafPos = 0;
uint256 hashPos = 0;
uint256 proofPos = 0;
// At each step, we compute the next hash using two values:
// - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
// get the next hash.
// - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
// `proof` array.
for (uint256 i = 0; i < totalHashes; i++) {
bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
hashes[i] = _hashPair(a, b);
}
if (totalHashes > 0) {
return hashes[totalHashes - 1];
} else if (leavesLen > 0) {
return leaves[0];
} else {
return proof[0];
}
}
function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
}
function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
/// @solidity memory-safe-assembly
assembly {
mstore(0x00, a)
mstore(0x20, b)
value := keccak256(0x00, 0x40)
}
}
}// 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.8.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) {
return prod0 / denominator;
}
// Make sure the result is less than 2^256. Also prevents denominator == 0.
require(denominator > prod1);
///////////////////////////////////////////////
// 512 by 256 division.
///////////////////////////////////////////////
// Make division exact by subtracting the remainder from [prod1 prod0].
uint256 remainder;
assembly {
// Compute remainder using mulmod.
remainder := mulmod(x, y, denominator)
// Subtract 256 bit number from 512 bit number.
prod1 := sub(prod1, gt(remainder, prod0))
prod0 := sub(prod0, remainder)
}
// Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
// See https://cs.stackexchange.com/q/138556/92363.
// Does not overflow because the denominator cannot be zero at this stage in the function.
uint256 twos = denominator & (~denominator + 1);
assembly {
// Divide denominator by twos.
denominator := div(denominator, twos)
// Divide [prod1 prod0] by twos.
prod0 := div(prod0, twos)
// Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
twos := add(div(sub(0, twos), twos), 1)
}
// Shift in bits from prod1 into prod0.
prod0 |= prod1 * twos;
// Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
// that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
// four bits. That is, denominator * inv = 1 mod 2^4.
uint256 inverse = (3 * denominator) ^ 2;
// Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
// in modular arithmetic, doubling the correct bits in each step.
inverse *= 2 - denominator * inverse; // inverse mod 2^8
inverse *= 2 - denominator * inverse; // inverse mod 2^16
inverse *= 2 - denominator * inverse; // inverse mod 2^32
inverse *= 2 - denominator * inverse; // inverse mod 2^64
inverse *= 2 - denominator * inverse; // inverse mod 2^128
inverse *= 2 - denominator * inverse; // inverse mod 2^256
// Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
// This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
// less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
// is no longer required.
result = prod0 * inverse;
return result;
}
}
/**
* @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
*/
function mulDiv(
uint256 x,
uint256 y,
uint256 denominator,
Rounding rounding
) internal pure returns (uint256) {
uint256 result = mulDiv(x, y, denominator);
if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
result += 1;
}
return result;
}
/**
* @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
*
* Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
*/
function sqrt(uint256 a) internal pure returns (uint256) {
if (a == 0) {
return 0;
}
// For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
//
// We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
// `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
//
// This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
// → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
// → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
//
// Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
uint256 result = 1 << (log2(a) >> 1);
// At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
// since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
// every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
// into the expected uint128 result.
unchecked {
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
return min(result, a / result);
}
}
/**
* @notice Calculates sqrt(a), following the selected rounding direction.
*/
function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = sqrt(a);
return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
}
}
/**
* @dev Return the log in base 2, rounded down, of a positive value.
* Returns 0 if given 0.
*/
function log2(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
unchecked {
if (value >> 128 > 0) {
value >>= 128;
result += 128;
}
if (value >> 64 > 0) {
value >>= 64;
result += 64;
}
if (value >> 32 > 0) {
value >>= 32;
result += 32;
}
if (value >> 16 > 0) {
value >>= 16;
result += 16;
}
if (value >> 8 > 0) {
value >>= 8;
result += 8;
}
if (value >> 4 > 0) {
value >>= 4;
result += 4;
}
if (value >> 2 > 0) {
value >>= 2;
result += 2;
}
if (value >> 1 > 0) {
result += 1;
}
}
return result;
}
/**
* @dev Return the log in base 2, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = log2(value);
return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
}
}
/**
* @dev Return the log in base 10, rounded down, of a positive value.
* Returns 0 if given 0.
*/
function log10(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
unchecked {
if (value >= 10**64) {
value /= 10**64;
result += 64;
}
if (value >= 10**32) {
value /= 10**32;
result += 32;
}
if (value >= 10**16) {
value /= 10**16;
result += 16;
}
if (value >= 10**8) {
value /= 10**8;
result += 8;
}
if (value >= 10**4) {
value /= 10**4;
result += 4;
}
if (value >= 10**2) {
value /= 10**2;
result += 2;
}
if (value >= 10**1) {
result += 1;
}
}
return result;
}
/**
* @dev Return the log in base 10, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = log10(value);
return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0);
}
}
/**
* @dev Return the log in base 256, rounded down, of a positive value.
* Returns 0 if given 0.
*
* Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
*/
function log256(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
unchecked {
if (value >> 128 > 0) {
value >>= 128;
result += 16;
}
if (value >> 64 > 0) {
value >>= 64;
result += 8;
}
if (value >> 32 > 0) {
value >>= 32;
result += 4;
}
if (value >> 16 > 0) {
value >>= 16;
result += 2;
}
if (value >> 8 > 0) {
result += 1;
}
}
return result;
}
/**
* @dev Return the log in base 10, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
unchecked {
uint256 result = log256(value);
return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0);
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Multicall.sol)
pragma solidity ^0.8.0;
import "./Address.sol";
/**
* @dev Provides a function to batch together multiple calls in a single external call.
*
* _Available since v4.1._
*/
abstract contract Multicall {
/**
* @dev Receives and executes a batch of function calls on this contract.
*/
function multicall(bytes[] calldata data) external virtual returns (bytes[] memory results) {
results = new bytes[](data.length);
for (uint256 i = 0; i < data.length; i++) {
results[i] = Address.functionDelegateCall(address(this), data[i]);
}
return results;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol)
pragma solidity ^0.8.0;
import "./math/Math.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 `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);
}
}// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.17;
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/access/AccessControl.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "./Recoverable.sol";
abstract contract AdminControls is Recoverable, AccessControl, Ownable {
using Address for address payable;
uint256 public mintStart;
uint256 public ghostlistDuration = 1 days;
bytes32 public ghostlistRoot = 0x0000000000000000000000000000000000000000000000000000000000000000;
bytes32 public constant TIME_SETTER_ROLE = keccak256("TIME_SETTER_ROLE");
bytes32 public constant FUND_MANAGER_ROLE = keccak256("FUND_MANAGER_ROLE");
bytes32 public constant DOMAIN_SETTER_ROLE = keccak256("DOMAIN_SETTER_ROLE");
bytes32 public constant LIST_SETTER_ROLE = keccak256("LIST_SETTER_ROLE");
event UpdateGhostlistRoot(bytes32 root);
event UpdateGhostlistDuration(uint256 durationSeconds);
event UpdateMintStart(uint256 startTime);
constructor() AccessControl() Ownable() {}
/**
* set the ghostslist root
* @param _ghostlistRoot the ghostlist root to check proofs against
* @notice only available to owner of the contract
*/
function setGhostlistRoot(bytes32 _ghostlistRoot) public onlyRole(LIST_SETTER_ROLE) {
if (ghostlistRoot == _ghostlistRoot) {
return;
}
ghostlistRoot = _ghostlistRoot;
emit UpdateGhostlistRoot(_ghostlistRoot);
}
/**
* set the duration of the ghostlist window
* @param _ghostlistDuration the amount of time that the ghostlist should be open
* @notice only available to owner of the contract
*/
function setGhostlistDuration(uint256 _ghostlistDuration) public onlyRole(TIME_SETTER_ROLE) {
if (ghostlistDuration == _ghostlistDuration) {
return;
}
ghostlistDuration = _ghostlistDuration;
emit UpdateGhostlistDuration(_ghostlistDuration);
}
/**
* set the mint start time
* @param _mintStart the new mint start time in seconds
* @notice only available to owner of the contract
*/
function setMintStart(uint256 _mintStart) public onlyRole(TIME_SETTER_ROLE) {
if (mintStart == _mintStart) {
return;
}
mintStart = _mintStart;
emit UpdateMintStart(_mintStart);
}
/**
* recovers any erc20 token that has accidentaly been sent to the contract
* @param tokenId the token id to interact with
* @param recipient the recipient of the tokens
* @param amount the amount of tokens to send
* @notice only available to owner of the contract
*/
function recoverERC20(
address tokenId,
address recipient,
uint256 amount
) public onlyRole(FUND_MANAGER_ROLE) {
_recoverERC20(tokenId, recipient, amount);
}
/**
* this method allows the owner to withdraw funds
* paid to the contract during mint
*/
function withdraw() external onlyRole(FUND_MANAGER_ROLE) {
payable(msg.sender).sendValue(address(this).balance);
}
/**
* looks for a method to check for compatability
* @param interfaceId the method to look for
*/
function supportsInterface(bytes4 interfaceId) public view virtual override(AccessControl) returns(bool) {
return super.supportsInterface(interfaceId);
}
}// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.17;
import "@openzeppelin/contracts/interfaces/IERC165.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "operator-filter-registry/src/DefaultOperatorFilterer.sol";
contract Marketplace is DefaultOperatorFilterer, ERC721Enumerable {
constructor(string memory _name, string memory _symbol) ERC721(_name, _symbol) {}
function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721Enumerable) returns (bool) {
return super.supportsInterface(interfaceId);
}
function setApprovalForAll(address operator, bool approved) public override(ERC721, IERC721) onlyAllowedOperatorApproval(operator) {
super.setApprovalForAll(operator, approved);
}
function approve(address operator, uint256 tokenId) public override(ERC721, IERC721) onlyAllowedOperatorApproval(operator) {
super.approve(operator, tokenId);
}
function transferFrom(address from, address to, uint256 tokenId) public override(ERC721, IERC721) onlyAllowedOperator(from) {
super.transferFrom(from, to, tokenId);
}
function safeTransferFrom(address from, address to, uint256 tokenId) public override(ERC721, IERC721) onlyAllowedOperator(from) {
super.safeTransferFrom(from, to, tokenId);
}
function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data)
public
override(ERC721, IERC721)
onlyAllowedOperator(from)
{
super.safeTransferFrom(from, to, tokenId, data);
}
function _beforeTokenTransfer(
address from,
address to,
uint256 firstTokenId,
uint256 batchSize
) internal override(ERC721Enumerable) {
super._beforeTokenTransfer(from, to, firstTokenId, batchSize);
}
}// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.17;
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
abstract contract Recoverable {
using SafeERC20 for IERC20;
error MissingToken();
error UnrecoverableToken(address token);
/**
* recovers erc20 tokens when they have been sent to the contract
* @param tokenId the hash of the token to send out of the contract
* @param recipient the recipient of the transfer
* @param amount the magnitude of the transfer
* @notice native tokens and tokens that match wNative cannot be recovered
*/
function _recoverERC20(
address tokenId,
address recipient,
uint256 amount
) internal virtual {
if (tokenId == address(0)) {
revert MissingToken();
}
IERC20(tokenId).safeTransfer(recipient, amount);
}
modifier unrecoverable(address tokenA, address tokenB) {
if (tokenA == tokenB) {
revert UnrecoverableToken(tokenA);
}
_;
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;
import {OperatorFilterer} from "./OperatorFilterer.sol";
import {CANONICAL_CORI_SUBSCRIPTION} from "./lib/Constants.sol";
/**
* @title DefaultOperatorFilterer
* @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription.
* @dev Please note that if your token contract does not provide an owner with EIP-173, it must provide
* administration methods on the contract itself to interact with the registry otherwise the subscription
* will be locked to the options set during construction.
*/
abstract contract DefaultOperatorFilterer is OperatorFilterer {
/// @dev The constructor that is called when the contract is being deployed.
constructor() OperatorFilterer(CANONICAL_CORI_SUBSCRIPTION, true) {}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;
interface IOperatorFilterRegistry {
/**
* @notice Returns true if operator is not filtered for a given token, either by address or codeHash. Also returns
* true if supplied registrant address is not registered.
*/
function isOperatorAllowed(address registrant, address operator) external view returns (bool);
/**
* @notice Registers an address with the registry. May be called by address itself or by EIP-173 owner.
*/
function register(address registrant) external;
/**
* @notice Registers an address with the registry and "subscribes" to another address's filtered operators and codeHashes.
*/
function registerAndSubscribe(address registrant, address subscription) external;
/**
* @notice Registers an address with the registry and copies the filtered operators and codeHashes from another
* address without subscribing.
*/
function registerAndCopyEntries(address registrant, address registrantToCopy) external;
/**
* @notice Unregisters an address with the registry and removes its subscription. May be called by address itself or by EIP-173 owner.
* Note that this does not remove any filtered addresses or codeHashes.
* Also note that any subscriptions to this registrant will still be active and follow the existing filtered addresses and codehashes.
*/
function unregister(address addr) external;
/**
* @notice Update an operator address for a registered address - when filtered is true, the operator is filtered.
*/
function updateOperator(address registrant, address operator, bool filtered) external;
/**
* @notice Update multiple operators for a registered address - when filtered is true, the operators will be filtered. Reverts on duplicates.
*/
function updateOperators(address registrant, address[] calldata operators, bool filtered) external;
/**
* @notice Update a codeHash for a registered address - when filtered is true, the codeHash is filtered.
*/
function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;
/**
* @notice Update multiple codeHashes for a registered address - when filtered is true, the codeHashes will be filtered. Reverts on duplicates.
*/
function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;
/**
* @notice Subscribe an address to another registrant's filtered operators and codeHashes. Will remove previous
* subscription if present.
* Note that accounts with subscriptions may go on to subscribe to other accounts - in this case,
* subscriptions will not be forwarded. Instead the former subscription's existing entries will still be
* used.
*/
function subscribe(address registrant, address registrantToSubscribe) external;
/**
* @notice Unsubscribe an address from its current subscribed registrant, and optionally copy its filtered operators and codeHashes.
*/
function unsubscribe(address registrant, bool copyExistingEntries) external;
/**
* @notice Get the subscription address of a given registrant, if any.
*/
function subscriptionOf(address addr) external returns (address registrant);
/**
* @notice Get the set of addresses subscribed to a given registrant.
* Note that order is not guaranteed as updates are made.
*/
function subscribers(address registrant) external returns (address[] memory);
/**
* @notice Get the subscriber at a given index in the set of addresses subscribed to a given registrant.
* Note that order is not guaranteed as updates are made.
*/
function subscriberAt(address registrant, uint256 index) external returns (address);
/**
* @notice Copy filtered operators and codeHashes from a different registrantToCopy to addr.
*/
function copyEntriesOf(address registrant, address registrantToCopy) external;
/**
* @notice Returns true if operator is filtered by a given address or its subscription.
*/
function isOperatorFiltered(address registrant, address operator) external returns (bool);
/**
* @notice Returns true if the hash of an address's code is filtered by a given address or its subscription.
*/
function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);
/**
* @notice Returns true if a codeHash is filtered by a given address or its subscription.
*/
function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);
/**
* @notice Returns a list of filtered operators for a given address or its subscription.
*/
function filteredOperators(address addr) external returns (address[] memory);
/**
* @notice Returns the set of filtered codeHashes for a given address or its subscription.
* Note that order is not guaranteed as updates are made.
*/
function filteredCodeHashes(address addr) external returns (bytes32[] memory);
/**
* @notice Returns the filtered operator at the given index of the set of filtered operators for a given address or
* its subscription.
* Note that order is not guaranteed as updates are made.
*/
function filteredOperatorAt(address registrant, uint256 index) external returns (address);
/**
* @notice Returns the filtered codeHash at the given index of the list of filtered codeHashes for a given address or
* its subscription.
* Note that order is not guaranteed as updates are made.
*/
function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);
/**
* @notice Returns true if an address has registered
*/
function isRegistered(address addr) external returns (bool);
/**
* @dev Convenience method to compute the code hash of an arbitrary contract
*/
function codeHashOf(address addr) external returns (bytes32);
}// SPDX-License-Identifier: MIT pragma solidity ^0.8.17; address constant CANONICAL_OPERATOR_FILTER_REGISTRY_ADDRESS = 0x000000000000AAeB6D7670E522A718067333cd4E; address constant CANONICAL_CORI_SUBSCRIPTION = 0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6;
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;
import {IOperatorFilterRegistry} from "./IOperatorFilterRegistry.sol";
import {CANONICAL_OPERATOR_FILTER_REGISTRY_ADDRESS} from "./lib/Constants.sol";
/**
* @title OperatorFilterer
* @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another
* registrant's entries in the OperatorFilterRegistry.
* @dev This smart contract is meant to be inherited by token contracts so they can use the following:
* - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods.
* - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods.
* Please note that if your token contract does not provide an owner with EIP-173, it must provide
* administration methods on the contract itself to interact with the registry otherwise the subscription
* will be locked to the options set during construction.
*/
abstract contract OperatorFilterer {
/// @dev Emitted when an operator is not allowed.
error OperatorNotAllowed(address operator);
IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY =
IOperatorFilterRegistry(CANONICAL_OPERATOR_FILTER_REGISTRY_ADDRESS);
/// @dev The constructor that is called when the contract is being deployed.
constructor(address subscriptionOrRegistrantToCopy, bool subscribe) {
// If an inheriting token contract is deployed to a network without the registry deployed, the modifier
// will not revert, but the contract will need to be registered with the registry once it is deployed in
// order for the modifier to filter addresses.
if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
if (subscribe) {
OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
} else {
if (subscriptionOrRegistrantToCopy != address(0)) {
OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
} else {
OPERATOR_FILTER_REGISTRY.register(address(this));
}
}
}
}
/**
* @dev A helper function to check if an operator is allowed.
*/
modifier onlyAllowedOperator(address from) virtual {
// Allow spending tokens from addresses with balance
// Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
// from an EOA.
if (from != msg.sender) {
_checkFilterOperator(msg.sender);
}
_;
}
/**
* @dev A helper function to check if an operator approval is allowed.
*/
modifier onlyAllowedOperatorApproval(address operator) virtual {
_checkFilterOperator(operator);
_;
}
/**
* @dev A helper function to check if an operator is allowed.
*/
function _checkFilterOperator(address operator) internal view virtual {
// Check registry code length to facilitate testing in environments without a deployed registry.
if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
// under normal circumstances, this function will revert rather than return false, but inheriting contracts
// may specify their own OperatorFilterRegistry implementations, which may behave differently
if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) {
revert OperatorNotAllowed(operator);
}
}
}
}{
"optimizer": {
"enabled": true,
"runs": 10000
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"libraries": {}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_vault","type":"address"},{"internalType":"uint96","name":"_reserved","type":"uint96"},{"internalType":"string","name":"_placeholderTokenUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"minter","type":"address"}],"name":"MintingCapped","type":"error"},{"inputs":[],"name":"MintingComplete","type":"error"},{"inputs":[],"name":"MintingLocked","type":"error"},{"inputs":[],"name":"MissingToken","type":"error"},{"inputs":[{"internalType":"uint256","name":"provided","type":"uint256"},{"internalType":"uint256","name":"required","type":"uint256"}],"name":"MissingValue","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[{"internalType":"uint256","name":"startTime","type":"uint256"},{"internalType":"uint256","name":"endTime","type":"uint256"}],"name":"OutsideWindow","type":"error"},{"inputs":[{"internalType":"uint256","name":"provided","type":"uint256"},{"internalType":"uint256","name":"required","type":"uint256"}],"name":"ReserveSupplyMissing","type":"error"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"UnrecoverableToken","type":"error"},{"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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"uri","type":"string"}],"name":"UpdateBaseUri","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"durationSeconds","type":"uint256"}],"name":"UpdateGhostlistDuration","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bytes32","name":"root","type":"bytes32"}],"name":"UpdateGhostlistRoot","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"startTime","type":"uint256"}],"name":"UpdateMintStart","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"uri","type":"string"}],"name":"UpdatePlaceholderTokenUri","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOMAIN_SETTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FUND_MANAGER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LIST_SETTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TIME_SETTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","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":[],"name":"baseUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ghostlistDuration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ghostlistRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"countToMint","type":"uint256"}],"name":"incrementReserves","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"isGhostlisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"toTokenId","type":"uint256"}],"name":"mintReserves","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintStart","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minterTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes[]","name":"data","type":"bytes[]"}],"name":"multicall","outputs":[{"internalType":"bytes[]","name":"results","type":"bytes[]"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"placeholderTokenUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"tokenId","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"recoverERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserved","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseUri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_ghostlistDuration","type":"uint256"}],"name":"setGhostlistDuration","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_ghostlistRoot","type":"bytes32"}],"name":"setGhostlistRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintStart","type":"uint256"}],"name":"setMintStart","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_placeholderTokenUri","type":"string"}],"name":"setPlaceholderTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"vault","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]Contract Creation Code
62015180600d556000600e81905560e060405260c0908152600f90620000269082620004eb565b503480156200003457600080fd5b5060405162004841380380620048418339810160408190526200005791620005b7565b604080518082018252600981526847686f737420426f7960b81b6020808301919091528251808401909352600583526411d213d4d560da1b90830152908181733cc6cdda760b79bafa08df41ecfa224f810dceb660016daaeb6d7670e522a718067333cd4e3b15620001f25780156200014057604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b600060405180830381600087803b1580156200012157600080fd5b505af115801562000136573d6000803e3d6000fd5b50505050620001f2565b6001600160a01b03821615620001915760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af29039060440162000106565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e48690602401600060405180830381600087803b158015620001d857600080fd5b505af1158015620001ed573d6000803e3d6000fd5b505050505b5060009050620002038382620004eb565b506001620002128282620004eb565b5050505050620002316200022b6200034b60201b60201c565b6200034f565b6200023e600084620003a1565b6200026a7f0b84ee281e5cf521a9ad54a86fafe78946b157177e231bd8ae785af4d3b3620f84620003a1565b62000285600080516020620047e183398151915284620003a1565b620002a06000805160206200480183398151915284620003a1565b620002bb6000805160206200482183398151915284620003a1565b33620002d7600080516020620047e183398151915282620003a1565b620002f26000805160206200480183398151915282620003a1565b6200030d6000805160206200482183398151915282620003a1565b6001600160a01b03841660a0526001600160601b0383166080526010620003358382620004eb565b5062000341846200034f565b50505050620006cd565b3390565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000828152600a602090815260408083206001600160a01b038516845290915290205460ff1662000442576000828152600a602090815260408083206001600160a01b03851684529091529020805460ff19166001179055620004013390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200047157607f821691505b6020821081036200049257634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620004e657600081815260208120601f850160051c81016020861015620004c15750805b601f850160051c820191505b81811015620004e257828155600101620004cd565b5050505b505050565b81516001600160401b0381111562000507576200050762000446565b6200051f816200051884546200045c565b8462000498565b602080601f8311600181146200055757600084156200053e5750858301515b600019600386901b1c1916600185901b178555620004e2565b600085815260208120601f198616915b82811015620005885788860151825594840194600190910190840162000567565b5085821015620005a75787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600080600060608486031215620005cd57600080fd5b83516001600160a01b0381168114620005e557600080fd5b602085810151919450906001600160601b03811681146200060557600080fd5b60408601519093506001600160401b03808211156200062357600080fd5b818701915087601f8301126200063857600080fd5b8151818111156200064d576200064d62000446565b604051601f8201601f19908116603f0116810190838211818310171562000678576200067862000446565b816040528281528a868487010111156200069157600080fd5b600093505b82841015620006b5578484018601518185018701529285019262000696565b60008684830101528096505050505050509250925092565b60805160a0516140d26200070f60003960008181610a1e01526116bc015260008181610a52015281816115380152818161158d01526116dd01526140d26000f3fe6080604052600436106103435760003560e01c80636817c76c116101b0578063ac9650d8116100ec578063d547741f11610095578063eebfe1cb1161006f578063eebfe1cb146109cc578063f2fde38b146109ec578063fbfa77cf14610a0c578063fe60d12c14610a4057600080fd5b8063d547741f1461092f578063e985e9c51461094f578063ecdd78ae1461099857600080fd5b8063b88d4fde116100c6578063b88d4fde146108cf578063c87b56dd146108ef578063ca57dfdd1461090f57600080fd5b8063ac9650d814610879578063b2549439146108a6578063b77a147b146108bc57600080fd5b80637960c27f1161015957806395d89b411161013357806395d89b411461081a5780639abc83201461082f578063a217fddf14610844578063a22cb4651461085957600080fd5b80637960c27f146107965780638da5cb5b146107b657806391d14854146107d457600080fd5b806371fa036a1161018a57806371fa036a146107155780637229c61814610749578063759bfd931461077657600080fd5b80636817c76c146106c557806370a08231146106e0578063715018a61461070057600080fd5b80632f83a6bc1161027f5780634cf5f7a41161022857806355f804b31161020257806355f804b3146106315780636352211e1461065157806363eae6e41461067157806365566833146106a557600080fd5b80634cf5f7a4146105e65780634ed67f81146105fb5780634f6ccce71461061157600080fd5b80633ccfd60b116102595780633ccfd60b1461058f57806341f43434146105a457806342842e0e146105c657600080fd5b80632f83a6bc14610525578063355274ea1461055957806336568abe1461056f57600080fd5b806318160ddd116102ec578063255e4685116102c6578063255e4685146104af57806326f5608b146104c55780632f2ff15d146104e55780632f745c591461050557600080fd5b806318160ddd1461044057806323b872dd1461045f578063248a9ca31461047f57600080fd5b8063095ea7b31161031d578063095ea7b3146103de5780631171bda91461040057806312cdee591461042057600080fd5b806301ffc9a71461034f57806306fdde0314610384578063081812fc146103a657600080fd5b3661034a57005b600080fd5b34801561035b57600080fd5b5061036f61036a366004613678565b610a74565b60405190151581526020015b60405180910390f35b34801561039057600080fd5b50610399610a85565b60405161037b9190613703565b3480156103b257600080fd5b506103c66103c1366004613716565b610b17565b6040516001600160a01b03909116815260200161037b565b3480156103ea57600080fd5b506103fe6103f936600461374b565b610b3e565b005b34801561040c57600080fd5b506103fe61041b366004613775565b610b57565b34801561042c57600080fd5b506103fe61043b366004613874565b610b92565b34801561044c57600080fd5b506008545b60405190815260200161037b565b34801561046b57600080fd5b506103fe61047a366004613775565b610c04565b34801561048b57600080fd5b5061045161049a366004613716565b6000908152600a602052604090206001015490565b3480156104bb57600080fd5b50610451600c5481565b3480156104d157600080fd5b5061036f6104e0366004613909565b610c29565b3480156104f157600080fd5b506103fe61050036600461395c565b610cc0565b34801561051157600080fd5b5061045161052036600461374b565b610ce5565b34801561053157600080fd5b506104517f0b84ee281e5cf521a9ad54a86fafe78946b157177e231bd8ae785af4d3b3620f81565b34801561056557600080fd5b50610451611a0a81565b34801561057b57600080fd5b506103fe61058a36600461395c565b610d92565b34801561059b57600080fd5b506103fe610e1e565b3480156105b057600080fd5b506103c66daaeb6d7670e522a718067333cd4e81565b3480156105d257600080fd5b506103fe6105e1366004613775565b610e55565b3480156105f257600080fd5b50610399610e7a565b34801561060757600080fd5b50610451600d5481565b34801561061d57600080fd5b5061045161062c366004613716565b610f08565b34801561063d57600080fd5b506103fe61064c366004613874565b610fac565b34801561065d57600080fd5b506103c661066c366004613716565b611012565b34801561067d57600080fd5b506104517f33ced24247734ac36f5eccd70a678ac20efc99a63f7ae972c9394528cc9df85d81565b3480156106b157600080fd5b506103fe6106c0366004613716565b611077565b3480156106d157600080fd5b506104516658d15e1762800081565b3480156106ec57600080fd5b506104516106fb366004613988565b6110df565b34801561070c57600080fd5b506103fe611179565b34801561072157600080fd5b506104517f2c0f3a1f2674808454a7f6386486a621d8c962df6d4c596d78176b79a98afc8d81565b34801561075557600080fd5b50610451610764366004613988565b60116020526000908152604090205481565b34801561078257600080fd5b506103fe610791366004613716565b61118d565b3480156107a257600080fd5b506103fe6107b1366004613716565b6111f5565b3480156107c257600080fd5b50600b546001600160a01b03166103c6565b3480156107e057600080fd5b5061036f6107ef36600461395c565b6000918252600a602090815260408084206001600160a01b0393909316845291905290205460ff1690565b34801561082657600080fd5b5061039961125d565b34801561083b57600080fd5b5061039961126c565b34801561085057600080fd5b50610451600081565b34801561086557600080fd5b506103fe6108743660046139b1565b611279565b34801561088557600080fd5b506108996108943660046139e8565b61128d565b60405161037b9190613a2a565b3480156108b257600080fd5b50610451600e5481565b6103fe6108ca3660046139e8565b611382565b3480156108db57600080fd5b506103fe6108ea366004613aaa565b611632565b3480156108fb57600080fd5b5061039961090a366004613716565b61165f565b34801561091b57600080fd5b506103fe61092a366004613716565b6116ba565b34801561093b57600080fd5b506103fe61094a36600461395c565b611766565b34801561095b57600080fd5b5061036f61096a366004613b26565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156109a457600080fd5b506104517f50358d54033371cd7c49ce476a9d4c06dff7774afe05888d4a22b287e1bfe7f481565b3480156109d857600080fd5b506103fe6109e7366004613716565b61178b565b3480156109f857600080fd5b506103fe610a07366004613988565b6117a2565b348015610a1857600080fd5b506103c67f000000000000000000000000000000000000000000000000000000000000000081565b348015610a4c57600080fd5b506104517f000000000000000000000000000000000000000000000000000000000000000081565b6000610a7f8261182f565b92915050565b606060008054610a9490613b50565b80601f0160208091040260200160405190810160405280929190818152602001828054610ac090613b50565b8015610b0d5780601f10610ae257610100808354040283529160200191610b0d565b820191906000526020600020905b815481529060010190602001808311610af057829003601f168201915b5050505050905090565b6000610b228261183a565b506000908152600460205260409020546001600160a01b031690565b81610b488161189e565b610b528383611989565b505050565b7f0b84ee281e5cf521a9ad54a86fafe78946b157177e231bd8ae785af4d3b3620f610b8181611ab5565b610b8c848484611abf565b50505050565b7f33ced24247734ac36f5eccd70a678ac20efc99a63f7ae972c9394528cc9df85d610bbc81611ab5565b6010610bc88382613bf1565b507f64093ff28989f250dd9c89a1a3926237ea87a22b11d068e3f0596a89a114a55182604051610bf89190613703565b60405180910390a15050565b826001600160a01b0381163314610c1e57610c1e3361189e565b610b8c848484611b13565b600e546040517fffffffffffffffffffffffffffffffffffffffff000000000000000000000000606086901b166020820152600091610cb89160340160405160208183030381529060405280519060200120858580806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929493925050611b9a9050565b949350505050565b6000828152600a6020526040902060010154610cdb81611ab5565b610b528383611bb0565b6000610cf0836110df565b8210610d695760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e647300000000000000000000000000000000000000000060648201526084015b60405180910390fd5b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6001600160a01b0381163314610e105760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201527f20726f6c657320666f722073656c6600000000000000000000000000000000006064820152608401610d60565b610e1a8282611c70565b5050565b7f0b84ee281e5cf521a9ad54a86fafe78946b157177e231bd8ae785af4d3b3620f610e4881611ab5565b610e523347611d11565b50565b826001600160a01b0381163314610e6f57610e6f3361189e565b610b8c848484611e2a565b60108054610e8790613b50565b80601f0160208091040260200160405190810160405280929190818152602001828054610eb390613b50565b8015610f005780601f10610ed557610100808354040283529160200191610f00565b820191906000526020600020905b815481529060010190602001808311610ee357829003601f168201915b505050505081565b6000610f1360085490565b8210610f875760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e647300000000000000000000000000000000000000006064820152608401610d60565b60088281548110610f9a57610f9a613ccf565b90600052602060002001549050919050565b7f33ced24247734ac36f5eccd70a678ac20efc99a63f7ae972c9394528cc9df85d610fd681611ab5565b600f610fe28382613bf1565b507f157eb1fffc1000c7f0ee8cb1f87be2620ec910b8be9e3af7db8c97328e2757cf82604051610bf89190613703565b6000818152600260205260408120546001600160a01b031680610a7f5760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e20494400000000000000006044820152606401610d60565b7f50358d54033371cd7c49ce476a9d4c06dff7774afe05888d4a22b287e1bfe7f46110a181611ab5565b600e548214610e1a57600e8290556040518281527fed778ae4fa565f55887f852003015461a42158be913a1ba7f13d359f20c227bf90602001610bf8565b60006001600160a01b03821661115d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f74206120766160448201527f6c6964206f776e657200000000000000000000000000000000000000000000006064820152608401610d60565b506001600160a01b031660009081526003602052604090205490565b611181611e45565b61118b6000611e9f565b565b7f2c0f3a1f2674808454a7f6386486a621d8c962df6d4c596d78176b79a98afc8d6111b781611ab5565b600d548214610e1a57600d8290556040518281527fd3ec68698a05bb514b73955daacf9766a746a7e821fd9751d9e026a64fad5bba90602001610bf8565b7f2c0f3a1f2674808454a7f6386486a621d8c962df6d4c596d78176b79a98afc8d61121f81611ab5565b600c548214610e1a57600c8290556040518281527fbe977e2c218adf4c3954453b9aa8652a0d74138398cfb00edb351584019fa51c90602001610bf8565b606060018054610a9490613b50565b600f8054610e8790613b50565b816112838161189e565b610b528383611f09565b60608167ffffffffffffffff8111156112a8576112a86137b1565b6040519080825280602002602001820160405280156112db57816020015b60608152602001906001900390816112c65790505b50905060005b8281101561137b5761134b308585848181106112ff576112ff613ccf565b90506020028101906113119190613cfe565b8080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250611f1492505050565b82828151811061135d5761135d613ccf565b6020026020010181905250808061137390613d92565b9150506112e1565b5092915050565b6658d15e176280003410156113d2576040517f4c41215f0000000000000000000000000000000000000000000000000000000081523460048201526658d15e176280006024820152604401610d60565b600c54600081900361141a576040517f5d5f4e440000000000000000000000000000000000000000000000000000000081526000600482018190526024820152604401610d60565b428181101561145f576040517f5d5f4e440000000000000000000000000000000000000000000000000000000081526004810183905260006024820152604401610d60565b600d54339061146e9084613dac565b8210156114ce57611480818686610c29565b6114ce5782600d54846114939190613dac565b6040517f5d5f4e4400000000000000000000000000000000000000000000000000000000815260048101929092526024820152604401610d60565b6001600160a01b03811660009081526011602052604090205415611529576040517fef3654990000000000000000000000000000000000000000000000000000000081526001600160a01b0382166004820152602401610d60565b600061153460085490565b90507f00000000000000000000000000000000000000000000000000000000000000008110156115b9576040517fa913b08b000000000000000000000000000000000000000000000000000000008152600481018290527f00000000000000000000000000000000000000000000000000000000000000006024820152604401610d60565b60006115c6826001613dac565b6001600160a01b03841660009081526011602052604090208190559050611a0a81111561161f576040517f0e2a625000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6116298382611f40565b50505050505050565b836001600160a01b038116331461164c5761164c3361189e565b61165885858585611f5a565b5050505050565b6060600061166c83611fe2565b80519091501561169e57806040516020016116879190613dbf565b604051602081830303815290604052915050919050565b60106116a984612032565b604051602001611687929190613e00565b7f00000000000000000000000000000000000000000000000000000000000000007f0000000000000000000000000000000000000000000000000000000000000000600061170760085490565b611712906001613dac565b905083156117205783611722565b815b93508184116117315783611733565b815b9350818111156117435750505050565b61174d8382611f40565b61175681613d92565b9050838111156117435750505050565b6000828152600a602052604090206001015461178181611ab5565b610b528383611c70565b610e528161179860085490565b61092a9190613dac565b6117aa611e45565b6001600160a01b0381166118265760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610d60565b610e5281611e9f565b6000610a7f826120d2565b6000818152600260205260409020546001600160a01b0316610e525760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e20494400000000000000006044820152606401610d60565b6daaeb6d7670e522a718067333cd4e3b15610e52576040517fc61711340000000000000000000000000000000000000000000000000000000081523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611924573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119489190613ecd565b610e52576040517fede71dcc0000000000000000000000000000000000000000000000000000000081526001600160a01b0382166004820152602401610d60565b600061199482611012565b9050806001600160a01b0316836001600160a01b031603611a1d5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610d60565b336001600160a01b0382161480611a395750611a39813361096a565b611aab5760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c0000006064820152608401610d60565b610b528383612128565b610e5281336121ae565b6001600160a01b038316611aff576040517fcb59f26700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b526001600160a01b0384168383612241565b611b1d33826122c1565b611b8f5760405162461bcd60e51b815260206004820152602d60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201527f72206f7220617070726f766564000000000000000000000000000000000000006064820152608401610d60565b610b5283838361233f565b600082611ba7858461258d565b14949350505050565b6000828152600a602090815260408083206001600160a01b038516845290915290205460ff16610e1a576000828152600a602090815260408083206001600160a01b0385168452909152902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055611c2c3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000828152600a602090815260408083206001600160a01b038516845290915290205460ff1615610e1a576000828152600a602090815260408083206001600160a01b038516808552925280832080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b80471015611d615760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610d60565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611dae576040519150601f19603f3d011682016040523d82523d6000602084013e611db3565b606091505b5050905080610b525760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610d60565b610b5283838360405180602001604052806000815250611632565b600b546001600160a01b0316331461118b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d60565b600b80546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610e1a3383836125da565b6060611f398383604051806060016040528060278152602001614076602791396126c6565b9392505050565b610e1a82826040518060200160405280600081525061273e565b611f6433836122c1565b611fd65760405162461bcd60e51b815260206004820152602d60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201527f72206f7220617070726f766564000000000000000000000000000000000000006064820152608401610d60565b610b8c848484846127c7565b6060611fed8261183a565b6000611ff7612850565b905060008151116120175760405180602001604052806000815250611f39565b8061202184612032565b604051602001611687929190613eea565b6060600061203f8361285f565b600101905060008167ffffffffffffffff81111561205f5761205f6137b1565b6040519080825280601f01601f191660200182016040528015612089576020820181803683370190505b5090508181016020015b600019017f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a850494508461209357509392505050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f7965db0b000000000000000000000000000000000000000000000000000000001480610a7f5750610a7f82612941565b600081815260046020526040902080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b038416908117909155819061217582611012565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000828152600a602090815260408083206001600160a01b038516845290915290205460ff16610e1a576121e18161294c565b6121ec83602061295e565b6040516020016121fd929190613f19565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181529082905262461bcd60e51b8252610d6091600401613703565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb00000000000000000000000000000000000000000000000000000000179052610b52908490612b87565b6000806122cd83611012565b9050806001600160a01b0316846001600160a01b0316148061231457506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b80610cb85750836001600160a01b031661232d84610b17565b6001600160a01b031614949350505050565b826001600160a01b031661235282611012565b6001600160a01b0316146123ce5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201527f6f776e65720000000000000000000000000000000000000000000000000000006064820152608401610d60565b6001600160a01b0382166124495760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610d60565b6124568383836001612c6c565b826001600160a01b031661246982611012565b6001600160a01b0316146124e55760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201527f6f776e65720000000000000000000000000000000000000000000000000000006064820152608401610d60565b600081815260046020908152604080832080547fffffffffffffffffffffffff00000000000000000000000000000000000000009081169091556001600160a01b0387811680865260038552838620805460001901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600081815b84518110156125d2576125be828683815181106125b1576125b1613ccf565b6020026020010151612c78565b9150806125ca81613d92565b915050612592565b509392505050565b816001600160a01b0316836001600160a01b03160361263b5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610d60565b6001600160a01b0383811660008181526005602090815260408083209487168084529482529182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6060600080856001600160a01b0316856040516126e39190613f9a565b600060405180830381855af49150503d806000811461271e576040519150601f19603f3d011682016040523d82523d6000602084013e612723565b606091505b509150915061273486838387612ca7565b9695505050505050565b6127488383612d20565b6127556000848484612ed1565b610b525760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610d60565b6127d284848461233f565b6127de84848484612ed1565b610b8c5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610d60565b6060600f8054610a9490613b50565b6000807a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106128a8577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000830492506040015b6d04ee2d6d415b85acef810000000083106128d4576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc1000083106128f257662386f26fc10000830492506010015b6305f5e100831061290a576305f5e100830492506008015b612710831061291e57612710830492506004015b60648310612930576064830492506002015b600a8310610a7f5760010192915050565b6000610a7f8261308d565b6060610a7f6001600160a01b03831660145b6060600061296d836002613fb6565b612978906002613dac565b67ffffffffffffffff811115612990576129906137b1565b6040519080825280601f01601f1916602001820160405280156129ba576020820181803683370190505b5090507f3000000000000000000000000000000000000000000000000000000000000000816000815181106129f1576129f1613ccf565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110612a5457612a54613ccf565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506000612a90846002613fb6565b612a9b906001613dac565b90505b6001811115612b38577f303132333435363738396162636465660000000000000000000000000000000085600f1660108110612adc57612adc613ccf565b1a60f81b828281518110612af257612af2613ccf565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060049490941c93612b3181613fcd565b9050612a9e565b508315611f395760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610d60565b6000612bdc826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166130e39092919063ffffffff16565b805190915015610b525780806020019051810190612bfa9190613ecd565b610b525760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f742073756363656564000000000000000000000000000000000000000000006064820152608401610d60565b610b8c848484846130f2565b6000818310612c94576000828152602084905260409020611f39565b6000838152602083905260409020611f39565b60608315612d16578251600003612d0f576001600160a01b0385163b612d0f5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610d60565b5081610cb8565b610cb88383613233565b6001600160a01b038216612d765760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610d60565b6000818152600260205260409020546001600160a01b031615612ddb5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610d60565b612de9600083836001612c6c565b6000818152600260205260409020546001600160a01b031615612e4e5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610d60565b6001600160a01b038216600081815260036020908152604080832080546001019055848352600290915280822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b15613085576040517f150b7a020000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063150b7a0290612f2e903390899088908890600401613fe4565b6020604051808303816000875af1925050508015612f87575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201909252612f8491810190614016565b60015b61303a573d808015612fb5576040519150601f19603f3d011682016040523d82523d6000602084013e612fba565b606091505b5080516000036130325760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610d60565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050610cb8565b506001610cb8565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d63000000000000000000000000000000000000000000000000000000001480610a7f5750610a7f8261325d565b6060610cb88484600085613340565b6130fe84848484613432565b60018111156131755760405162461bcd60e51b815260206004820152603560248201527f455243373231456e756d657261626c653a20636f6e736563757469766520747260448201527f616e7366657273206e6f7420737570706f7274656400000000000000000000006064820152608401610d60565b816001600160a01b0385166131d1576131cc81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6131f4565b836001600160a01b0316856001600160a01b0316146131f4576131f485826134ba565b6001600160a01b0384166132105761320b81613557565b611658565b846001600160a01b0316846001600160a01b031614611658576116588482613606565b8151156132435781518083602001fd5b8060405162461bcd60e51b8152600401610d609190613703565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd0000000000000000000000000000000000000000000000000000000014806132f057507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b80610a7f57507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff00000000000000000000000000000000000000000000000000000000831614610a7f565b6060824710156133b85760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c00000000000000000000000000000000000000000000000000006064820152608401610d60565b600080866001600160a01b031685876040516133d49190613f9a565b60006040518083038185875af1925050503d8060008114613411576040519150601f19603f3d011682016040523d82523d6000602084013e613416565b606091505b509150915061342787838387612ca7565b979650505050505050565b6001811115610b8c576001600160a01b03841615613478576001600160a01b03841660009081526003602052604081208054839290613472908490614033565b90915550505b6001600160a01b03831615610b8c576001600160a01b038316600090815260036020526040812080548392906134af908490613dac565b909155505050505050565b600060016134c7846110df565b6134d19190614033565b600083815260076020526040902054909150808214613524576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061356990600190614033565b6000838152600960205260408120546008805493945090928490811061359157613591613ccf565b9060005260206000200154905080600883815481106135b2576135b2613ccf565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806135ea576135ea614046565b6001900381819060005260206000200160009055905550505050565b6000613611836110df565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b7fffffffff0000000000000000000000000000000000000000000000000000000081168114610e5257600080fd5b60006020828403121561368a57600080fd5b8135611f398161364a565b60005b838110156136b0578181015183820152602001613698565b50506000910152565b600081518084526136d1816020860160208601613695565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b602081526000611f3960208301846136b9565b60006020828403121561372857600080fd5b5035919050565b80356001600160a01b038116811461374657600080fd5b919050565b6000806040838503121561375e57600080fd5b6137678361372f565b946020939093013593505050565b60008060006060848603121561378a57600080fd5b6137938461372f565b92506137a16020850161372f565b9150604084013590509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600067ffffffffffffffff808411156137fb576137fb6137b1565b604051601f85017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f01168101908282118183101715613841576138416137b1565b8160405280935085815286868601111561385a57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561388657600080fd5b813567ffffffffffffffff81111561389d57600080fd5b8201601f810184136138ae57600080fd5b610cb8848235602084016137e0565b60008083601f8401126138cf57600080fd5b50813567ffffffffffffffff8111156138e757600080fd5b6020830191508360208260051b850101111561390257600080fd5b9250929050565b60008060006040848603121561391e57600080fd5b6139278461372f565b9250602084013567ffffffffffffffff81111561394357600080fd5b61394f868287016138bd565b9497909650939450505050565b6000806040838503121561396f57600080fd5b8235915061397f6020840161372f565b90509250929050565b60006020828403121561399a57600080fd5b611f398261372f565b8015158114610e5257600080fd5b600080604083850312156139c457600080fd5b6139cd8361372f565b915060208301356139dd816139a3565b809150509250929050565b600080602083850312156139fb57600080fd5b823567ffffffffffffffff811115613a1257600080fd5b613a1e858286016138bd565b90969095509350505050565b6000602080830181845280855180835260408601915060408160051b870101925083870160005b82811015613a9d577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc0888603018452613a8b8583516136b9565b94509285019290850190600101613a51565b5092979650505050505050565b60008060008060808587031215613ac057600080fd5b613ac98561372f565b9350613ad76020860161372f565b925060408501359150606085013567ffffffffffffffff811115613afa57600080fd5b8501601f81018713613b0b57600080fd5b613b1a878235602084016137e0565b91505092959194509250565b60008060408385031215613b3957600080fd5b613b428361372f565b915061397f6020840161372f565b600181811c90821680613b6457607f821691505b602082108103613b9d577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b601f821115610b5257600081815260208120601f850160051c81016020861015613bca5750805b601f850160051c820191505b81811015613be957828155600101613bd6565b505050505050565b815167ffffffffffffffff811115613c0b57613c0b6137b1565b613c1f81613c198454613b50565b84613ba3565b602080601f831160018114613c545760008415613c3c5750858301515b600019600386901b1c1916600185901b178555613be9565b6000858152602081207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08616915b82811015613ca157888601518255948401946001909101908401613c82565b5085821015613cbf5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008083357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe1843603018112613d3357600080fd5b83018035915067ffffffffffffffff821115613d4e57600080fd5b60200191503681900382131561390257600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006000198203613da557613da5613d63565b5060010190565b80820180821115610a7f57610a7f613d63565b60008251613dd1818460208701613695565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000920191825250600501919050565b6000808454613e0e81613b50565b60018281168015613e265760018114613e5957613e88565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0084168752821515830287019450613e88565b8860005260208060002060005b85811015613e7f5781548a820152908401908201613e66565b50505082870194505b505050508351613e9c818360208801613695565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000009101908152600501949350505050565b600060208284031215613edf57600080fd5b8151611f39816139a3565b60008351613efc818460208801613695565b835190830190613f10818360208801613695565b01949350505050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351613f51816017850160208801613695565b7f206973206d697373696e6720726f6c65200000000000000000000000000000006017918401918201528351613f8e816028840160208801613695565b01602801949350505050565b60008251613fac818460208701613695565b9190910192915050565b8082028115828204841417610a7f57610a7f613d63565b600081613fdc57613fdc613d63565b506000190190565b60006001600160a01b0380871683528086166020840152508360408301526080606083015261273460808301846136b9565b60006020828403121561402857600080fd5b8151611f398161364a565b81810381811115610a7f57610a7f613d63565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfe416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a2646970667358221220274f5d1de81491abbc2df33378d75af6e91b6d875f1531efd524db38d1d510f364736f6c6343000811003333ced24247734ac36f5eccd70a678ac20efc99a63f7ae972c9394528cc9df85d2c0f3a1f2674808454a7f6386486a621d8c962df6d4c596d78176b79a98afc8d50358d54033371cd7c49ce476a9d4c06dff7774afe05888d4a22b287e1bfe7f400000000000000000000000087e0a274007b6e8bdee0acabb701dfd0081abe8a000000000000000000000000000000000000000000000000000000000000029a0000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000005468747470733a2f2f67686f7374626f792e6d7970696e6174612e636c6f75642f697066732f516d5533346141463373636a5233546b57684357645a37536454645867697858475264323654377a6f7850694a612f000000000000000000000000
Deployed Bytecode
0x6080604052600436106103435760003560e01c80636817c76c116101b0578063ac9650d8116100ec578063d547741f11610095578063eebfe1cb1161006f578063eebfe1cb146109cc578063f2fde38b146109ec578063fbfa77cf14610a0c578063fe60d12c14610a4057600080fd5b8063d547741f1461092f578063e985e9c51461094f578063ecdd78ae1461099857600080fd5b8063b88d4fde116100c6578063b88d4fde146108cf578063c87b56dd146108ef578063ca57dfdd1461090f57600080fd5b8063ac9650d814610879578063b2549439146108a6578063b77a147b146108bc57600080fd5b80637960c27f1161015957806395d89b411161013357806395d89b411461081a5780639abc83201461082f578063a217fddf14610844578063a22cb4651461085957600080fd5b80637960c27f146107965780638da5cb5b146107b657806391d14854146107d457600080fd5b806371fa036a1161018a57806371fa036a146107155780637229c61814610749578063759bfd931461077657600080fd5b80636817c76c146106c557806370a08231146106e0578063715018a61461070057600080fd5b80632f83a6bc1161027f5780634cf5f7a41161022857806355f804b31161020257806355f804b3146106315780636352211e1461065157806363eae6e41461067157806365566833146106a557600080fd5b80634cf5f7a4146105e65780634ed67f81146105fb5780634f6ccce71461061157600080fd5b80633ccfd60b116102595780633ccfd60b1461058f57806341f43434146105a457806342842e0e146105c657600080fd5b80632f83a6bc14610525578063355274ea1461055957806336568abe1461056f57600080fd5b806318160ddd116102ec578063255e4685116102c6578063255e4685146104af57806326f5608b146104c55780632f2ff15d146104e55780632f745c591461050557600080fd5b806318160ddd1461044057806323b872dd1461045f578063248a9ca31461047f57600080fd5b8063095ea7b31161031d578063095ea7b3146103de5780631171bda91461040057806312cdee591461042057600080fd5b806301ffc9a71461034f57806306fdde0314610384578063081812fc146103a657600080fd5b3661034a57005b600080fd5b34801561035b57600080fd5b5061036f61036a366004613678565b610a74565b60405190151581526020015b60405180910390f35b34801561039057600080fd5b50610399610a85565b60405161037b9190613703565b3480156103b257600080fd5b506103c66103c1366004613716565b610b17565b6040516001600160a01b03909116815260200161037b565b3480156103ea57600080fd5b506103fe6103f936600461374b565b610b3e565b005b34801561040c57600080fd5b506103fe61041b366004613775565b610b57565b34801561042c57600080fd5b506103fe61043b366004613874565b610b92565b34801561044c57600080fd5b506008545b60405190815260200161037b565b34801561046b57600080fd5b506103fe61047a366004613775565b610c04565b34801561048b57600080fd5b5061045161049a366004613716565b6000908152600a602052604090206001015490565b3480156104bb57600080fd5b50610451600c5481565b3480156104d157600080fd5b5061036f6104e0366004613909565b610c29565b3480156104f157600080fd5b506103fe61050036600461395c565b610cc0565b34801561051157600080fd5b5061045161052036600461374b565b610ce5565b34801561053157600080fd5b506104517f0b84ee281e5cf521a9ad54a86fafe78946b157177e231bd8ae785af4d3b3620f81565b34801561056557600080fd5b50610451611a0a81565b34801561057b57600080fd5b506103fe61058a36600461395c565b610d92565b34801561059b57600080fd5b506103fe610e1e565b3480156105b057600080fd5b506103c66daaeb6d7670e522a718067333cd4e81565b3480156105d257600080fd5b506103fe6105e1366004613775565b610e55565b3480156105f257600080fd5b50610399610e7a565b34801561060757600080fd5b50610451600d5481565b34801561061d57600080fd5b5061045161062c366004613716565b610f08565b34801561063d57600080fd5b506103fe61064c366004613874565b610fac565b34801561065d57600080fd5b506103c661066c366004613716565b611012565b34801561067d57600080fd5b506104517f33ced24247734ac36f5eccd70a678ac20efc99a63f7ae972c9394528cc9df85d81565b3480156106b157600080fd5b506103fe6106c0366004613716565b611077565b3480156106d157600080fd5b506104516658d15e1762800081565b3480156106ec57600080fd5b506104516106fb366004613988565b6110df565b34801561070c57600080fd5b506103fe611179565b34801561072157600080fd5b506104517f2c0f3a1f2674808454a7f6386486a621d8c962df6d4c596d78176b79a98afc8d81565b34801561075557600080fd5b50610451610764366004613988565b60116020526000908152604090205481565b34801561078257600080fd5b506103fe610791366004613716565b61118d565b3480156107a257600080fd5b506103fe6107b1366004613716565b6111f5565b3480156107c257600080fd5b50600b546001600160a01b03166103c6565b3480156107e057600080fd5b5061036f6107ef36600461395c565b6000918252600a602090815260408084206001600160a01b0393909316845291905290205460ff1690565b34801561082657600080fd5b5061039961125d565b34801561083b57600080fd5b5061039961126c565b34801561085057600080fd5b50610451600081565b34801561086557600080fd5b506103fe6108743660046139b1565b611279565b34801561088557600080fd5b506108996108943660046139e8565b61128d565b60405161037b9190613a2a565b3480156108b257600080fd5b50610451600e5481565b6103fe6108ca3660046139e8565b611382565b3480156108db57600080fd5b506103fe6108ea366004613aaa565b611632565b3480156108fb57600080fd5b5061039961090a366004613716565b61165f565b34801561091b57600080fd5b506103fe61092a366004613716565b6116ba565b34801561093b57600080fd5b506103fe61094a36600461395c565b611766565b34801561095b57600080fd5b5061036f61096a366004613b26565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156109a457600080fd5b506104517f50358d54033371cd7c49ce476a9d4c06dff7774afe05888d4a22b287e1bfe7f481565b3480156109d857600080fd5b506103fe6109e7366004613716565b61178b565b3480156109f857600080fd5b506103fe610a07366004613988565b6117a2565b348015610a1857600080fd5b506103c67f00000000000000000000000087e0a274007b6e8bdee0acabb701dfd0081abe8a81565b348015610a4c57600080fd5b506104517f000000000000000000000000000000000000000000000000000000000000029a81565b6000610a7f8261182f565b92915050565b606060008054610a9490613b50565b80601f0160208091040260200160405190810160405280929190818152602001828054610ac090613b50565b8015610b0d5780601f10610ae257610100808354040283529160200191610b0d565b820191906000526020600020905b815481529060010190602001808311610af057829003601f168201915b5050505050905090565b6000610b228261183a565b506000908152600460205260409020546001600160a01b031690565b81610b488161189e565b610b528383611989565b505050565b7f0b84ee281e5cf521a9ad54a86fafe78946b157177e231bd8ae785af4d3b3620f610b8181611ab5565b610b8c848484611abf565b50505050565b7f33ced24247734ac36f5eccd70a678ac20efc99a63f7ae972c9394528cc9df85d610bbc81611ab5565b6010610bc88382613bf1565b507f64093ff28989f250dd9c89a1a3926237ea87a22b11d068e3f0596a89a114a55182604051610bf89190613703565b60405180910390a15050565b826001600160a01b0381163314610c1e57610c1e3361189e565b610b8c848484611b13565b600e546040517fffffffffffffffffffffffffffffffffffffffff000000000000000000000000606086901b166020820152600091610cb89160340160405160208183030381529060405280519060200120858580806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929493925050611b9a9050565b949350505050565b6000828152600a6020526040902060010154610cdb81611ab5565b610b528383611bb0565b6000610cf0836110df565b8210610d695760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e647300000000000000000000000000000000000000000060648201526084015b60405180910390fd5b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6001600160a01b0381163314610e105760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201527f20726f6c657320666f722073656c6600000000000000000000000000000000006064820152608401610d60565b610e1a8282611c70565b5050565b7f0b84ee281e5cf521a9ad54a86fafe78946b157177e231bd8ae785af4d3b3620f610e4881611ab5565b610e523347611d11565b50565b826001600160a01b0381163314610e6f57610e6f3361189e565b610b8c848484611e2a565b60108054610e8790613b50565b80601f0160208091040260200160405190810160405280929190818152602001828054610eb390613b50565b8015610f005780601f10610ed557610100808354040283529160200191610f00565b820191906000526020600020905b815481529060010190602001808311610ee357829003601f168201915b505050505081565b6000610f1360085490565b8210610f875760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e647300000000000000000000000000000000000000006064820152608401610d60565b60088281548110610f9a57610f9a613ccf565b90600052602060002001549050919050565b7f33ced24247734ac36f5eccd70a678ac20efc99a63f7ae972c9394528cc9df85d610fd681611ab5565b600f610fe28382613bf1565b507f157eb1fffc1000c7f0ee8cb1f87be2620ec910b8be9e3af7db8c97328e2757cf82604051610bf89190613703565b6000818152600260205260408120546001600160a01b031680610a7f5760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e20494400000000000000006044820152606401610d60565b7f50358d54033371cd7c49ce476a9d4c06dff7774afe05888d4a22b287e1bfe7f46110a181611ab5565b600e548214610e1a57600e8290556040518281527fed778ae4fa565f55887f852003015461a42158be913a1ba7f13d359f20c227bf90602001610bf8565b60006001600160a01b03821661115d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f74206120766160448201527f6c6964206f776e657200000000000000000000000000000000000000000000006064820152608401610d60565b506001600160a01b031660009081526003602052604090205490565b611181611e45565b61118b6000611e9f565b565b7f2c0f3a1f2674808454a7f6386486a621d8c962df6d4c596d78176b79a98afc8d6111b781611ab5565b600d548214610e1a57600d8290556040518281527fd3ec68698a05bb514b73955daacf9766a746a7e821fd9751d9e026a64fad5bba90602001610bf8565b7f2c0f3a1f2674808454a7f6386486a621d8c962df6d4c596d78176b79a98afc8d61121f81611ab5565b600c548214610e1a57600c8290556040518281527fbe977e2c218adf4c3954453b9aa8652a0d74138398cfb00edb351584019fa51c90602001610bf8565b606060018054610a9490613b50565b600f8054610e8790613b50565b816112838161189e565b610b528383611f09565b60608167ffffffffffffffff8111156112a8576112a86137b1565b6040519080825280602002602001820160405280156112db57816020015b60608152602001906001900390816112c65790505b50905060005b8281101561137b5761134b308585848181106112ff576112ff613ccf565b90506020028101906113119190613cfe565b8080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250611f1492505050565b82828151811061135d5761135d613ccf565b6020026020010181905250808061137390613d92565b9150506112e1565b5092915050565b6658d15e176280003410156113d2576040517f4c41215f0000000000000000000000000000000000000000000000000000000081523460048201526658d15e176280006024820152604401610d60565b600c54600081900361141a576040517f5d5f4e440000000000000000000000000000000000000000000000000000000081526000600482018190526024820152604401610d60565b428181101561145f576040517f5d5f4e440000000000000000000000000000000000000000000000000000000081526004810183905260006024820152604401610d60565b600d54339061146e9084613dac565b8210156114ce57611480818686610c29565b6114ce5782600d54846114939190613dac565b6040517f5d5f4e4400000000000000000000000000000000000000000000000000000000815260048101929092526024820152604401610d60565b6001600160a01b03811660009081526011602052604090205415611529576040517fef3654990000000000000000000000000000000000000000000000000000000081526001600160a01b0382166004820152602401610d60565b600061153460085490565b90507f000000000000000000000000000000000000000000000000000000000000029a8110156115b9576040517fa913b08b000000000000000000000000000000000000000000000000000000008152600481018290527f000000000000000000000000000000000000000000000000000000000000029a6024820152604401610d60565b60006115c6826001613dac565b6001600160a01b03841660009081526011602052604090208190559050611a0a81111561161f576040517f0e2a625000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6116298382611f40565b50505050505050565b836001600160a01b038116331461164c5761164c3361189e565b61165885858585611f5a565b5050505050565b6060600061166c83611fe2565b80519091501561169e57806040516020016116879190613dbf565b604051602081830303815290604052915050919050565b60106116a984612032565b604051602001611687929190613e00565b7f00000000000000000000000087e0a274007b6e8bdee0acabb701dfd0081abe8a7f000000000000000000000000000000000000000000000000000000000000029a600061170760085490565b611712906001613dac565b905083156117205783611722565b815b93508184116117315783611733565b815b9350818111156117435750505050565b61174d8382611f40565b61175681613d92565b9050838111156117435750505050565b6000828152600a602052604090206001015461178181611ab5565b610b528383611c70565b610e528161179860085490565b61092a9190613dac565b6117aa611e45565b6001600160a01b0381166118265760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610d60565b610e5281611e9f565b6000610a7f826120d2565b6000818152600260205260409020546001600160a01b0316610e525760405162461bcd60e51b815260206004820152601860248201527f4552433732313a20696e76616c696420746f6b656e20494400000000000000006044820152606401610d60565b6daaeb6d7670e522a718067333cd4e3b15610e52576040517fc61711340000000000000000000000000000000000000000000000000000000081523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611924573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119489190613ecd565b610e52576040517fede71dcc0000000000000000000000000000000000000000000000000000000081526001600160a01b0382166004820152602401610d60565b600061199482611012565b9050806001600160a01b0316836001600160a01b031603611a1d5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610d60565b336001600160a01b0382161480611a395750611a39813361096a565b611aab5760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c0000006064820152608401610d60565b610b528383612128565b610e5281336121ae565b6001600160a01b038316611aff576040517fcb59f26700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b526001600160a01b0384168383612241565b611b1d33826122c1565b611b8f5760405162461bcd60e51b815260206004820152602d60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201527f72206f7220617070726f766564000000000000000000000000000000000000006064820152608401610d60565b610b5283838361233f565b600082611ba7858461258d565b14949350505050565b6000828152600a602090815260408083206001600160a01b038516845290915290205460ff16610e1a576000828152600a602090815260408083206001600160a01b0385168452909152902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055611c2c3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000828152600a602090815260408083206001600160a01b038516845290915290205460ff1615610e1a576000828152600a602090815260408083206001600160a01b038516808552925280832080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b80471015611d615760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610d60565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611dae576040519150601f19603f3d011682016040523d82523d6000602084013e611db3565b606091505b5050905080610b525760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610d60565b610b5283838360405180602001604052806000815250611632565b600b546001600160a01b0316331461118b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d60565b600b80546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610e1a3383836125da565b6060611f398383604051806060016040528060278152602001614076602791396126c6565b9392505050565b610e1a82826040518060200160405280600081525061273e565b611f6433836122c1565b611fd65760405162461bcd60e51b815260206004820152602d60248201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560448201527f72206f7220617070726f766564000000000000000000000000000000000000006064820152608401610d60565b610b8c848484846127c7565b6060611fed8261183a565b6000611ff7612850565b905060008151116120175760405180602001604052806000815250611f39565b8061202184612032565b604051602001611687929190613eea565b6060600061203f8361285f565b600101905060008167ffffffffffffffff81111561205f5761205f6137b1565b6040519080825280601f01601f191660200182016040528015612089576020820181803683370190505b5090508181016020015b600019017f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a850494508461209357509392505050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f7965db0b000000000000000000000000000000000000000000000000000000001480610a7f5750610a7f82612941565b600081815260046020526040902080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b038416908117909155819061217582611012565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000828152600a602090815260408083206001600160a01b038516845290915290205460ff16610e1a576121e18161294c565b6121ec83602061295e565b6040516020016121fd929190613f19565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181529082905262461bcd60e51b8252610d6091600401613703565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb00000000000000000000000000000000000000000000000000000000179052610b52908490612b87565b6000806122cd83611012565b9050806001600160a01b0316846001600160a01b0316148061231457506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b80610cb85750836001600160a01b031661232d84610b17565b6001600160a01b031614949350505050565b826001600160a01b031661235282611012565b6001600160a01b0316146123ce5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201527f6f776e65720000000000000000000000000000000000000000000000000000006064820152608401610d60565b6001600160a01b0382166124495760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610d60565b6124568383836001612c6c565b826001600160a01b031661246982611012565b6001600160a01b0316146124e55760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201527f6f776e65720000000000000000000000000000000000000000000000000000006064820152608401610d60565b600081815260046020908152604080832080547fffffffffffffffffffffffff00000000000000000000000000000000000000009081169091556001600160a01b0387811680865260038552838620805460001901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600081815b84518110156125d2576125be828683815181106125b1576125b1613ccf565b6020026020010151612c78565b9150806125ca81613d92565b915050612592565b509392505050565b816001600160a01b0316836001600160a01b03160361263b5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610d60565b6001600160a01b0383811660008181526005602090815260408083209487168084529482529182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6060600080856001600160a01b0316856040516126e39190613f9a565b600060405180830381855af49150503d806000811461271e576040519150601f19603f3d011682016040523d82523d6000602084013e612723565b606091505b509150915061273486838387612ca7565b9695505050505050565b6127488383612d20565b6127556000848484612ed1565b610b525760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610d60565b6127d284848461233f565b6127de84848484612ed1565b610b8c5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610d60565b6060600f8054610a9490613b50565b6000807a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106128a8577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000830492506040015b6d04ee2d6d415b85acef810000000083106128d4576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc1000083106128f257662386f26fc10000830492506010015b6305f5e100831061290a576305f5e100830492506008015b612710831061291e57612710830492506004015b60648310612930576064830492506002015b600a8310610a7f5760010192915050565b6000610a7f8261308d565b6060610a7f6001600160a01b03831660145b6060600061296d836002613fb6565b612978906002613dac565b67ffffffffffffffff811115612990576129906137b1565b6040519080825280601f01601f1916602001820160405280156129ba576020820181803683370190505b5090507f3000000000000000000000000000000000000000000000000000000000000000816000815181106129f1576129f1613ccf565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110612a5457612a54613ccf565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506000612a90846002613fb6565b612a9b906001613dac565b90505b6001811115612b38577f303132333435363738396162636465660000000000000000000000000000000085600f1660108110612adc57612adc613ccf565b1a60f81b828281518110612af257612af2613ccf565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060049490941c93612b3181613fcd565b9050612a9e565b508315611f395760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610d60565b6000612bdc826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166130e39092919063ffffffff16565b805190915015610b525780806020019051810190612bfa9190613ecd565b610b525760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f742073756363656564000000000000000000000000000000000000000000006064820152608401610d60565b610b8c848484846130f2565b6000818310612c94576000828152602084905260409020611f39565b6000838152602083905260409020611f39565b60608315612d16578251600003612d0f576001600160a01b0385163b612d0f5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610d60565b5081610cb8565b610cb88383613233565b6001600160a01b038216612d765760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610d60565b6000818152600260205260409020546001600160a01b031615612ddb5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610d60565b612de9600083836001612c6c565b6000818152600260205260409020546001600160a01b031615612e4e5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610d60565b6001600160a01b038216600081815260036020908152604080832080546001019055848352600290915280822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b15613085576040517f150b7a020000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063150b7a0290612f2e903390899088908890600401613fe4565b6020604051808303816000875af1925050508015612f87575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201909252612f8491810190614016565b60015b61303a573d808015612fb5576040519150601f19603f3d011682016040523d82523d6000602084013e612fba565b606091505b5080516000036130325760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610d60565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050610cb8565b506001610cb8565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d63000000000000000000000000000000000000000000000000000000001480610a7f5750610a7f8261325d565b6060610cb88484600085613340565b6130fe84848484613432565b60018111156131755760405162461bcd60e51b815260206004820152603560248201527f455243373231456e756d657261626c653a20636f6e736563757469766520747260448201527f616e7366657273206e6f7420737570706f7274656400000000000000000000006064820152608401610d60565b816001600160a01b0385166131d1576131cc81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6131f4565b836001600160a01b0316856001600160a01b0316146131f4576131f485826134ba565b6001600160a01b0384166132105761320b81613557565b611658565b846001600160a01b0316846001600160a01b031614611658576116588482613606565b8151156132435781518083602001fd5b8060405162461bcd60e51b8152600401610d609190613703565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd0000000000000000000000000000000000000000000000000000000014806132f057507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b80610a7f57507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff00000000000000000000000000000000000000000000000000000000831614610a7f565b6060824710156133b85760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c00000000000000000000000000000000000000000000000000006064820152608401610d60565b600080866001600160a01b031685876040516133d49190613f9a565b60006040518083038185875af1925050503d8060008114613411576040519150601f19603f3d011682016040523d82523d6000602084013e613416565b606091505b509150915061342787838387612ca7565b979650505050505050565b6001811115610b8c576001600160a01b03841615613478576001600160a01b03841660009081526003602052604081208054839290613472908490614033565b90915550505b6001600160a01b03831615610b8c576001600160a01b038316600090815260036020526040812080548392906134af908490613dac565b909155505050505050565b600060016134c7846110df565b6134d19190614033565b600083815260076020526040902054909150808214613524576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061356990600190614033565b6000838152600960205260408120546008805493945090928490811061359157613591613ccf565b9060005260206000200154905080600883815481106135b2576135b2613ccf565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806135ea576135ea614046565b6001900381819060005260206000200160009055905550505050565b6000613611836110df565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b7fffffffff0000000000000000000000000000000000000000000000000000000081168114610e5257600080fd5b60006020828403121561368a57600080fd5b8135611f398161364a565b60005b838110156136b0578181015183820152602001613698565b50506000910152565b600081518084526136d1816020860160208601613695565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b602081526000611f3960208301846136b9565b60006020828403121561372857600080fd5b5035919050565b80356001600160a01b038116811461374657600080fd5b919050565b6000806040838503121561375e57600080fd5b6137678361372f565b946020939093013593505050565b60008060006060848603121561378a57600080fd5b6137938461372f565b92506137a16020850161372f565b9150604084013590509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600067ffffffffffffffff808411156137fb576137fb6137b1565b604051601f85017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f01168101908282118183101715613841576138416137b1565b8160405280935085815286868601111561385a57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561388657600080fd5b813567ffffffffffffffff81111561389d57600080fd5b8201601f810184136138ae57600080fd5b610cb8848235602084016137e0565b60008083601f8401126138cf57600080fd5b50813567ffffffffffffffff8111156138e757600080fd5b6020830191508360208260051b850101111561390257600080fd5b9250929050565b60008060006040848603121561391e57600080fd5b6139278461372f565b9250602084013567ffffffffffffffff81111561394357600080fd5b61394f868287016138bd565b9497909650939450505050565b6000806040838503121561396f57600080fd5b8235915061397f6020840161372f565b90509250929050565b60006020828403121561399a57600080fd5b611f398261372f565b8015158114610e5257600080fd5b600080604083850312156139c457600080fd5b6139cd8361372f565b915060208301356139dd816139a3565b809150509250929050565b600080602083850312156139fb57600080fd5b823567ffffffffffffffff811115613a1257600080fd5b613a1e858286016138bd565b90969095509350505050565b6000602080830181845280855180835260408601915060408160051b870101925083870160005b82811015613a9d577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc0888603018452613a8b8583516136b9565b94509285019290850190600101613a51565b5092979650505050505050565b60008060008060808587031215613ac057600080fd5b613ac98561372f565b9350613ad76020860161372f565b925060408501359150606085013567ffffffffffffffff811115613afa57600080fd5b8501601f81018713613b0b57600080fd5b613b1a878235602084016137e0565b91505092959194509250565b60008060408385031215613b3957600080fd5b613b428361372f565b915061397f6020840161372f565b600181811c90821680613b6457607f821691505b602082108103613b9d577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b601f821115610b5257600081815260208120601f850160051c81016020861015613bca5750805b601f850160051c820191505b81811015613be957828155600101613bd6565b505050505050565b815167ffffffffffffffff811115613c0b57613c0b6137b1565b613c1f81613c198454613b50565b84613ba3565b602080601f831160018114613c545760008415613c3c5750858301515b600019600386901b1c1916600185901b178555613be9565b6000858152602081207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08616915b82811015613ca157888601518255948401946001909101908401613c82565b5085821015613cbf5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008083357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe1843603018112613d3357600080fd5b83018035915067ffffffffffffffff821115613d4e57600080fd5b60200191503681900382131561390257600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006000198203613da557613da5613d63565b5060010190565b80820180821115610a7f57610a7f613d63565b60008251613dd1818460208701613695565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000920191825250600501919050565b6000808454613e0e81613b50565b60018281168015613e265760018114613e5957613e88565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0084168752821515830287019450613e88565b8860005260208060002060005b85811015613e7f5781548a820152908401908201613e66565b50505082870194505b505050508351613e9c818360208801613695565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000009101908152600501949350505050565b600060208284031215613edf57600080fd5b8151611f39816139a3565b60008351613efc818460208801613695565b835190830190613f10818360208801613695565b01949350505050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351613f51816017850160208801613695565b7f206973206d697373696e6720726f6c65200000000000000000000000000000006017918401918201528351613f8e816028840160208801613695565b01602801949350505050565b60008251613fac818460208701613695565b9190910192915050565b8082028115828204841417610a7f57610a7f613d63565b600081613fdc57613fdc613d63565b506000190190565b60006001600160a01b0380871683528086166020840152508360408301526080606083015261273460808301846136b9565b60006020828403121561402857600080fd5b8151611f398161364a565b81810381811115610a7f57610a7f613d63565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfe416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c206661696c6564a2646970667358221220274f5d1de81491abbc2df33378d75af6e91b6d875f1531efd524db38d1d510f364736f6c63430008110033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000087e0a274007b6e8bdee0acabb701dfd0081abe8a000000000000000000000000000000000000000000000000000000000000029a0000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000005468747470733a2f2f67686f7374626f792e6d7970696e6174612e636c6f75642f697066732f516d5533346141463373636a5233546b57684357645a37536454645867697858475264323654377a6f7850694a612f000000000000000000000000
-----Decoded View---------------
Arg [0] : _vault (address): 0x87E0a274007b6E8bdee0acaBb701dFD0081ABe8a
Arg [1] : _reserved (uint96): 666
Arg [2] : _placeholderTokenUri (string): https://ghostboy.mypinata.cloud/ipfs/QmU34aAF3scjR3TkWhCWdZ7SdTdXgixXGRd26T7zoxPiJa/
-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 00000000000000000000000087e0a274007b6e8bdee0acabb701dfd0081abe8a
Arg [1] : 000000000000000000000000000000000000000000000000000000000000029a
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000054
Arg [4] : 68747470733a2f2f67686f7374626f792e6d7970696e6174612e636c6f75642f
Arg [5] : 697066732f516d5533346141463373636a5233546b57684357645a3753645464
Arg [6] : 5867697858475264323654377a6f7850694a612f000000000000000000000000
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 34 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.