Feature Tip: Add private address tag to any address under My Name Tag !
ERC-1155
Overview
Max Total Supply
0
Holders
579
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
FNFTHandler
Compiler Version
v0.8.9+commit.e5eed63a
Optimization Enabled:
Yes with 10000 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: GNU-GPL v3.0 or later pragma solidity ^0.8.0; import '@openzeppelin/contracts/utils/introspection/ERC165Checker.sol'; import "@openzeppelin/contracts/access/AccessControl.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol"; import "./interfaces/IRevest.sol"; import "./interfaces/IAddressRegistry.sol"; import "./interfaces/ILockManager.sol"; import "./interfaces/ITokenVault.sol"; import "./interfaces/IAddressLock.sol"; import "./utils/RevestAccessControl.sol"; import "./interfaces/IFNFTHandler.sol"; import "./interfaces/IMetadataHandler.sol"; import "./interfaces/IOutputReceiverV4.sol"; contract FNFTHandler is ERC1155, AccessControl, RevestAccessControl, IFNFTHandler { using ERC165Checker for address; bytes32 public constant PAUSER_ROLE = keccak256("PAUSER_ROLE"); bytes4 public constant OUTPUT_RECEIVER_INTERFACE_V4_ID = type(IOutputReceiverV4).interfaceId; mapping(uint => uint) public supply; uint public fnftsCreated = 0; /** * @dev Primary constructor to create an instance of NegativeEntropy * Grants ADMIN and MINTER_ROLE to whoever creates the contract */ constructor(address provider) ERC1155("") RevestAccessControl(provider) { _setupRole(DEFAULT_ADMIN_ROLE, _msgSender()); _setupRole(PAUSER_ROLE, _msgSender()); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override (AccessControl, ERC1155) returns (bool) { return super.supportsInterface(interfaceId); } function mint(address account, uint id, uint amount, bytes memory data) external override onlyRevestController { supply[id] += amount; fnftsCreated += 1; _mint(account, id, amount, data); } function mintBatchRec(address[] calldata recipients, uint[] calldata quantities, uint id, uint newSupply, bytes memory data) external override onlyRevestController { supply[id] += newSupply; fnftsCreated += 1; for(uint i = 0; i < quantities.length; i++) { _mint(recipients[i], id, quantities[i], data); } } function mintBatch(address to, uint[] memory ids, uint[] memory amounts, bytes memory data) external override onlyRevestController {} function setURI(string memory newuri) external override onlyRevestController { _setURI(newuri); } function burn(address account, uint id, uint amount) external override onlyRevestController { supply[id] -= amount; _burn(account, id, amount); } // NB: In its current state, this function is not used anywhere; it is also not safe function burnBatch(address account, uint[] memory ids, uint[] memory amounts) external override onlyRevestController { _burnBatch(account, ids, amounts); } function getBalance(address account, uint id) external view override returns (uint) { return balanceOf(account, id); } function getSupply(uint fnftId) public view override returns (uint) { return supply[fnftId]; } function getNextId() public view override returns (uint) { return fnftsCreated; } // OVERIDDEN ERC-1155 METHODS function _beforeTokenTransfer( address operator, address from, address to, uint[] memory ids, uint[] memory amounts, bytes memory data ) internal override { super._beforeTokenTransfer(operator, from, to, ids, amounts, data); // Loop because all batch transfers must be checked // Will only execute once on singular transfer if (from != address(0) ) { address vault = addressesProvider.getTokenVault(); IRevest.FNFTConfig memory config = ITokenVault(vault).getFNFT(ids[0]); if(config.pipeToContract != address(0) && config.pipeToContract.supportsInterface(OUTPUT_RECEIVER_INTERFACE_V4_ID)) { IOutputReceiverV4(config.pipeToContract).onTransferFNFT(ids[0], operator, from, to, amounts[0], data); } bool canTransfer = !config.nontransferrable; // Only check if not from minter // And not being burned if(ids.length > 1) { uint i = 1; while (canTransfer && i < ids.length) { require(amounts[i] > 0, "Trying to transfer zero tokens"); config = ITokenVault(vault).getFNFT(ids[i]); if(config.pipeToContract != address(0) && config.pipeToContract.supportsInterface(OUTPUT_RECEIVER_INTERFACE_V4_ID)) { IOutputReceiverV4(config.pipeToContract).onTransferFNFT(ids[i], operator, from, to, amounts[i], data); } canTransfer = !config.nontransferrable; i += 1; } } canTransfer = to == address(0) ? true : canTransfer; require(canTransfer, "E046"); } } function uri(uint fnftId) public view override returns (string memory) { return IMetadataHandler(addressesProvider.getMetadataHandler()).getTokenURI(fnftId); } function renderTokenURI( uint tokenId, address owner ) public view returns ( string memory baseRenderURI, string[] memory parameters ) { return IMetadataHandler(addressesProvider.getMetadataHandler()).getRenderTokenURI(tokenId, owner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165Checker.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Library used to query support of an interface declared via {IERC165}. * * Note that these functions return the actual result of the query: they do not * `revert` if an interface is not supported. It is up to the caller to decide * what to do in these cases. */ library ERC165Checker { // As per the EIP-165 spec, no interface should ever match 0xffffffff bytes4 private constant _INTERFACE_ID_INVALID = 0xffffffff; /** * @dev Returns true if `account` supports the {IERC165} interface, */ function supportsERC165(address account) internal view returns (bool) { // Any contract that implements ERC165 must explicitly indicate support of // InterfaceId_ERC165 and explicitly indicate non-support of InterfaceId_Invalid return _supportsERC165Interface(account, type(IERC165).interfaceId) && !_supportsERC165Interface(account, _INTERFACE_ID_INVALID); } /** * @dev Returns true if `account` supports the interface defined by * `interfaceId`. Support for {IERC165} itself is queried automatically. * * See {IERC165-supportsInterface}. */ function supportsInterface(address account, bytes4 interfaceId) internal view returns (bool) { // query support of both ERC165 as per the spec and support of _interfaceId return supportsERC165(account) && _supportsERC165Interface(account, interfaceId); } /** * @dev Returns a boolean array where each value corresponds to the * interfaces passed in and whether they're supported or not. This allows * you to batch check interfaces for a contract where your expectation * is that some interfaces may not be supported. * * See {IERC165-supportsInterface}. * * _Available since v3.4._ */ function getSupportedInterfaces(address account, bytes4[] memory interfaceIds) internal view returns (bool[] memory) { // an array of booleans corresponding to interfaceIds and whether they're supported or not bool[] memory interfaceIdsSupported = new bool[](interfaceIds.length); // query support of ERC165 itself if (supportsERC165(account)) { // query support of each interface in interfaceIds for (uint256 i = 0; i < interfaceIds.length; i++) { interfaceIdsSupported[i] = _supportsERC165Interface(account, interfaceIds[i]); } } return interfaceIdsSupported; } /** * @dev Returns true if `account` supports all the interfaces defined in * `interfaceIds`. Support for {IERC165} itself is queried automatically. * * Batch-querying can lead to gas savings by skipping repeated checks for * {IERC165} support. * * See {IERC165-supportsInterface}. */ function supportsAllInterfaces(address account, bytes4[] memory interfaceIds) internal view returns (bool) { // query support of ERC165 itself if (!supportsERC165(account)) { return false; } // query support of each interface in _interfaceIds for (uint256 i = 0; i < interfaceIds.length; i++) { if (!_supportsERC165Interface(account, interfaceIds[i])) { return false; } } // all interfaces supported return true; } /** * @notice Query if a contract implements an interface, does not check ERC165 support * @param account The address of the contract to query for support of an interface * @param interfaceId The interface identifier, as specified in ERC-165 * @return true if the contract at account indicates support of the interface with * identifier interfaceId, false otherwise * @dev Assumes that account contains a contract that supports ERC165, otherwise * the behavior of this method is undefined. This precondition can be checked * with {supportsERC165}. * Interface identification is specified in ERC-165. */ function _supportsERC165Interface(address account, bytes4 interfaceId) private view returns (bool) { bytes memory encodedParams = abi.encodeWithSelector(IERC165.supportsInterface.selector, interfaceId); (bool success, bytes memory result) = account.staticcall{gas: 30000}(encodedParams); if (result.length < 32) return false; return success && abi.decode(result, (bool)); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.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, _msgSender()); _; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view virtual override returns (bool) { return _roles[role].members[account]; } /** * @dev Revert with a standard message if `account` is missing `role`. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ */ function _checkRole(bytes32 role, address account) internal view virtual { if (!hasRole(role, account)) { revert( string( abi.encodePacked( "AccessControl: account ", Strings.toHexString(uint160(account), 20), " is missing role ", Strings.toHexString(uint256(role), 32) ) ) ); } } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view virtual override returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been revoked `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) public virtual override { require(account == _msgSender(), "AccessControl: can only renounce roles for self"); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== * * NOTE: This function is deprecated in favor of {_grantRole}. */ function _setupRole(bytes32 role, address account) internal virtual { _grantRole(role, account); } /** * @dev Sets `adminRole` as ``role``'s admin role. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { bytes32 previousAdminRole = getRoleAdmin(role); _roles[role].adminRole = adminRole; emit RoleAdminChanged(role, previousAdminRole, adminRole); } /** * @dev Grants `role` to `account`. * * Internal function without access restriction. */ function _grantRole(bytes32 role, address account) internal virtual { if (!hasRole(role, account)) { _roles[role].members[account] = true; emit RoleGranted(role, account, _msgSender()); } } /** * @dev Revokes `role` from `account`. * * Internal function without access restriction. */ function _revokeRole(bytes32 role, address account) internal virtual { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC1155/ERC1155.sol) pragma solidity ^0.8.0; import "./IERC1155.sol"; import "./IERC1155Receiver.sol"; import "./extensions/IERC1155MetadataURI.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of the basic standard multi-token. * See https://eips.ethereum.org/EIPS/eip-1155 * Originally based on code by Enjin: https://github.com/enjin/erc-1155 * * _Available since v3.1._ */ contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI { using Address for address; // Mapping from token ID to account balances mapping(uint256 => mapping(address => uint256)) private _balances; // Mapping from account to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json string private _uri; /** * @dev See {_setURI}. */ constructor(string memory uri_) { _setURI(uri_); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC1155).interfaceId || interfaceId == type(IERC1155MetadataURI).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC1155MetadataURI-uri}. * * This implementation returns the same URI for *all* token types. It relies * on the token type ID substitution mechanism * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP]. * * Clients calling this function must replace the `\{id\}` substring with the * actual token type ID. */ function uri(uint256) public view virtual override returns (string memory) { return _uri; } /** * @dev See {IERC1155-balanceOf}. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) public view virtual override returns (uint256) { require(account != address(0), "ERC1155: balance query for the zero address"); return _balances[id][account]; } /** * @dev See {IERC1155-balanceOfBatch}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch(address[] memory accounts, uint256[] memory ids) public view virtual override returns (uint256[] memory) { require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch"); uint256[] memory batchBalances = new uint256[](accounts.length); for (uint256 i = 0; i < accounts.length; ++i) { batchBalances[i] = balanceOf(accounts[i], ids[i]); } return batchBalances; } /** * @dev See {IERC1155-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC1155-isApprovedForAll}. */ function isApprovedForAll(address account, address operator) public view virtual override returns (bool) { return _operatorApprovals[account][operator]; } /** * @dev See {IERC1155-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes memory data ) public virtual override { require( from == _msgSender() || isApprovedForAll(from, _msgSender()), "ERC1155: caller is not owner nor approved" ); _safeTransferFrom(from, to, id, amount, data); } /** * @dev See {IERC1155-safeBatchTransferFrom}. */ function safeBatchTransferFrom( address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) public virtual override { require( from == _msgSender() || isApprovedForAll(from, _msgSender()), "ERC1155: transfer caller is not owner nor approved" ); _safeBatchTransferFrom(from, to, ids, amounts, data); } /** * @dev Transfers `amount` tokens of token type `id` from `from` to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - `from` must have a balance of tokens of type `id` of at least `amount`. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function _safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: transfer to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, to, _asSingletonArray(id), _asSingletonArray(amount), data); uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: insufficient balance for transfer"); unchecked { _balances[id][from] = fromBalance - amount; } _balances[id][to] += amount; emit TransferSingle(operator, from, to, id, amount); _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}. * * Emits a {TransferBatch} event. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function _safeBatchTransferFrom( address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual { require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); require(to != address(0), "ERC1155: transfer to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, to, ids, amounts, data); for (uint256 i = 0; i < ids.length; ++i) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: insufficient balance for transfer"); unchecked { _balances[id][from] = fromBalance - amount; } _balances[id][to] += amount; } emit TransferBatch(operator, from, to, ids, amounts); _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data); } /** * @dev Sets a new URI for all token types, by relying on the token type ID * substitution mechanism * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP]. * * By this mechanism, any occurrence of the `\{id\}` substring in either the * URI or any of the amounts in the JSON file at said URI will be replaced by * clients with the token type ID. * * For example, the `https://token-cdn-domain/\{id\}.json` URI would be * interpreted by clients as * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json` * for token type ID 0x4cce0. * * See {uri}. * * Because these URIs cannot be meaningfully represented by the {URI} event, * this function emits no events. */ function _setURI(string memory newuri) internal virtual { _uri = newuri; } /** * @dev Creates `amount` tokens of token type `id`, and assigns them to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function _mint( address to, uint256 id, uint256 amount, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: mint to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, address(0), to, _asSingletonArray(id), _asSingletonArray(amount), data); _balances[id][to] += amount; emit TransferSingle(operator, address(0), to, id, amount); _doSafeTransferAcceptanceCheck(operator, address(0), to, id, amount, data); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}. * * Requirements: * * - `ids` and `amounts` must have the same length. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function _mintBatch( address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: mint to the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, address(0), to, ids, amounts, data); for (uint256 i = 0; i < ids.length; i++) { _balances[ids[i]][to] += amounts[i]; } emit TransferBatch(operator, address(0), to, ids, amounts); _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data); } /** * @dev Destroys `amount` tokens of token type `id` from `from` * * Requirements: * * - `from` cannot be the zero address. * - `from` must have at least `amount` tokens of token type `id`. */ function _burn( address from, uint256 id, uint256 amount ) internal virtual { require(from != address(0), "ERC1155: burn from the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, address(0), _asSingletonArray(id), _asSingletonArray(amount), ""); uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][from] = fromBalance - amount; } emit TransferSingle(operator, from, address(0), id, amount); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}. * * Requirements: * * - `ids` and `amounts` must have the same length. */ function _burnBatch( address from, uint256[] memory ids, uint256[] memory amounts ) internal virtual { require(from != address(0), "ERC1155: burn from the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, address(0), ids, amounts, ""); for (uint256 i = 0; i < ids.length; i++) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][from] = fromBalance - amount; } } emit TransferBatch(operator, from, address(0), ids, amounts); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC1155: setting approval status for self"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Hook that is called before any token transfer. This includes minting * and burning, as well as batched variants. * * The same hook is called on both single and batched variants. For single * transfers, the length of the `id` and `amount` arrays will be 1. * * Calling conditions (for each `id` and `amount` pair): * * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens * of token type `id` will be transferred to `to`. * - When `from` is zero, `amount` tokens of token type `id` will be minted * for `to`. * - when `to` is zero, `amount` of ``from``'s tokens of token type `id` * will be burned. * - `from` and `to` are never both zero. * - `ids` and `amounts` have the same, non-zero length. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual {} function _doSafeTransferAcceptanceCheck( address operator, address from, address to, uint256 id, uint256 amount, bytes memory data ) private { if (to.isContract()) { try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) { if (response != IERC1155Receiver.onERC1155Received.selector) { revert("ERC1155: ERC1155Receiver rejected tokens"); } } catch Error(string memory reason) { revert(reason); } catch { revert("ERC1155: transfer to non ERC1155Receiver implementer"); } } } function _doSafeBatchTransferAcceptanceCheck( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) private { if (to.isContract()) { try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns ( bytes4 response ) { if (response != IERC1155Receiver.onERC1155BatchReceived.selector) { revert("ERC1155: ERC1155Receiver rejected tokens"); } } catch Error(string memory reason) { revert(reason); } catch { revert("ERC1155: transfer to non ERC1155Receiver implementer"); } } } function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) { uint256[] memory array = new uint256[](1); array[0] = element; return array; } }
// SPDX-License-Identifier: GNU-GPL v3.0 or later pragma solidity >=0.8.0; interface IRevest { event FNFTTimeLockMinted( address indexed asset, address indexed from, uint indexed fnftId, uint endTime, uint[] quantities, FNFTConfig fnftConfig ); event FNFTValueLockMinted( address indexed asset, address indexed from, uint indexed fnftId, address compareTo, address oracleDispatch, uint[] quantities, FNFTConfig fnftConfig ); event FNFTAddressLockMinted( address indexed asset, address indexed from, uint indexed fnftId, address trigger, uint[] quantities, FNFTConfig fnftConfig ); event FNFTWithdrawn( address indexed from, uint indexed fnftId, uint indexed quantity ); event FNFTSplit( address indexed from, uint[] indexed newFNFTId, uint[] indexed proportions, uint quantity ); event FNFTUnlocked( address indexed from, uint indexed fnftId ); event FNFTMaturityExtended( address indexed from, uint indexed fnftId, uint indexed newExtendedTime ); event FNFTAddionalDeposited( address indexed from, uint indexed newFNFTId, uint indexed quantity, uint amount ); struct FNFTConfig { address asset; // The token being stored address pipeToContract; // Indicates if FNFT will pipe to another contract uint depositAmount; // How many tokens uint depositMul; // Deposit multiplier uint split; // Number of splits remaining uint depositStopTime; // bool maturityExtension; // Maturity extensions remaining bool isMulti; // bool nontransferrable; // False by default (transferrable) // } // Refers to the global balance for an ERC20, encompassing possibly many FNFTs struct TokenTracker { uint lastBalance; uint lastMul; } enum LockType { DoesNotExist, TimeLock, ValueLock, AddressLock } struct LockParam { address addressLock; uint timeLockExpiry; LockType lockType; ValueLock valueLock; } struct Lock { address addressLock; LockType lockType; ValueLock valueLock; uint timeLockExpiry; uint creationTime; bool unlocked; } struct ValueLock { address asset; address compareTo; address oracle; uint unlockValue; bool unlockRisingEdge; } function mintTimeLock( uint endTime, address[] memory recipients, uint[] memory quantities, IRevest.FNFTConfig memory fnftConfig ) external payable returns (uint); function mintValueLock( address primaryAsset, address compareTo, uint unlockValue, bool unlockRisingEdge, address oracleDispatch, address[] memory recipients, uint[] memory quantities, IRevest.FNFTConfig memory fnftConfig ) external payable returns (uint); function mintAddressLock( address trigger, bytes memory arguments, address[] memory recipients, uint[] memory quantities, IRevest.FNFTConfig memory fnftConfig ) external payable returns (uint); function withdrawFNFT(uint tokenUID, uint quantity) external; function unlockFNFT(uint tokenUID) external; function splitFNFT( uint fnftId, uint[] memory proportions, uint quantity ) external returns (uint[] memory newFNFTIds); function depositAdditionalToFNFT( uint fnftId, uint amount, uint quantity ) external returns (uint); function extendFNFTMaturity( uint fnftId, uint endTime ) external returns (uint); function setFlatWeiFee(uint wethFee) external; function setERC20Fee(uint erc20) external; function getFlatWeiFee() external view returns (uint); function getERC20Fee() external view returns (uint); }
// SPDX-License-Identifier: GNU-GPL v3.0 or later pragma solidity >=0.8.0; /** * @title Provider interface for Revest FNFTs * @dev * */ interface IAddressRegistry { function initialize( address lock_manager_, address liquidity_, address revest_token_, address token_vault_, address revest_, address fnft_, address metadata_, address admin_, address rewards_ ) external; function getAdmin() external view returns (address); function setAdmin(address admin) external; function getLockManager() external view returns (address); function setLockManager(address manager) external; function getTokenVault() external view returns (address); function setTokenVault(address vault) external; function getRevestFNFT() external view returns (address); function setRevestFNFT(address fnft) external; function getMetadataHandler() external view returns (address); function setMetadataHandler(address metadata) external; function getRevest() external view returns (address); function setRevest(address revest) external; function getDEX(uint index) external view returns (address); function setDex(address dex) external; function getRevestToken() external view returns (address); function setRevestToken(address token) external; function getRewardsHandler() external view returns(address); function setRewardsHandler(address esc) external; function getAddress(bytes32 id) external view returns (address); function getLPs() external view returns (address); function setLPs(address liquidToken) external; }
// SPDX-License-Identifier: GNU-GPL v3.0 or later pragma solidity >=0.8.0; import "./IRevest.sol"; interface ILockManager { function createLock(uint fnftId, IRevest.LockParam memory lock) external returns (uint); function getLock(uint lockId) external view returns (IRevest.Lock memory); function fnftIdToLockId(uint fnftId) external view returns (uint); function fnftIdToLock(uint fnftId) external view returns (IRevest.Lock memory); function pointFNFTToLock(uint fnftId, uint lockId) external; function lockTypes(uint tokenId) external view returns (IRevest.LockType); function unlockFNFT(uint fnftId, address sender) external returns (bool); function getLockMaturity(uint fnftId) external view returns (bool); }
// SPDX-License-Identifier: GNU-GPL v3.0 or later pragma solidity >=0.8.0; import "./IRevest.sol"; interface ITokenVault { function createFNFT( uint fnftId, IRevest.FNFTConfig memory fnftConfig, uint quantity, address from ) external; function withdrawToken( uint fnftId, uint quantity, address user ) external; function depositToken( uint fnftId, uint amount, uint quantity ) external; function cloneFNFTConfig(IRevest.FNFTConfig memory old) external returns (IRevest.FNFTConfig memory); function mapFNFTToToken( uint fnftId, IRevest.FNFTConfig memory fnftConfig ) external; function handleMultipleDeposits( uint fnftId, uint newFNFTId, uint amount ) external; function splitFNFT( uint fnftId, uint[] memory newFNFTIds, uint[] memory proportions, uint quantity ) external; function getFNFT(uint fnftId) external view returns (IRevest.FNFTConfig memory); function getFNFTCurrentValue(uint fnftId) external view returns (uint); function getNontransferable(uint fnftId) external view returns (bool); function getSplitsRemaining(uint fnftId) external view returns (uint); }
// SPDX-License-Identifier: GNU-GPL v3.0 or later pragma solidity >=0.8.0; import "./IRegistryProvider.sol"; import '@openzeppelin/contracts/utils/introspection/IERC165.sol'; /** * @title Provider interface for Revest FNFTs * @dev Address locks MUST be non-upgradeable to be considered for trusted status * @author Revest */ interface IAddressLock is IRegistryProvider, IERC165{ /// Creates a lock to the specified lockID /// @param fnftId the fnftId to map this lock to. Not recommended for typical locks, as it will break on splitting /// @param lockId the lockId to map this lock to. Recommended uint for storing references to lock configurations /// @param arguments an abi.encode() bytes array. Allows frontend to encode and pass in an arbitrary set of parameters /// @dev creates a lock for the specified lockId. Will be called during the creation process for address locks when the address /// of a contract implementing this interface is passed in as the "trigger" address for minting an address lock. The bytes /// representing any parameters this lock requires are passed through to this method, where abi.decode must be call on them function createLock(uint fnftId, uint lockId, bytes memory arguments) external; /// Updates a lock at the specified lockId /// @param fnftId the fnftId that can map to a lock config stored in implementing contracts. Not recommended, as it will break on splitting /// @param lockId the lockId that maps to the lock config which should be updated. Recommended for retrieving references to lock configurations /// @param arguments an abi.encode() bytes array. Allows frontend to encode and pass in an arbitrary set of parameters /// @dev updates a lock for the specified lockId. Will be called by the frontend from the information section if an update is requested /// can further accept and decode parameters to use in modifying the lock's config or triggering other actions /// such as triggering an on-chain oracle to update function updateLock(uint fnftId, uint lockId, bytes memory arguments) external; /// Whether or not the lock can be unlocked /// @param fnftId the fnftId that can map to a lock config stored in implementing contracts. Not recommended, as it will break on splitting /// @param lockId the lockId that maps to the lock config which should be updated. Recommended for retrieving references to lock configurations /// @dev this method is called during the unlocking and withdrawal processes by the Revest contract - it is also used by the frontend /// if this method is returning true and someone attempts to unlock or withdraw from an FNFT attached to the requested lock, the request will succeed /// @return whether or not this lock may be unlocked function isUnlockable(uint fnftId, uint lockId) external view returns (bool); /// Provides an encoded bytes arary that represents values this lock wants to display on the info screen /// Info to decode these values is provided in the metadata file /// @param fnftId the fnftId that can map to a lock config stored in implementing contracts. Not recommended, as it will break on splitting /// @param lockId the lockId that maps to the lock config which should be updated. Recommended for retrieving references to lock configurations /// @dev used by the frontend to fetch on-chain data on the state of any given lock /// @return a bytes array that represents the result of calling abi.encode on values which the developer wants to appear on the frontend function getDisplayValues(uint fnftId, uint lockId) external view returns (bytes memory); /// Maps to a URL, typically IPFS-based, that contains information on how to encode and decode paramters sent to and from this lock /// Please see additional documentation for JSON config info /// @dev this method will be called by the frontend only but is crucial to properly implement for proper minting and information workflows /// @return a URL to the JSON file containing this lock's metadata schema function getMetadata() external view returns (string memory); /// Whether or not this lock will need updates and should display the option for them /// @dev this will be called by the frontend to determine if update inputs and buttons should be displayed /// @return whether or not the locks created by this contract will need updates function needsUpdate() external view returns (bool); }
// SPDX-License-Identifier: GNU-GPL v3.0 or later pragma solidity ^0.8.0; import "@openzeppelin/contracts/access/Ownable.sol"; import "../interfaces/IAddressRegistryV2.sol"; import "../interfaces/ILockManager.sol"; import "../interfaces/IRewardsHandler.sol"; import "../interfaces/ITokenVault.sol"; import "../interfaces/IRevestToken.sol"; import "../interfaces/IFNFTHandler.sol"; import "../lib/uniswap/IUniswapV2Factory.sol"; contract RevestAccessControl is Ownable { IAddressRegistryV2 internal addressesProvider; constructor(address provider) Ownable() { addressesProvider = IAddressRegistryV2(provider); } modifier onlyRevest() { require(_msgSender() != address(0), "E004"); require( _msgSender() == addressesProvider.getLockManager() || _msgSender() == addressesProvider.getRewardsHandler() || _msgSender() == addressesProvider.getTokenVault() || _msgSender() == addressesProvider.getRevest() || _msgSender() == addressesProvider.getRevestToken(), "E016" ); _; } modifier onlyRevestController() { require(_msgSender() != address(0), "E004"); require(_msgSender() == addressesProvider.getRevest(), "E017"); _; } modifier onlyTokenVault() { require(_msgSender() != address(0), "E004"); require(_msgSender() == addressesProvider.getTokenVault(), "E017"); _; } function setAddressRegistry(address registry) external onlyOwner { addressesProvider = IAddressRegistryV2(registry); } function getAdmin() internal view returns (address) { return addressesProvider.getAdmin(); } function getRevest() internal view returns (IRevest) { return IRevest(addressesProvider.getRevest()); } function getRevestToken() internal view returns (IRevestToken) { return IRevestToken(addressesProvider.getRevestToken()); } function getLockManager() internal view returns (ILockManager) { return ILockManager(addressesProvider.getLockManager()); } function getTokenVault() internal view returns (ITokenVault) { return ITokenVault(addressesProvider.getTokenVault()); } function getUniswapV2() internal view returns (IUniswapV2Factory) { return IUniswapV2Factory(addressesProvider.getDEX(0)); } function getFNFTHandler() internal view returns (IFNFTHandler) { return IFNFTHandler(addressesProvider.getRevestFNFT()); } function getRewardsHandler() internal view returns (IRewardsHandler) { return IRewardsHandler(addressesProvider.getRewardsHandler()); } }
// SPDX-License-Identifier: GNU-GPL v3.0 or later pragma solidity >=0.8.0; interface IFNFTHandler { function mint(address account, uint id, uint amount, bytes memory data) external; function mintBatchRec(address[] memory recipients, uint[] memory quantities, uint id, uint newSupply, bytes memory data) external; function mintBatch(address to, uint[] memory ids, uint[] memory amounts, bytes memory data) external; function setURI(string memory newuri) external; function burn(address account, uint id, uint amount) external; function burnBatch(address account, uint[] memory ids, uint[] memory amounts) external; function getBalance(address tokenHolder, uint id) external view returns (uint); function getSupply(uint fnftId) external view returns (uint); function getNextId() external view returns (uint); }
// SPDX-License-Identifier: GNU-GPL v3.0 or later pragma solidity ^0.8.0; interface IMetadataHandler { function getTokenURI(uint fnftId) external view returns (string memory ); function setTokenURI(uint fnftId, string memory _uri) external; function getRenderTokenURI( uint tokenId, address owner ) external view returns ( string memory baseRenderURI, string[] memory parameters ); function setRenderTokenURI( uint tokenID, string memory baseRenderURI ) external; }
// SPDX-License-Identifier: GNU-GPL v3.0 or later pragma solidity >=0.8.0; import "./IOutputReceiverV3.sol"; /** * @title Provider interface for Revest FNFTs */ interface IOutputReceiverV4 is IOutputReceiverV3 { event TransferERC20OutputReceiver(address indexed transferTo, address indexed transferFrom, address indexed token, uint amountTokens, uint fnftId, bytes extraData); event TransferERC721OutputReceiver(address indexed transferTo, address indexed transferFrom, address indexed token, uint[] tokenIds, uint fnftId, bytes extraData); event TransferERC1155OutputReceiver(address indexed transferTo, address indexed transferFrom, address indexed token, uint tokenId, uint amountTokens, uint fnftId, bytes extraData); function onTransferFNFT( uint fnftId, address operator, address from, address to, uint quantity, bytes memory data ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol) pragma solidity ^0.8.0; /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControl { /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. * * _Available since v3.1._ */ event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {AccessControl-_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) external view returns (bool); /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {AccessControl-_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) external view returns (bytes32); /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) external; /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) external; /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC1155/IERC1155.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC1155 compliant contract, as defined in the * https://eips.ethereum.org/EIPS/eip-1155[EIP]. * * _Available since v3.1._ */ interface IERC1155 is IERC165 { /** * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`. */ event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value); /** * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all * transfers. */ event TransferBatch( address indexed operator, address indexed from, address indexed to, uint256[] ids, uint256[] values ); /** * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to * `approved`. */ event ApprovalForAll(address indexed account, address indexed operator, bool approved); /** * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI. * * If an {URI} event was emitted for `id`, the standard * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value * returned by {IERC1155MetadataURI-uri}. */ event URI(string value, uint256 indexed id); /** * @dev Returns the amount of tokens of token type `id` owned by `account`. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) external view returns (uint256); /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids) external view returns (uint256[] memory); /** * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`, * * Emits an {ApprovalForAll} event. * * Requirements: * * - `operator` cannot be the caller. */ function setApprovalForAll(address operator, bool approved) external; /** * @dev Returns true if `operator` is approved to transfer ``account``'s tokens. * * See {setApprovalForAll}. */ function isApprovedForAll(address account, address operator) external view returns (bool); /** * @dev Transfers `amount` tokens of token type `id` from `from` to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - If the caller is not `from`, it must be have been approved to spend ``from``'s tokens via {setApprovalForAll}. * - `from` must have a balance of tokens of type `id` of at least `amount`. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes calldata data ) external; /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}. * * Emits a {TransferBatch} event. * * Requirements: * * - `ids` and `amounts` must have the same length. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function safeBatchTransferFrom( address from, address to, uint256[] calldata ids, uint256[] calldata amounts, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/IERC1155Receiver.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev _Available since v3.1._ */ interface IERC1155Receiver is IERC165 { /** * @dev Handles the receipt of a single ERC1155 token type. This function is * called at the end of a `safeTransferFrom` after the balance has been updated. * * NOTE: To accept the transfer, this must return * `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` * (i.e. 0xf23a6e61, or its own function selector). * * @param operator The address which initiated the transfer (i.e. msg.sender) * @param from The address which previously owned the token * @param id The ID of the token being transferred * @param value The amount of tokens being transferred * @param data Additional data with no specified format * @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed */ function onERC1155Received( address operator, address from, uint256 id, uint256 value, bytes calldata data ) external returns (bytes4); /** * @dev Handles the receipt of a multiple ERC1155 token types. This function * is called at the end of a `safeBatchTransferFrom` after the balances have * been updated. * * NOTE: To accept the transfer(s), this must return * `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` * (i.e. 0xbc197c81, or its own function selector). * * @param operator The address which initiated the batch transfer (i.e. msg.sender) * @param from The address which previously owned the token * @param ids An array containing ids of each token being transferred (order and length must match values array) * @param values An array containing amounts of each token being transferred (order and length must match ids array) * @param data Additional data with no specified format * @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed */ function onERC1155BatchReceived( address operator, address from, uint256[] calldata ids, uint256[] calldata values, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol) pragma solidity ^0.8.0; import "../IERC1155.sol"; /** * @dev Interface of the optional ERC1155MetadataExtension interface, as defined * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP]. * * _Available since v3.1._ */ interface IERC1155MetadataURI is IERC1155 { /** * @dev Returns the URI for token type `id`. * * If the `\{id\}` substring is present in the URI, it must be replaced by * clients with the actual token type ID. */ function uri(uint256 id) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.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 functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: GNU-GPL v3.0 or later pragma solidity ^0.8.0; import "../interfaces/IAddressRegistry.sol"; import "../interfaces/ITokenVault.sol"; import "../interfaces/ILockManager.sol"; interface IRegistryProvider { function setAddressRegistry(address revest) external; function getAddressRegistry() external view returns (address); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: GNU-GPL v3.0 or later pragma solidity >=0.8.0; import "./IAddressRegistry.sol"; /** * @title Provider interface for Revest FNFTs * @dev * */ interface IAddressRegistryV2 is IAddressRegistry { function initialize_with_legacy( address lock_manager_, address liquidity_, address revest_token_, address token_vault_, address legacy_vault_, address revest_, address fnft_, address metadata_, address admin_, address rewards_ ) external; function getLegacyTokenVault() external view returns (address legacy); function setLegacyTokenVault(address legacyVault) external; function breakGlass() external; function pauseToken() external; function unpauseToken() external; function modifyPauser(address pauser, bool grant) external; function modifyBreaker(address breaker, bool grant) external; }
// SPDX-License-Identifier: GNU-GPL v3.0 or later pragma solidity >=0.8.0; interface IRewardsHandler { struct UserBalance { uint allocPoint; // Allocation points uint lastMul; } function receiveFee(address token, uint amount) external; function updateLPShares(uint fnftId, uint newShares) external; function updateBasicShares(uint fnftId, uint newShares) external; function getAllocPoint(uint fnftId, address token, bool isBasic) external view returns (uint); function claimRewards(uint fnftId, address caller) external returns (uint); function setStakingContract(address stake) external; function getRewards(uint fnftId, address token) external view returns (uint); }
// SPDX-License-Identifier: GNU-GPL v3.0 or later pragma solidity >=0.8.0; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; interface IRevestToken is IERC20 { }
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.0; interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); }
// SPDX-License-Identifier: GNU-GPL v3.0 or later pragma solidity >=0.8.0; import "./IOutputReceiverV2.sol"; /** * @title Provider interface for Revest FNFTs */ interface IOutputReceiverV3 is IOutputReceiverV2 { event DepositERC20OutputReceiver(address indexed mintTo, address indexed token, uint amountTokens, uint indexed fnftId, bytes extraData); event DepositERC721OutputReceiver(address indexed mintTo, address indexed token, uint[] tokenIds, uint indexed fnftId, bytes extraData); event DepositERC1155OutputReceiver(address indexed mintTo, address indexed token, uint tokenId, uint amountTokens, uint indexed fnftId, bytes extraData); event WithdrawERC20OutputReceiver(address indexed caller, address indexed token, uint amountTokens, uint indexed fnftId, bytes extraData); event WithdrawERC721OutputReceiver(address indexed caller, address indexed token, uint[] tokenIds, uint indexed fnftId, bytes extraData); event WithdrawERC1155OutputReceiver(address indexed caller, address indexed token, uint tokenId, uint amountTokens, uint indexed fnftId, bytes extraData); function handleTimelockExtensions(uint fnftId, uint expiration, address caller) external; function handleAdditionalDeposit(uint fnftId, uint amountToDeposit, uint quantity, address caller) external; function handleSplitOperation(uint fnftId, uint[] memory proportions, uint quantity, address caller) external; }
// SPDX-License-Identifier: GNU-GPL v3.0 or later pragma solidity >=0.8.0; import "./IOutputReceiver.sol"; import "./IRevest.sol"; import '@openzeppelin/contracts/utils/introspection/IERC165.sol'; /** * @title Provider interface for Revest FNFTs */ interface IOutputReceiverV2 is IOutputReceiver { // Future proofing for secondary callbacks during withdrawal // Could just use triggerOutputReceiverUpdate and call withdrawal function // But deliberately using reentry is poor form and reminds me too much of OAuth 2.0 function receiveSecondaryCallback( uint fnftId, address payable owner, uint quantity, IRevest.FNFTConfig memory config, bytes memory args ) external payable; // Allows for similar function to address lock, updating state while still locked // Called by the user directly function triggerOutputReceiverUpdate( uint fnftId, bytes memory args ) external; // This function should only ever be called when a split or additional deposit has occurred function handleFNFTRemaps(uint fnftId, uint[] memory newFNFTIds, address caller, bool cleanup) external; }
// SPDX-License-Identifier: GNU-GPL v3.0 or later pragma solidity >=0.8.0; import "./IRegistryProvider.sol"; import '@openzeppelin/contracts/utils/introspection/IERC165.sol'; /** * @title Provider interface for Revest FNFTs */ interface IOutputReceiver is IRegistryProvider, IERC165 { function receiveRevestOutput( uint fnftId, address asset, address payable owner, uint quantity ) external; function getCustomMetadata(uint fnftId) external view returns (string memory); function getValue(uint fnftId) external view returns (uint); function getAsset(uint fnftId) external view returns (address); function getOutputDisplayValues(uint fnftId) external view returns (bytes memory); }
{ "metadata": { "bytecodeHash": "none", "useLiteralContent": true }, "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
[{"inputs":[{"internalType":"address","name":"provider","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OUTPUT_RECEIVER_INTERFACE_V4_ID","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAUSER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"burnBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"fnftsCreated","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"getBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getNextId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"fnftId","type":"uint256"}],"name":"getSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"mintBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"recipients","type":"address[]"},{"internalType":"uint256[]","name":"quantities","type":"uint256[]"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"newSupply","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"mintBatchRec","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"owner","type":"address"}],"name":"renderTokenURI","outputs":[{"internalType":"string","name":"baseRenderURI","type":"string"},{"internalType":"string[]","name":"parameters","type":"string[]"}],"stateMutability":"view","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":[{"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":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"registry","type":"address"}],"name":"setAddressRegistry","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":"newuri","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"fnftId","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
608060405260006007553480156200001657600080fd5b506040516200444838038062004448833981016040819052620000399162000286565b60408051602081019091526000815281906200005581620000c8565b506200006133620000e1565b600580546001600160a01b0319166001600160a01b03929092169190911790556200009560006200008f3390565b62000133565b620000c17f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a3362000133565b50620002f5565b8051620000dd906002906020840190620001e0565b5050565b600480546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60008281526003602090815260408083206001600160a01b0385168452909152902054620000dd908390839060ff16620000dd5760008281526003602090815260408083206001600160a01b03851684529091529020805460ff191660011790556200019c3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b828054620001ee90620002b8565b90600052602060002090601f0160209004810192826200021257600085556200025d565b82601f106200022d57805160ff19168380011785556200025d565b828001600101855582156200025d579182015b828111156200025d57825182559160200191906001019062000240565b506200026b9291506200026f565b5090565b5b808211156200026b576000815560010162000270565b6000602082840312156200029957600080fd5b81516001600160a01b0381168114620002b157600080fd5b9392505050565b600181811c90821680620002cd57607f821691505b60208210811415620002ef57634e487b7160e01b600052602260045260246000fd5b50919050565b61414380620003056000396000f3fe608060405234801561001057600080fd5b50600436106101ef5760003560e01c8063731133e91161010f578063bc968326116100a2578063f242432a11610071578063f242432a146104f7578063f2fde38b1461050a578063f5298aca1461051d578063f77ee79d1461053057600080fd5b8063bc96832614610479578063d547741f14610481578063e63ab1e914610494578063e985e9c5146104bb57600080fd5b80639a46cd5d116100de5780639a46cd5d146103f3578063a217fddf14610406578063a22cb4651461040e578063b271227c1461042157600080fd5b8063731133e91461036b578063818ae9471461037e5780638da5cb5b1461039f57806391d14854146103ba57600080fd5b80632eb2c2d6116101875780634e1273f4116101565780634e1273f4146103275780634e2297ec146103475780636b20c45414610350578063715018a61461036357600080fd5b80632eb2c2d6146102ce5780632f2ff15d146102e157806335403023146102f457806336568abe1461031457600080fd5b80631f7fdffa116101c35780631f7fdffa14610272578063248a9ca31461028557806327c7812c146102a85780632b04e840146102bb57600080fd5b8062fdd58e146101f457806301ffc9a71461021a57806302fe53051461023d5780630e89341c14610252575b600080fd5b6102076102023660046131f1565b610550565b6040519081526020015b60405180910390f35b61022d61022836600461324b565b6105fc565b6040519015158152602001610211565b61025061024b36600461335c565b610607565b005b6102656102603660046133ad565b61074a565b604051610211919061341e565b6102506102803660046134e6565b610861565b6102076102933660046133ad565b60009081526003602052604090206001015490565b6102506102b6366004613581565b61099e565b6102076102c93660046131f1565b610a32565b6102506102dc36600461359e565b610a45565b6102506102ef36600461364c565b610ae7565b6102076103023660046133ad565b60066020526000908152604090205481565b61025061032236600461364c565b610b12565b61033a61033536600461367c565b610b9e565b6040516102119190613784565b61020760075481565b61025061035e366004613797565b610cdc565b610250610e1e565b61025061037936600461380d565b610e84565b61039161038c36600461364c565b611005565b604051610211929190613864565b6004546040516001600160a01b039091168152602001610211565b61022d6103c836600461364c565b60009182526003602090815260408084206001600160a01b0393909316845291905290205460ff1690565b61025061040136600461391b565b611139565b610207600081565b61025061041c3660046139d0565b61131f565b6104487f9874a2210000000000000000000000000000000000000000000000000000000081565b6040517fffffffff000000000000000000000000000000000000000000000000000000009091168152602001610211565b600754610207565b61025061048f36600461364c565b61132a565b6102077f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b61022d6104c93660046139fe565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b610250610505366004613a2c565b611350565b610250610518366004613581565b6113eb565b61025061052b366004613a95565b6114ca565b61020761053e3660046133ad565b60009081526006602052604090205490565b60006001600160a01b0383166105d35760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201527f65726f206164647265737300000000000000000000000000000000000000000060648201526084015b60405180910390fd5b506000818152602081815260408083206001600160a01b03861684529091529020545b92915050565b60006105f682611630565b336106565760405162461bcd60e51b81526004016105ca9060208082526004908201527f4530303400000000000000000000000000000000000000000000000000000000604082015260600190565b600560009054906101000a90046001600160a01b03166001600160a01b031663f97e7d746040518163ffffffff1660e01b815260040160206040518083038186803b1580156106a457600080fd5b505afa1580156106b8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106dc9190613ada565b6001600160a01b0316336001600160a01b03161461073e5760405162461bcd60e51b81526004016105ca9060208082526004908201527f4530313700000000000000000000000000000000000000000000000000000000604082015260600190565b61074781611686565b50565b600554604080517f025e3c6100000000000000000000000000000000000000000000000000000000815290516060926001600160a01b03169163025e3c61916004808301926020929190829003018186803b1580156107a857600080fd5b505afa1580156107bc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107e09190613ada565b6001600160a01b0316633bb3a24d836040518263ffffffff1660e01b815260040161080d91815260200190565b60006040518083038186803b15801561082557600080fd5b505afa158015610839573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526105f69190810190613b4f565b336108b05760405162461bcd60e51b81526004016105ca9060208082526004908201527f4530303400000000000000000000000000000000000000000000000000000000604082015260600190565b600560009054906101000a90046001600160a01b03166001600160a01b031663f97e7d746040518163ffffffff1660e01b815260040160206040518083038186803b1580156108fe57600080fd5b505afa158015610912573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109369190613ada565b6001600160a01b0316336001600160a01b0316146109985760405162461bcd60e51b81526004016105ca9060208082526004908201527f4530313700000000000000000000000000000000000000000000000000000000604082015260600190565b50505050565b6004546001600160a01b031633146109f85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105ca565b600580547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b6000610a3e8383610550565b9392505050565b6001600160a01b038516331480610a615750610a6185336104c9565b610ad35760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f742060448201527f6f776e6572206e6f7220617070726f766564000000000000000000000000000060648201526084016105ca565b610ae08585858585611699565b5050505050565b600082815260036020526040902060010154610b038133611945565b610b0d83836119c5565b505050565b6001600160a01b0381163314610b905760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201527f20726f6c657320666f722073656c66000000000000000000000000000000000060648201526084016105ca565b610b9a8282611a85565b5050565b60608151835114610c175760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e67746860448201527f206d69736d61746368000000000000000000000000000000000000000000000060648201526084016105ca565b6000835167ffffffffffffffff811115610c3357610c33613268565b604051908082528060200260200182016040528015610c5c578160200160208202803683370190505b50905060005b8451811015610cd457610ca7858281518110610c8057610c80613b84565b6020026020010151858381518110610c9a57610c9a613b84565b6020026020010151610550565b828281518110610cb957610cb9613b84565b6020908102919091010152610ccd81613be2565b9050610c62565b509392505050565b33610d2b5760405162461bcd60e51b81526004016105ca9060208082526004908201527f4530303400000000000000000000000000000000000000000000000000000000604082015260600190565b600560009054906101000a90046001600160a01b03166001600160a01b031663f97e7d746040518163ffffffff1660e01b815260040160206040518083038186803b158015610d7957600080fd5b505afa158015610d8d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610db19190613ada565b6001600160a01b0316336001600160a01b031614610e135760405162461bcd60e51b81526004016105ca9060208082526004908201527f4530313700000000000000000000000000000000000000000000000000000000604082015260600190565b610b0d838383611b26565b6004546001600160a01b03163314610e785760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105ca565b610e826000611db5565b565b33610ed35760405162461bcd60e51b81526004016105ca9060208082526004908201527f4530303400000000000000000000000000000000000000000000000000000000604082015260600190565b600560009054906101000a90046001600160a01b03166001600160a01b031663f97e7d746040518163ffffffff1660e01b815260040160206040518083038186803b158015610f2157600080fd5b505afa158015610f35573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f599190613ada565b6001600160a01b0316336001600160a01b031614610fbb5760405162461bcd60e51b81526004016105ca9060208082526004908201527f4530313700000000000000000000000000000000000000000000000000000000604082015260600190565b60008381526006602052604081208054849290610fd9908490613c1b565b92505081905550600160076000828254610ff39190613c1b565b90915550610998905084848484611e1f565b606080600560009054906101000a90046001600160a01b03166001600160a01b031663025e3c616040518163ffffffff1660e01b815260040160206040518083038186803b15801561105657600080fd5b505afa15801561106a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061108e9190613ada565b6040517f827bffb5000000000000000000000000000000000000000000000000000000008152600481018690526001600160a01b038581166024830152919091169063827bffb59060440160006040518083038186803b1580156110f157600080fd5b505afa158015611105573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261112d9190810190613c33565b915091505b9250929050565b336111885760405162461bcd60e51b81526004016105ca9060208082526004908201527f4530303400000000000000000000000000000000000000000000000000000000604082015260600190565b600560009054906101000a90046001600160a01b03166001600160a01b031663f97e7d746040518163ffffffff1660e01b815260040160206040518083038186803b1580156111d657600080fd5b505afa1580156111ea573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061120e9190613ada565b6001600160a01b0316336001600160a01b0316146112705760405162461bcd60e51b81526004016105ca9060208082526004908201527f4530313700000000000000000000000000000000000000000000000000000000604082015260600190565b6000838152600660205260408120805484929061128e908490613c1b565b925050819055506001600760008282546112a89190613c1b565b90915550600090505b84811015611315576113038888838181106112ce576112ce613b84565b90506020020160208101906112e39190613581565b858888858181106112f6576112f6613b84565b9050602002013585611e1f565b8061130d81613be2565b9150506112b1565b5050505050505050565b610b9a338383611f4b565b6000828152600360205260409020600101546113468133611945565b610b0d8383611a85565b6001600160a01b03851633148061136c575061136c85336104c9565b6113de5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201527f20617070726f766564000000000000000000000000000000000000000000000060648201526084016105ca565b610ae0858585858561205e565b6004546001600160a01b031633146114455760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105ca565b6001600160a01b0381166114c15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016105ca565b61074781611db5565b336115195760405162461bcd60e51b81526004016105ca9060208082526004908201527f4530303400000000000000000000000000000000000000000000000000000000604082015260600190565b600560009054906101000a90046001600160a01b03166001600160a01b031663f97e7d746040518163ffffffff1660e01b815260040160206040518083038186803b15801561156757600080fd5b505afa15801561157b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061159f9190613ada565b6001600160a01b0316336001600160a01b0316146116015760405162461bcd60e51b81526004016105ca9060208082526004908201527f4530313700000000000000000000000000000000000000000000000000000000604082015260600190565b6000828152600660205260408120805483929061161f908490613d13565b90915550610b0d9050838383612227565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f7965db0b0000000000000000000000000000000000000000000000000000000014806105f657506105f6826123d3565b8051610b9a906002906020840190613143565b81518351146117105760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060448201527f6d69736d6174636800000000000000000000000000000000000000000000000060648201526084016105ca565b6001600160a01b03841661178c5760405162461bcd60e51b815260206004820152602560248201527f455243313135353a207472616e7366657220746f20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016105ca565b3361179b8187878787876124b6565b60005b84518110156118d75760008582815181106117bb576117bb613b84565b6020026020010151905060008583815181106117d9576117d9613b84565b602090810291909101810151600084815280835260408082206001600160a01b038e16835290935291909120549091508181101561187f5760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60448201527f72207472616e736665720000000000000000000000000000000000000000000060648201526084016105ca565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b168252812080548492906118bc908490613c1b565b92505081905550505050806118d090613be2565b905061179e565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611927929190613d2a565b60405180910390a461193d8187878787876129a2565b505050505050565b60008281526003602090815260408083206001600160a01b038516845290915290205460ff16610b9a57611983816001600160a01b03166014612bb6565b61198e836020612bb6565b60405160200161199f929190613d4f565b60408051601f198184030181529082905262461bcd60e51b82526105ca9160040161341e565b60008281526003602090815260408083206001600160a01b038516845290915290205460ff16610b9a5760008281526003602090815260408083206001600160a01b0385168452909152902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055611a413390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b60008281526003602090815260408083206001600160a01b038516845290915290205460ff1615610b9a5760008281526003602090815260408083206001600160a01b038516808552925280832080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6001600160a01b038316611ba25760405162461bcd60e51b815260206004820152602360248201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016105ca565b8051825114611c195760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060448201527f6d69736d6174636800000000000000000000000000000000000000000000000060648201526084016105ca565b6000339050611c3c818560008686604051806020016040528060008152506124b6565b60005b8351811015611d56576000848281518110611c5c57611c5c613b84565b602002602001015190506000848381518110611c7a57611c7a613b84565b602090810291909101810151600084815280835260408082206001600160a01b038c168352909352919091205490915081811015611d1f5760405162461bcd60e51b8152602060048201526024808201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c60448201527f616e63650000000000000000000000000000000000000000000000000000000060648201526084016105ca565b6000928352602083815260408085206001600160a01b038b1686529091529092209103905580611d4e81613be2565b915050611c3f565b5060006001600160a01b0316846001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051611da7929190613d2a565b60405180910390a450505050565b600480546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038416611e9b5760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f2061646472657360448201527f730000000000000000000000000000000000000000000000000000000000000060648201526084016105ca565b33611ebb81600087611eac88612ddf565b611eb588612ddf565b876124b6565b6000848152602081815260408083206001600160a01b038916845290915281208054859290611eeb908490613c1b565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4610ae081600087878787612e2a565b816001600160a01b0316836001600160a01b03161415611fd35760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c2073746174757360448201527f20666f722073656c66000000000000000000000000000000000000000000000060648201526084016105ca565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b0384166120da5760405162461bcd60e51b815260206004820152602560248201527f455243313135353a207472616e7366657220746f20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016105ca565b336120ea818787611eac88612ddf565b6000848152602081815260408083206001600160a01b038a168452909152902054838110156121815760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60448201527f72207472616e736665720000000000000000000000000000000000000000000060648201526084016105ca565b6000858152602081815260408083206001600160a01b038b81168552925280832087850390559088168252812080548692906121be908490613c1b565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a461221e828888888888612e2a565b50505050505050565b6001600160a01b0383166122a35760405162461bcd60e51b815260206004820152602360248201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016105ca565b336122d2818560006122b487612ddf565b6122bd87612ddf565b604051806020016040528060008152506124b6565b6000838152602081815260408083206001600160a01b0388168452909152902054828110156123685760405162461bcd60e51b8152602060048201526024808201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c60448201527f616e63650000000000000000000000000000000000000000000000000000000060648201526084016105ca565b6000848152602081815260408083206001600160a01b03898116808652918452828520888703905582518981529384018890529092908616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a45050505050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167fd9b67a2600000000000000000000000000000000000000000000000000000000148061246657507fffffffff0000000000000000000000000000000000000000000000000000000082167f0e89341c00000000000000000000000000000000000000000000000000000000145b806105f657507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316146105f6565b6001600160a01b0385161561193d57600554604080517f54f2f7af00000000000000000000000000000000000000000000000000000000815290516000926001600160a01b0316916354f2f7af916004808301926020929190829003018186803b15801561252357600080fd5b505afa158015612537573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061255b9190613ada565b90506000816001600160a01b031663522f9b378660008151811061258157612581613b84565b60200260200101516040518263ffffffff1660e01b81526004016125a791815260200190565b6101206040518083038186803b1580156125c057600080fd5b505afa1580156125d4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125f89190613ddb565b60208101519091506001600160a01b03161580159061264a5750602081015161264a906001600160a01b03167f9874a22100000000000000000000000000000000000000000000000000000000612f94565b156126f05780602001516001600160a01b0316639874a2218660008151811061267557612675613b84565b60200260200101518a8a8a8960008151811061269357612693613b84565b6020026020010151896040518763ffffffff1660e01b81526004016126bd96959493929190613e75565b600060405180830381600087803b1580156126d757600080fd5b505af11580156126eb573d6000803e3d6000fd5b505050505b600081610100015115905060018651111561292e5760015b8180156127155750865181105b1561292c57600086828151811061272e5761272e613b84565b6020026020010151116127835760405162461bcd60e51b815260206004820152601e60248201527f547279696e6720746f207472616e73666572207a65726f20746f6b656e73000060448201526064016105ca565b836001600160a01b031663522f9b378883815181106127a4576127a4613b84565b60200260200101516040518263ffffffff1660e01b81526004016127ca91815260200190565b6101206040518083038186803b1580156127e357600080fd5b505afa1580156127f7573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061281b9190613ddb565b60208101519093506001600160a01b03161580159061286d5750602083015161286d906001600160a01b03167f9874a22100000000000000000000000000000000000000000000000000000000612f94565b156129115782602001516001600160a01b0316639874a22188838151811061289757612897613b84565b60200260200101518c8c8c8b87815181106128b4576128b4613b84565b60200260200101518b6040518763ffffffff1660e01b81526004016128de96959493929190613e75565b600060405180830381600087803b1580156128f857600080fd5b505af115801561290c573d6000803e3d6000fd5b505050505b610100830151159150612925600182613c1b565b9050612708565b505b6001600160a01b038716156129435780612946565b60015b9050806129975760405162461bcd60e51b81526004016105ca9060208082526004908201527f4530343600000000000000000000000000000000000000000000000000000000604082015260600190565b505050505050505050565b6001600160a01b0384163b1561193d576040517fbc197c810000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063bc197c81906129ff9089908990889088908890600401613ec1565b602060405180830381600087803b158015612a1957600080fd5b505af1925050508015612a49575060408051601f3d908101601f19168201909252612a4691810190613f13565b60015b612aff57612a55613f30565b806308c379a01415612a8f5750612a6a613f4c565b80612a755750612a91565b8060405162461bcd60e51b81526004016105ca919061341e565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e204552433131353560448201527f526563656976657220696d706c656d656e74657200000000000000000000000060648201526084016105ca565b7fffffffff0000000000000000000000000000000000000000000000000000000081167fbc197c81000000000000000000000000000000000000000000000000000000001461221e5760405162461bcd60e51b815260206004820152602860248201527f455243313135353a204552433131353552656365697665722072656a6563746560448201527f6420746f6b656e7300000000000000000000000000000000000000000000000060648201526084016105ca565b60606000612bc5836002613ff4565b612bd0906002613c1b565b67ffffffffffffffff811115612be857612be8613268565b6040519080825280601f01601f191660200182016040528015612c12576020820181803683370190505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110612c4957612c49613b84565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110612cac57612cac613b84565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506000612ce8846002613ff4565b612cf3906001613c1b565b90505b6001811115612d90577f303132333435363738396162636465660000000000000000000000000000000085600f1660108110612d3457612d34613b84565b1a60f81b828281518110612d4a57612d4a613b84565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060049490941c93612d8981614031565b9050612cf6565b508315610a3e5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e7460448201526064016105ca565b60408051600180825281830190925260609160009190602080830190803683370190505090508281600081518110612e1957612e19613b84565b602090810291909101015292915050565b6001600160a01b0384163b1561193d576040517ff23a6e610000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063f23a6e6190612e879089908990889088908890600401614066565b602060405180830381600087803b158015612ea157600080fd5b505af1925050508015612ed1575060408051601f3d908101601f19168201909252612ece91810190613f13565b60015b612edd57612a55613f30565b7fffffffff0000000000000000000000000000000000000000000000000000000081167ff23a6e61000000000000000000000000000000000000000000000000000000001461221e5760405162461bcd60e51b815260206004820152602860248201527f455243313135353a204552433131353552656365697665722072656a6563746560448201527f6420746f6b656e7300000000000000000000000000000000000000000000000060648201526084016105ca565b6000612f9f83612fb0565b8015610a3e5750610a3e8383613014565b6000612fdc827f01ffc9a700000000000000000000000000000000000000000000000000000000613014565b80156105f6575061300d827fffffffff00000000000000000000000000000000000000000000000000000000613014565b1592915050565b604080517fffffffff00000000000000000000000000000000000000000000000000000000831660248083019190915282518083039091018152604490910182526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167f01ffc9a700000000000000000000000000000000000000000000000000000000179052905160009190829081906001600160a01b03871690617530906130c19086906140a9565b6000604051808303818686fa925050503d80600081146130fd576040519150601f19603f3d011682016040523d82523d6000602084013e613102565b606091505b509150915060208151101561311d57600093505050506105f6565b81801561313957508080602001905181019061313991906140c5565b9695505050505050565b82805461314f906140e2565b90600052602060002090601f01602090048101928261317157600085556131b7565b82601f1061318a57805160ff19168380011785556131b7565b828001600101855582156131b7579182015b828111156131b757825182559160200191906001019061319c565b506131c39291506131c7565b5090565b5b808211156131c357600081556001016131c8565b6001600160a01b038116811461074757600080fd5b6000806040838503121561320457600080fd5b823561320f816131dc565b946020939093013593505050565b7fffffffff000000000000000000000000000000000000000000000000000000008116811461074757600080fd5b60006020828403121561325d57600080fd5b8135610a3e8161321d565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b601f19601f830116810181811067ffffffffffffffff821117156132bd576132bd613268565b6040525050565b604051610120810167ffffffffffffffff811182821017156132e8576132e8613268565b60405290565b600067ffffffffffffffff82111561330857613308613268565b50601f01601f191660200190565b6000613321836132ee565b60405161332e8282613297565b80925084815285858501111561334357600080fd5b8484602083013760006020868301015250509392505050565b60006020828403121561336e57600080fd5b813567ffffffffffffffff81111561338557600080fd5b8201601f8101841361339657600080fd5b6133a584823560208401613316565b949350505050565b6000602082840312156133bf57600080fd5b5035919050565b60005b838110156133e15781810151838201526020016133c9565b838111156109985750506000910152565b6000815180845261340a8160208601602086016133c6565b601f01601f19169290920160200192915050565b602081526000610a3e60208301846133f2565b600067ffffffffffffffff82111561344b5761344b613268565b5060051b60200190565b600082601f83011261346657600080fd5b8135602061347382613431565b6040516134808282613297565b83815260059390931b85018201928281019150868411156134a057600080fd5b8286015b848110156134bb57803583529183019183016134a4565b509695505050505050565b600082601f8301126134d757600080fd5b610a3e83833560208501613316565b600080600080608085870312156134fc57600080fd5b8435613507816131dc565b9350602085013567ffffffffffffffff8082111561352457600080fd5b61353088838901613455565b9450604087013591508082111561354657600080fd5b61355288838901613455565b9350606087013591508082111561356857600080fd5b50613575878288016134c6565b91505092959194509250565b60006020828403121561359357600080fd5b8135610a3e816131dc565b600080600080600060a086880312156135b657600080fd5b85356135c1816131dc565b945060208601356135d1816131dc565b9350604086013567ffffffffffffffff808211156135ee57600080fd5b6135fa89838a01613455565b9450606088013591508082111561361057600080fd5b61361c89838a01613455565b9350608088013591508082111561363257600080fd5b5061363f888289016134c6565b9150509295509295909350565b6000806040838503121561365f57600080fd5b823591506020830135613671816131dc565b809150509250929050565b6000806040838503121561368f57600080fd5b823567ffffffffffffffff808211156136a757600080fd5b818501915085601f8301126136bb57600080fd5b813560206136c882613431565b6040516136d58282613297565b83815260059390931b85018201928281019150898411156136f557600080fd5b948201945b8386101561371c57853561370d816131dc565b825294820194908201906136fa565b9650508601359250508082111561373257600080fd5b5061373f85828601613455565b9150509250929050565b600081518084526020808501945080840160005b838110156137795781518752958201959082019060010161375d565b509495945050505050565b602081526000610a3e6020830184613749565b6000806000606084860312156137ac57600080fd5b83356137b7816131dc565b9250602084013567ffffffffffffffff808211156137d457600080fd5b6137e087838801613455565b935060408601359150808211156137f657600080fd5b5061380386828701613455565b9150509250925092565b6000806000806080858703121561382357600080fd5b843561382e816131dc565b93506020850135925060408501359150606085013567ffffffffffffffff81111561385857600080fd5b613575878288016134c6565b60408152600061387760408301856133f2565b6020838203818501528185518084528284019150828160051b85010183880160005b838110156138c757601f198784030185526138b58383516133f2565b94860194925090850190600101613899565b50909998505050505050505050565b60008083601f8401126138e857600080fd5b50813567ffffffffffffffff81111561390057600080fd5b6020830191508360208260051b850101111561113257600080fd5b600080600080600080600060a0888a03121561393657600080fd5b873567ffffffffffffffff8082111561394e57600080fd5b61395a8b838c016138d6565b909950975060208a013591508082111561397357600080fd5b61397f8b838c016138d6565b909750955060408a0135945060608a0135935060808a01359150808211156139a657600080fd5b506139b38a828b016134c6565b91505092959891949750929550565b801515811461074757600080fd5b600080604083850312156139e357600080fd5b82356139ee816131dc565b91506020830135613671816139c2565b60008060408385031215613a1157600080fd5b8235613a1c816131dc565b91506020830135613671816131dc565b600080600080600060a08688031215613a4457600080fd5b8535613a4f816131dc565b94506020860135613a5f816131dc565b93506040860135925060608601359150608086013567ffffffffffffffff811115613a8957600080fd5b61363f888289016134c6565b600080600060608486031215613aaa57600080fd5b8335613ab5816131dc565b95602085013595506040909401359392505050565b8051613ad5816131dc565b919050565b600060208284031215613aec57600080fd5b8151610a3e816131dc565b600082601f830112613b0857600080fd5b8151613b13816132ee565b604051613b208282613297565b828152856020848701011115613b3557600080fd5b613b468360208301602088016133c6565b95945050505050565b600060208284031215613b6157600080fd5b815167ffffffffffffffff811115613b7857600080fd5b6133a584828501613af7565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613c1457613c14613bb3565b5060010190565b60008219821115613c2e57613c2e613bb3565b500190565b60008060408385031215613c4657600080fd5b825167ffffffffffffffff80821115613c5e57600080fd5b613c6a86838701613af7565b9350602091508185015181811115613c8157600080fd5b8501601f81018713613c9257600080fd5b8051613c9d81613431565b604051613caa8282613297565b82815260059290921b8301850191858101915089831115613cca57600080fd5b8584015b83811015613d0257805186811115613ce65760008081fd5b613cf48c8983890101613af7565b845250918601918601613cce565b508096505050505050509250929050565b600082821015613d2557613d25613bb3565b500390565b604081526000613d3d6040830185613749565b8281036020840152613b468185613749565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351613d878160178501602088016133c6565b7f206973206d697373696e6720726f6c65200000000000000000000000000000006017918401918201528351613dc48160288401602088016133c6565b01602801949350505050565b8051613ad5816139c2565b60006101208284031215613dee57600080fd5b613df66132c4565b613dff83613aca565b8152613e0d60208401613aca565b602082015260408301516040820152606083015160608201526080830151608082015260a083015160a0820152613e4660c08401613dd0565b60c0820152613e5760e08401613dd0565b60e0820152610100613e6a818501613dd0565b908201529392505050565b86815260006001600160a01b038088166020840152808716604084015280861660608401525083608083015260c060a0830152613eb560c08301846133f2565b98975050505050505050565b60006001600160a01b03808816835280871660208401525060a06040830152613eed60a0830186613749565b8281036060840152613eff8186613749565b90508281036080840152613eb581856133f2565b600060208284031215613f2557600080fd5b8151610a3e8161321d565b600060033d1115613f495760046000803e5060005160e01c5b90565b600060443d1015613f5a5790565b6040517ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc803d016004833e81513d67ffffffffffffffff8160248401118184111715613fa857505050505090565b8285019150815181811115613fc05750505050505090565b843d8701016020828501011115613fda5750505050505090565b613fe960208286010187613297565b509095945050505050565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561402c5761402c613bb3565b500290565b60008161404057614040613bb3565b507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0190565b60006001600160a01b03808816835280871660208401525084604083015283606083015260a0608083015261409e60a08301846133f2565b979650505050505050565b600082516140bb8184602087016133c6565b9190910192915050565b6000602082840312156140d757600080fd5b8151610a3e816139c2565b600181811c908216806140f657607f821691505b60208210811415614130577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b5091905056fea164736f6c6343000809000a000000000000000000000000d2c6eb7527ab1e188638b86f2c14bbad5a431d78
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101ef5760003560e01c8063731133e91161010f578063bc968326116100a2578063f242432a11610071578063f242432a146104f7578063f2fde38b1461050a578063f5298aca1461051d578063f77ee79d1461053057600080fd5b8063bc96832614610479578063d547741f14610481578063e63ab1e914610494578063e985e9c5146104bb57600080fd5b80639a46cd5d116100de5780639a46cd5d146103f3578063a217fddf14610406578063a22cb4651461040e578063b271227c1461042157600080fd5b8063731133e91461036b578063818ae9471461037e5780638da5cb5b1461039f57806391d14854146103ba57600080fd5b80632eb2c2d6116101875780634e1273f4116101565780634e1273f4146103275780634e2297ec146103475780636b20c45414610350578063715018a61461036357600080fd5b80632eb2c2d6146102ce5780632f2ff15d146102e157806335403023146102f457806336568abe1461031457600080fd5b80631f7fdffa116101c35780631f7fdffa14610272578063248a9ca31461028557806327c7812c146102a85780632b04e840146102bb57600080fd5b8062fdd58e146101f457806301ffc9a71461021a57806302fe53051461023d5780630e89341c14610252575b600080fd5b6102076102023660046131f1565b610550565b6040519081526020015b60405180910390f35b61022d61022836600461324b565b6105fc565b6040519015158152602001610211565b61025061024b36600461335c565b610607565b005b6102656102603660046133ad565b61074a565b604051610211919061341e565b6102506102803660046134e6565b610861565b6102076102933660046133ad565b60009081526003602052604090206001015490565b6102506102b6366004613581565b61099e565b6102076102c93660046131f1565b610a32565b6102506102dc36600461359e565b610a45565b6102506102ef36600461364c565b610ae7565b6102076103023660046133ad565b60066020526000908152604090205481565b61025061032236600461364c565b610b12565b61033a61033536600461367c565b610b9e565b6040516102119190613784565b61020760075481565b61025061035e366004613797565b610cdc565b610250610e1e565b61025061037936600461380d565b610e84565b61039161038c36600461364c565b611005565b604051610211929190613864565b6004546040516001600160a01b039091168152602001610211565b61022d6103c836600461364c565b60009182526003602090815260408084206001600160a01b0393909316845291905290205460ff1690565b61025061040136600461391b565b611139565b610207600081565b61025061041c3660046139d0565b61131f565b6104487f9874a2210000000000000000000000000000000000000000000000000000000081565b6040517fffffffff000000000000000000000000000000000000000000000000000000009091168152602001610211565b600754610207565b61025061048f36600461364c565b61132a565b6102077f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b61022d6104c93660046139fe565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b610250610505366004613a2c565b611350565b610250610518366004613581565b6113eb565b61025061052b366004613a95565b6114ca565b61020761053e3660046133ad565b60009081526006602052604090205490565b60006001600160a01b0383166105d35760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201527f65726f206164647265737300000000000000000000000000000000000000000060648201526084015b60405180910390fd5b506000818152602081815260408083206001600160a01b03861684529091529020545b92915050565b60006105f682611630565b336106565760405162461bcd60e51b81526004016105ca9060208082526004908201527f4530303400000000000000000000000000000000000000000000000000000000604082015260600190565b600560009054906101000a90046001600160a01b03166001600160a01b031663f97e7d746040518163ffffffff1660e01b815260040160206040518083038186803b1580156106a457600080fd5b505afa1580156106b8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106dc9190613ada565b6001600160a01b0316336001600160a01b03161461073e5760405162461bcd60e51b81526004016105ca9060208082526004908201527f4530313700000000000000000000000000000000000000000000000000000000604082015260600190565b61074781611686565b50565b600554604080517f025e3c6100000000000000000000000000000000000000000000000000000000815290516060926001600160a01b03169163025e3c61916004808301926020929190829003018186803b1580156107a857600080fd5b505afa1580156107bc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107e09190613ada565b6001600160a01b0316633bb3a24d836040518263ffffffff1660e01b815260040161080d91815260200190565b60006040518083038186803b15801561082557600080fd5b505afa158015610839573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526105f69190810190613b4f565b336108b05760405162461bcd60e51b81526004016105ca9060208082526004908201527f4530303400000000000000000000000000000000000000000000000000000000604082015260600190565b600560009054906101000a90046001600160a01b03166001600160a01b031663f97e7d746040518163ffffffff1660e01b815260040160206040518083038186803b1580156108fe57600080fd5b505afa158015610912573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109369190613ada565b6001600160a01b0316336001600160a01b0316146109985760405162461bcd60e51b81526004016105ca9060208082526004908201527f4530313700000000000000000000000000000000000000000000000000000000604082015260600190565b50505050565b6004546001600160a01b031633146109f85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105ca565b600580547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b6000610a3e8383610550565b9392505050565b6001600160a01b038516331480610a615750610a6185336104c9565b610ad35760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f742060448201527f6f776e6572206e6f7220617070726f766564000000000000000000000000000060648201526084016105ca565b610ae08585858585611699565b5050505050565b600082815260036020526040902060010154610b038133611945565b610b0d83836119c5565b505050565b6001600160a01b0381163314610b905760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201527f20726f6c657320666f722073656c66000000000000000000000000000000000060648201526084016105ca565b610b9a8282611a85565b5050565b60608151835114610c175760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e67746860448201527f206d69736d61746368000000000000000000000000000000000000000000000060648201526084016105ca565b6000835167ffffffffffffffff811115610c3357610c33613268565b604051908082528060200260200182016040528015610c5c578160200160208202803683370190505b50905060005b8451811015610cd457610ca7858281518110610c8057610c80613b84565b6020026020010151858381518110610c9a57610c9a613b84565b6020026020010151610550565b828281518110610cb957610cb9613b84565b6020908102919091010152610ccd81613be2565b9050610c62565b509392505050565b33610d2b5760405162461bcd60e51b81526004016105ca9060208082526004908201527f4530303400000000000000000000000000000000000000000000000000000000604082015260600190565b600560009054906101000a90046001600160a01b03166001600160a01b031663f97e7d746040518163ffffffff1660e01b815260040160206040518083038186803b158015610d7957600080fd5b505afa158015610d8d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610db19190613ada565b6001600160a01b0316336001600160a01b031614610e135760405162461bcd60e51b81526004016105ca9060208082526004908201527f4530313700000000000000000000000000000000000000000000000000000000604082015260600190565b610b0d838383611b26565b6004546001600160a01b03163314610e785760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105ca565b610e826000611db5565b565b33610ed35760405162461bcd60e51b81526004016105ca9060208082526004908201527f4530303400000000000000000000000000000000000000000000000000000000604082015260600190565b600560009054906101000a90046001600160a01b03166001600160a01b031663f97e7d746040518163ffffffff1660e01b815260040160206040518083038186803b158015610f2157600080fd5b505afa158015610f35573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f599190613ada565b6001600160a01b0316336001600160a01b031614610fbb5760405162461bcd60e51b81526004016105ca9060208082526004908201527f4530313700000000000000000000000000000000000000000000000000000000604082015260600190565b60008381526006602052604081208054849290610fd9908490613c1b565b92505081905550600160076000828254610ff39190613c1b565b90915550610998905084848484611e1f565b606080600560009054906101000a90046001600160a01b03166001600160a01b031663025e3c616040518163ffffffff1660e01b815260040160206040518083038186803b15801561105657600080fd5b505afa15801561106a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061108e9190613ada565b6040517f827bffb5000000000000000000000000000000000000000000000000000000008152600481018690526001600160a01b038581166024830152919091169063827bffb59060440160006040518083038186803b1580156110f157600080fd5b505afa158015611105573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261112d9190810190613c33565b915091505b9250929050565b336111885760405162461bcd60e51b81526004016105ca9060208082526004908201527f4530303400000000000000000000000000000000000000000000000000000000604082015260600190565b600560009054906101000a90046001600160a01b03166001600160a01b031663f97e7d746040518163ffffffff1660e01b815260040160206040518083038186803b1580156111d657600080fd5b505afa1580156111ea573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061120e9190613ada565b6001600160a01b0316336001600160a01b0316146112705760405162461bcd60e51b81526004016105ca9060208082526004908201527f4530313700000000000000000000000000000000000000000000000000000000604082015260600190565b6000838152600660205260408120805484929061128e908490613c1b565b925050819055506001600760008282546112a89190613c1b565b90915550600090505b84811015611315576113038888838181106112ce576112ce613b84565b90506020020160208101906112e39190613581565b858888858181106112f6576112f6613b84565b9050602002013585611e1f565b8061130d81613be2565b9150506112b1565b5050505050505050565b610b9a338383611f4b565b6000828152600360205260409020600101546113468133611945565b610b0d8383611a85565b6001600160a01b03851633148061136c575061136c85336104c9565b6113de5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201527f20617070726f766564000000000000000000000000000000000000000000000060648201526084016105ca565b610ae0858585858561205e565b6004546001600160a01b031633146114455760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105ca565b6001600160a01b0381166114c15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016105ca565b61074781611db5565b336115195760405162461bcd60e51b81526004016105ca9060208082526004908201527f4530303400000000000000000000000000000000000000000000000000000000604082015260600190565b600560009054906101000a90046001600160a01b03166001600160a01b031663f97e7d746040518163ffffffff1660e01b815260040160206040518083038186803b15801561156757600080fd5b505afa15801561157b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061159f9190613ada565b6001600160a01b0316336001600160a01b0316146116015760405162461bcd60e51b81526004016105ca9060208082526004908201527f4530313700000000000000000000000000000000000000000000000000000000604082015260600190565b6000828152600660205260408120805483929061161f908490613d13565b90915550610b0d9050838383612227565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f7965db0b0000000000000000000000000000000000000000000000000000000014806105f657506105f6826123d3565b8051610b9a906002906020840190613143565b81518351146117105760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060448201527f6d69736d6174636800000000000000000000000000000000000000000000000060648201526084016105ca565b6001600160a01b03841661178c5760405162461bcd60e51b815260206004820152602560248201527f455243313135353a207472616e7366657220746f20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016105ca565b3361179b8187878787876124b6565b60005b84518110156118d75760008582815181106117bb576117bb613b84565b6020026020010151905060008583815181106117d9576117d9613b84565b602090810291909101810151600084815280835260408082206001600160a01b038e16835290935291909120549091508181101561187f5760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60448201527f72207472616e736665720000000000000000000000000000000000000000000060648201526084016105ca565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b168252812080548492906118bc908490613c1b565b92505081905550505050806118d090613be2565b905061179e565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611927929190613d2a565b60405180910390a461193d8187878787876129a2565b505050505050565b60008281526003602090815260408083206001600160a01b038516845290915290205460ff16610b9a57611983816001600160a01b03166014612bb6565b61198e836020612bb6565b60405160200161199f929190613d4f565b60408051601f198184030181529082905262461bcd60e51b82526105ca9160040161341e565b60008281526003602090815260408083206001600160a01b038516845290915290205460ff16610b9a5760008281526003602090815260408083206001600160a01b0385168452909152902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055611a413390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b60008281526003602090815260408083206001600160a01b038516845290915290205460ff1615610b9a5760008281526003602090815260408083206001600160a01b038516808552925280832080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b6001600160a01b038316611ba25760405162461bcd60e51b815260206004820152602360248201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016105ca565b8051825114611c195760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060448201527f6d69736d6174636800000000000000000000000000000000000000000000000060648201526084016105ca565b6000339050611c3c818560008686604051806020016040528060008152506124b6565b60005b8351811015611d56576000848281518110611c5c57611c5c613b84565b602002602001015190506000848381518110611c7a57611c7a613b84565b602090810291909101810151600084815280835260408082206001600160a01b038c168352909352919091205490915081811015611d1f5760405162461bcd60e51b8152602060048201526024808201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c60448201527f616e63650000000000000000000000000000000000000000000000000000000060648201526084016105ca565b6000928352602083815260408085206001600160a01b038b1686529091529092209103905580611d4e81613be2565b915050611c3f565b5060006001600160a01b0316846001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051611da7929190613d2a565b60405180910390a450505050565b600480546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038416611e9b5760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f2061646472657360448201527f730000000000000000000000000000000000000000000000000000000000000060648201526084016105ca565b33611ebb81600087611eac88612ddf565b611eb588612ddf565b876124b6565b6000848152602081815260408083206001600160a01b038916845290915281208054859290611eeb908490613c1b565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4610ae081600087878787612e2a565b816001600160a01b0316836001600160a01b03161415611fd35760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c2073746174757360448201527f20666f722073656c66000000000000000000000000000000000000000000000060648201526084016105ca565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b0384166120da5760405162461bcd60e51b815260206004820152602560248201527f455243313135353a207472616e7366657220746f20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016105ca565b336120ea818787611eac88612ddf565b6000848152602081815260408083206001600160a01b038a168452909152902054838110156121815760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60448201527f72207472616e736665720000000000000000000000000000000000000000000060648201526084016105ca565b6000858152602081815260408083206001600160a01b038b81168552925280832087850390559088168252812080548692906121be908490613c1b565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a461221e828888888888612e2a565b50505050505050565b6001600160a01b0383166122a35760405162461bcd60e51b815260206004820152602360248201527f455243313135353a206275726e2066726f6d20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016105ca565b336122d2818560006122b487612ddf565b6122bd87612ddf565b604051806020016040528060008152506124b6565b6000838152602081815260408083206001600160a01b0388168452909152902054828110156123685760405162461bcd60e51b8152602060048201526024808201527f455243313135353a206275726e20616d6f756e7420657863656564732062616c60448201527f616e63650000000000000000000000000000000000000000000000000000000060648201526084016105ca565b6000848152602081815260408083206001600160a01b03898116808652918452828520888703905582518981529384018890529092908616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a45050505050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167fd9b67a2600000000000000000000000000000000000000000000000000000000148061246657507fffffffff0000000000000000000000000000000000000000000000000000000082167f0e89341c00000000000000000000000000000000000000000000000000000000145b806105f657507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316146105f6565b6001600160a01b0385161561193d57600554604080517f54f2f7af00000000000000000000000000000000000000000000000000000000815290516000926001600160a01b0316916354f2f7af916004808301926020929190829003018186803b15801561252357600080fd5b505afa158015612537573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061255b9190613ada565b90506000816001600160a01b031663522f9b378660008151811061258157612581613b84565b60200260200101516040518263ffffffff1660e01b81526004016125a791815260200190565b6101206040518083038186803b1580156125c057600080fd5b505afa1580156125d4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125f89190613ddb565b60208101519091506001600160a01b03161580159061264a5750602081015161264a906001600160a01b03167f9874a22100000000000000000000000000000000000000000000000000000000612f94565b156126f05780602001516001600160a01b0316639874a2218660008151811061267557612675613b84565b60200260200101518a8a8a8960008151811061269357612693613b84565b6020026020010151896040518763ffffffff1660e01b81526004016126bd96959493929190613e75565b600060405180830381600087803b1580156126d757600080fd5b505af11580156126eb573d6000803e3d6000fd5b505050505b600081610100015115905060018651111561292e5760015b8180156127155750865181105b1561292c57600086828151811061272e5761272e613b84565b6020026020010151116127835760405162461bcd60e51b815260206004820152601e60248201527f547279696e6720746f207472616e73666572207a65726f20746f6b656e73000060448201526064016105ca565b836001600160a01b031663522f9b378883815181106127a4576127a4613b84565b60200260200101516040518263ffffffff1660e01b81526004016127ca91815260200190565b6101206040518083038186803b1580156127e357600080fd5b505afa1580156127f7573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061281b9190613ddb565b60208101519093506001600160a01b03161580159061286d5750602083015161286d906001600160a01b03167f9874a22100000000000000000000000000000000000000000000000000000000612f94565b156129115782602001516001600160a01b0316639874a22188838151811061289757612897613b84565b60200260200101518c8c8c8b87815181106128b4576128b4613b84565b60200260200101518b6040518763ffffffff1660e01b81526004016128de96959493929190613e75565b600060405180830381600087803b1580156128f857600080fd5b505af115801561290c573d6000803e3d6000fd5b505050505b610100830151159150612925600182613c1b565b9050612708565b505b6001600160a01b038716156129435780612946565b60015b9050806129975760405162461bcd60e51b81526004016105ca9060208082526004908201527f4530343600000000000000000000000000000000000000000000000000000000604082015260600190565b505050505050505050565b6001600160a01b0384163b1561193d576040517fbc197c810000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063bc197c81906129ff9089908990889088908890600401613ec1565b602060405180830381600087803b158015612a1957600080fd5b505af1925050508015612a49575060408051601f3d908101601f19168201909252612a4691810190613f13565b60015b612aff57612a55613f30565b806308c379a01415612a8f5750612a6a613f4c565b80612a755750612a91565b8060405162461bcd60e51b81526004016105ca919061341e565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e204552433131353560448201527f526563656976657220696d706c656d656e74657200000000000000000000000060648201526084016105ca565b7fffffffff0000000000000000000000000000000000000000000000000000000081167fbc197c81000000000000000000000000000000000000000000000000000000001461221e5760405162461bcd60e51b815260206004820152602860248201527f455243313135353a204552433131353552656365697665722072656a6563746560448201527f6420746f6b656e7300000000000000000000000000000000000000000000000060648201526084016105ca565b60606000612bc5836002613ff4565b612bd0906002613c1b565b67ffffffffffffffff811115612be857612be8613268565b6040519080825280601f01601f191660200182016040528015612c12576020820181803683370190505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110612c4957612c49613b84565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110612cac57612cac613b84565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506000612ce8846002613ff4565b612cf3906001613c1b565b90505b6001811115612d90577f303132333435363738396162636465660000000000000000000000000000000085600f1660108110612d3457612d34613b84565b1a60f81b828281518110612d4a57612d4a613b84565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060049490941c93612d8981614031565b9050612cf6565b508315610a3e5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e7460448201526064016105ca565b60408051600180825281830190925260609160009190602080830190803683370190505090508281600081518110612e1957612e19613b84565b602090810291909101015292915050565b6001600160a01b0384163b1561193d576040517ff23a6e610000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063f23a6e6190612e879089908990889088908890600401614066565b602060405180830381600087803b158015612ea157600080fd5b505af1925050508015612ed1575060408051601f3d908101601f19168201909252612ece91810190613f13565b60015b612edd57612a55613f30565b7fffffffff0000000000000000000000000000000000000000000000000000000081167ff23a6e61000000000000000000000000000000000000000000000000000000001461221e5760405162461bcd60e51b815260206004820152602860248201527f455243313135353a204552433131353552656365697665722072656a6563746560448201527f6420746f6b656e7300000000000000000000000000000000000000000000000060648201526084016105ca565b6000612f9f83612fb0565b8015610a3e5750610a3e8383613014565b6000612fdc827f01ffc9a700000000000000000000000000000000000000000000000000000000613014565b80156105f6575061300d827fffffffff00000000000000000000000000000000000000000000000000000000613014565b1592915050565b604080517fffffffff00000000000000000000000000000000000000000000000000000000831660248083019190915282518083039091018152604490910182526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167f01ffc9a700000000000000000000000000000000000000000000000000000000179052905160009190829081906001600160a01b03871690617530906130c19086906140a9565b6000604051808303818686fa925050503d80600081146130fd576040519150601f19603f3d011682016040523d82523d6000602084013e613102565b606091505b509150915060208151101561311d57600093505050506105f6565b81801561313957508080602001905181019061313991906140c5565b9695505050505050565b82805461314f906140e2565b90600052602060002090601f01602090048101928261317157600085556131b7565b82601f1061318a57805160ff19168380011785556131b7565b828001600101855582156131b7579182015b828111156131b757825182559160200191906001019061319c565b506131c39291506131c7565b5090565b5b808211156131c357600081556001016131c8565b6001600160a01b038116811461074757600080fd5b6000806040838503121561320457600080fd5b823561320f816131dc565b946020939093013593505050565b7fffffffff000000000000000000000000000000000000000000000000000000008116811461074757600080fd5b60006020828403121561325d57600080fd5b8135610a3e8161321d565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b601f19601f830116810181811067ffffffffffffffff821117156132bd576132bd613268565b6040525050565b604051610120810167ffffffffffffffff811182821017156132e8576132e8613268565b60405290565b600067ffffffffffffffff82111561330857613308613268565b50601f01601f191660200190565b6000613321836132ee565b60405161332e8282613297565b80925084815285858501111561334357600080fd5b8484602083013760006020868301015250509392505050565b60006020828403121561336e57600080fd5b813567ffffffffffffffff81111561338557600080fd5b8201601f8101841361339657600080fd5b6133a584823560208401613316565b949350505050565b6000602082840312156133bf57600080fd5b5035919050565b60005b838110156133e15781810151838201526020016133c9565b838111156109985750506000910152565b6000815180845261340a8160208601602086016133c6565b601f01601f19169290920160200192915050565b602081526000610a3e60208301846133f2565b600067ffffffffffffffff82111561344b5761344b613268565b5060051b60200190565b600082601f83011261346657600080fd5b8135602061347382613431565b6040516134808282613297565b83815260059390931b85018201928281019150868411156134a057600080fd5b8286015b848110156134bb57803583529183019183016134a4565b509695505050505050565b600082601f8301126134d757600080fd5b610a3e83833560208501613316565b600080600080608085870312156134fc57600080fd5b8435613507816131dc565b9350602085013567ffffffffffffffff8082111561352457600080fd5b61353088838901613455565b9450604087013591508082111561354657600080fd5b61355288838901613455565b9350606087013591508082111561356857600080fd5b50613575878288016134c6565b91505092959194509250565b60006020828403121561359357600080fd5b8135610a3e816131dc565b600080600080600060a086880312156135b657600080fd5b85356135c1816131dc565b945060208601356135d1816131dc565b9350604086013567ffffffffffffffff808211156135ee57600080fd5b6135fa89838a01613455565b9450606088013591508082111561361057600080fd5b61361c89838a01613455565b9350608088013591508082111561363257600080fd5b5061363f888289016134c6565b9150509295509295909350565b6000806040838503121561365f57600080fd5b823591506020830135613671816131dc565b809150509250929050565b6000806040838503121561368f57600080fd5b823567ffffffffffffffff808211156136a757600080fd5b818501915085601f8301126136bb57600080fd5b813560206136c882613431565b6040516136d58282613297565b83815260059390931b85018201928281019150898411156136f557600080fd5b948201945b8386101561371c57853561370d816131dc565b825294820194908201906136fa565b9650508601359250508082111561373257600080fd5b5061373f85828601613455565b9150509250929050565b600081518084526020808501945080840160005b838110156137795781518752958201959082019060010161375d565b509495945050505050565b602081526000610a3e6020830184613749565b6000806000606084860312156137ac57600080fd5b83356137b7816131dc565b9250602084013567ffffffffffffffff808211156137d457600080fd5b6137e087838801613455565b935060408601359150808211156137f657600080fd5b5061380386828701613455565b9150509250925092565b6000806000806080858703121561382357600080fd5b843561382e816131dc565b93506020850135925060408501359150606085013567ffffffffffffffff81111561385857600080fd5b613575878288016134c6565b60408152600061387760408301856133f2565b6020838203818501528185518084528284019150828160051b85010183880160005b838110156138c757601f198784030185526138b58383516133f2565b94860194925090850190600101613899565b50909998505050505050505050565b60008083601f8401126138e857600080fd5b50813567ffffffffffffffff81111561390057600080fd5b6020830191508360208260051b850101111561113257600080fd5b600080600080600080600060a0888a03121561393657600080fd5b873567ffffffffffffffff8082111561394e57600080fd5b61395a8b838c016138d6565b909950975060208a013591508082111561397357600080fd5b61397f8b838c016138d6565b909750955060408a0135945060608a0135935060808a01359150808211156139a657600080fd5b506139b38a828b016134c6565b91505092959891949750929550565b801515811461074757600080fd5b600080604083850312156139e357600080fd5b82356139ee816131dc565b91506020830135613671816139c2565b60008060408385031215613a1157600080fd5b8235613a1c816131dc565b91506020830135613671816131dc565b600080600080600060a08688031215613a4457600080fd5b8535613a4f816131dc565b94506020860135613a5f816131dc565b93506040860135925060608601359150608086013567ffffffffffffffff811115613a8957600080fd5b61363f888289016134c6565b600080600060608486031215613aaa57600080fd5b8335613ab5816131dc565b95602085013595506040909401359392505050565b8051613ad5816131dc565b919050565b600060208284031215613aec57600080fd5b8151610a3e816131dc565b600082601f830112613b0857600080fd5b8151613b13816132ee565b604051613b208282613297565b828152856020848701011115613b3557600080fd5b613b468360208301602088016133c6565b95945050505050565b600060208284031215613b6157600080fd5b815167ffffffffffffffff811115613b7857600080fd5b6133a584828501613af7565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613c1457613c14613bb3565b5060010190565b60008219821115613c2e57613c2e613bb3565b500190565b60008060408385031215613c4657600080fd5b825167ffffffffffffffff80821115613c5e57600080fd5b613c6a86838701613af7565b9350602091508185015181811115613c8157600080fd5b8501601f81018713613c9257600080fd5b8051613c9d81613431565b604051613caa8282613297565b82815260059290921b8301850191858101915089831115613cca57600080fd5b8584015b83811015613d0257805186811115613ce65760008081fd5b613cf48c8983890101613af7565b845250918601918601613cce565b508096505050505050509250929050565b600082821015613d2557613d25613bb3565b500390565b604081526000613d3d6040830185613749565b8281036020840152613b468185613749565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351613d878160178501602088016133c6565b7f206973206d697373696e6720726f6c65200000000000000000000000000000006017918401918201528351613dc48160288401602088016133c6565b01602801949350505050565b8051613ad5816139c2565b60006101208284031215613dee57600080fd5b613df66132c4565b613dff83613aca565b8152613e0d60208401613aca565b602082015260408301516040820152606083015160608201526080830151608082015260a083015160a0820152613e4660c08401613dd0565b60c0820152613e5760e08401613dd0565b60e0820152610100613e6a818501613dd0565b908201529392505050565b86815260006001600160a01b038088166020840152808716604084015280861660608401525083608083015260c060a0830152613eb560c08301846133f2565b98975050505050505050565b60006001600160a01b03808816835280871660208401525060a06040830152613eed60a0830186613749565b8281036060840152613eff8186613749565b90508281036080840152613eb581856133f2565b600060208284031215613f2557600080fd5b8151610a3e8161321d565b600060033d1115613f495760046000803e5060005160e01c5b90565b600060443d1015613f5a5790565b6040517ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc803d016004833e81513d67ffffffffffffffff8160248401118184111715613fa857505050505090565b8285019150815181811115613fc05750505050505090565b843d8701016020828501011115613fda5750505050505090565b613fe960208286010187613297565b509095945050505050565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561402c5761402c613bb3565b500290565b60008161404057614040613bb3565b507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0190565b60006001600160a01b03808816835280871660208401525084604083015283606083015260a0608083015261409e60a08301846133f2565b979650505050505050565b600082516140bb8184602087016133c6565b9190910192915050565b6000602082840312156140d757600080fd5b8151610a3e816139c2565b600181811c908216806140f657607f821691505b60208210811415614130577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b5091905056fea164736f6c6343000809000a
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000d2c6eb7527ab1e188638b86f2c14bbad5a431d78
-----Decoded View---------------
Arg [0] : provider (address): 0xd2c6eB7527Ab1E188638B86F2c14bbAd5A431d78
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000d2c6eb7527ab1e188638b86f2c14bbad5a431d78
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.