ERC-1155
Overview
Max Total Supply
7,777 FOLIO
Holders
216
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:
NFTfolio
Compiler Version
v0.8.4+commit.c7e474f2
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC1155/presets/ERC1155PresetMinterPauser.sol"; contract NFTfolio is ERC1155PresetMinterPauser { uint256 public constant DIAMOND = 0; uint256 public constant GOLD = 1; uint256 public constant SILVER = 2; string public name = "NFTfolio"; string public symbol = "FOLIO"; constructor() ERC1155PresetMinterPauser("https://api.nftfolio.io/metadata/token/{id}") { _mint(msg.sender, DIAMOND, 777, ""); _mint(msg.sender, GOLD, 3223, ""); _mint(msg.sender, SILVER, 3777, ""); } function contractURI() public pure returns (string memory) { return "https://api.nftfolio.io/metadata/contract"; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../ERC1155.sol"; import "../extensions/ERC1155Burnable.sol"; import "../extensions/ERC1155Pausable.sol"; import "../../../access/AccessControlEnumerable.sol"; import "../../../utils/Context.sol"; /** * @dev {ERC1155} token, including: * * - ability for holders to burn (destroy) their tokens * - a minter role that allows for token minting (creation) * - a pauser role that allows to stop all token transfers * * This contract uses {AccessControl} to lock permissioned functions using the * different roles - head to its documentation for details. * * The account that deploys the contract will be granted the minter and pauser * roles, as well as the default admin role, which will let it grant both minter * and pauser roles to other accounts. */ contract ERC1155PresetMinterPauser is Context, AccessControlEnumerable, ERC1155Burnable, ERC1155Pausable { bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE"); bytes32 public constant PAUSER_ROLE = keccak256("PAUSER_ROLE"); /** * @dev Grants `DEFAULT_ADMIN_ROLE`, `MINTER_ROLE`, and `PAUSER_ROLE` to the account that * deploys the contract. */ constructor(string memory uri) ERC1155(uri) { _setupRole(DEFAULT_ADMIN_ROLE, _msgSender()); _setupRole(MINTER_ROLE, _msgSender()); _setupRole(PAUSER_ROLE, _msgSender()); } /** * @dev Creates `amount` new tokens for `to`, of token type `id`. * * See {ERC1155-_mint}. * * Requirements: * * - the caller must have the `MINTER_ROLE`. */ function mint( address to, uint256 id, uint256 amount, bytes memory data ) public virtual { require(hasRole(MINTER_ROLE, _msgSender()), "ERC1155PresetMinterPauser: must have minter role to mint"); _mint(to, id, amount, data); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] variant of {mint}. */ function mintBatch( address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) public virtual { require(hasRole(MINTER_ROLE, _msgSender()), "ERC1155PresetMinterPauser: must have minter role to mint"); _mintBatch(to, ids, amounts, data); } /** * @dev Pauses all token transfers. * * See {ERC1155Pausable} and {Pausable-_pause}. * * Requirements: * * - the caller must have the `PAUSER_ROLE`. */ function pause() public virtual { require(hasRole(PAUSER_ROLE, _msgSender()), "ERC1155PresetMinterPauser: must have pauser role to pause"); _pause(); } /** * @dev Unpauses all token transfers. * * See {ERC1155Pausable} and {Pausable-_unpause}. * * Requirements: * * - the caller must have the `PAUSER_ROLE`. */ function unpause() public virtual { require(hasRole(PAUSER_ROLE, _msgSender()), "ERC1155PresetMinterPauser: must have pauser role to unpause"); _unpause(); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(AccessControlEnumerable, ERC1155) returns (bool) { return super.supportsInterface(interfaceId); } function _beforeTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual override(ERC1155, ERC1155Pausable) { super._beforeTokenTransfer(operator, from, to, ids, amounts, data); } }
// SPDX-License-Identifier: MIT 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 { require(_msgSender() != operator, "ERC1155: setting approval status for self"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_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 `account`. * * Emits a {TransferSingle} event. * * Requirements: * * - `account` cannot be the zero address. * - If `account` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function _mint( address account, uint256 id, uint256 amount, bytes memory data ) internal virtual { require(account != address(0), "ERC1155: mint to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, address(0), account, _asSingletonArray(id), _asSingletonArray(amount), data); _balances[id][account] += amount; emit TransferSingle(operator, address(0), account, id, amount); _doSafeTransferAcceptanceCheck(operator, address(0), account, 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 `account` * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens of token type `id`. */ function _burn( address account, uint256 id, uint256 amount ) internal virtual { require(account != address(0), "ERC1155: burn from the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, account, address(0), _asSingletonArray(id), _asSingletonArray(amount), ""); uint256 accountBalance = _balances[id][account]; require(accountBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][account] = accountBalance - amount; } emit TransferSingle(operator, account, 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 account, uint256[] memory ids, uint256[] memory amounts ) internal virtual { require(account != address(0), "ERC1155: burn from the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, account, address(0), ids, amounts, ""); for (uint256 i = 0; i < ids.length; i++) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 accountBalance = _balances[id][account]; require(accountBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][account] = accountBalance - amount; } } emit TransferBatch(operator, account, address(0), ids, amounts); } /** * @dev Hook that is called before any token transfer. This includes minting * and burning, as well as batched variants. * * The same hook is called on both single and batched variants. For single * transfers, the length of the `id` and `amount` arrays will be 1. * * Calling conditions (for each `id` and `amount` pair): * * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens * of token type `id` will be transferred to `to`. * - When `from` is zero, `amount` tokens of token type `id` will be minted * for `to`. * - when `to` is zero, `amount` of ``from``'s tokens of token type `id` * will be burned. * - `from` and `to` are never both zero. * - `ids` and `amounts` have the same, non-zero length. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual {} function _doSafeTransferAcceptanceCheck( address operator, address from, address to, uint256 id, uint256 amount, bytes memory data ) private { if (to.isContract()) { try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) { if (response != IERC1155Receiver.onERC1155Received.selector) { revert("ERC1155: ERC1155Receiver rejected tokens"); } } catch Error(string memory reason) { revert(reason); } catch { revert("ERC1155: transfer to non ERC1155Receiver implementer"); } } } function _doSafeBatchTransferAcceptanceCheck( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) private { if (to.isContract()) { try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns ( bytes4 response ) { if (response != IERC1155Receiver.onERC1155BatchReceived.selector) { revert("ERC1155: ERC1155Receiver rejected tokens"); } } catch Error(string memory reason) { revert(reason); } catch { revert("ERC1155: transfer to non ERC1155Receiver implementer"); } } } function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) { uint256[] memory array = new uint256[](1); array[0] = element; return array; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../ERC1155.sol"; /** * @dev Extension of {ERC1155} that allows token holders to destroy both their * own tokens and those that they have been approved to use. * * _Available since v3.1._ */ abstract contract ERC1155Burnable is ERC1155 { function burn( address account, uint256 id, uint256 value ) public virtual { require( account == _msgSender() || isApprovedForAll(account, _msgSender()), "ERC1155: caller is not owner nor approved" ); _burn(account, id, value); } function burnBatch( address account, uint256[] memory ids, uint256[] memory values ) public virtual { require( account == _msgSender() || isApprovedForAll(account, _msgSender()), "ERC1155: caller is not owner nor approved" ); _burnBatch(account, ids, values); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../ERC1155.sol"; import "../../../security/Pausable.sol"; /** * @dev ERC1155 token with pausable token transfers, minting and burning. * * Useful for scenarios such as preventing trades until the end of an evaluation * period, or having an emergency switch for freezing all token transfers in the * event of a large bug. * * _Available since v3.1._ */ abstract contract ERC1155Pausable is ERC1155, Pausable { /** * @dev See {ERC1155-_beforeTokenTransfer}. * * Requirements: * * - the contract must not be paused. */ function _beforeTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual override { super._beforeTokenTransfer(operator, from, to, ids, amounts, data); require(!paused(), "ERC1155Pausable: token transfer while paused"); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IAccessControlEnumerable.sol"; import "./AccessControl.sol"; import "../utils/structs/EnumerableSet.sol"; /** * @dev Extension of {AccessControl} that allows enumerating the members of each role. */ abstract contract AccessControlEnumerable is IAccessControlEnumerable, AccessControl { using EnumerableSet for EnumerableSet.AddressSet; mapping(bytes32 => EnumerableSet.AddressSet) private _roleMembers; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControlEnumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns one of the accounts that have `role`. `index` must be a * value between 0 and {getRoleMemberCount}, non-inclusive. * * Role bearers are not sorted in any particular way, and their ordering may * change at any point. * * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure * you perform all queries on the same block. See the following * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post] * for more information. */ function getRoleMember(bytes32 role, uint256 index) public view override returns (address) { return _roleMembers[role].at(index); } /** * @dev Returns the number of accounts that have `role`. Can be used * together with {getRoleMember} to enumerate all bearers of a role. */ function getRoleMemberCount(bytes32 role) public view override returns (uint256) { return _roleMembers[role].length(); } /** * @dev Overload {grantRole} to track enumerable memberships */ function grantRole(bytes32 role, address account) public virtual override(AccessControl, IAccessControl) { super.grantRole(role, account); _roleMembers[role].add(account); } /** * @dev Overload {revokeRole} to track enumerable memberships */ function revokeRole(bytes32 role, address account) public virtual override(AccessControl, IAccessControl) { super.revokeRole(role, account); _roleMembers[role].remove(account); } /** * @dev Overload {renounceRole} to track enumerable memberships */ function renounceRole(bytes32 role, address account) public virtual override(AccessControl, IAccessControl) { super.renounceRole(role, account); _roleMembers[role].remove(account); } /** * @dev Overload {_setupRole} to track enumerable memberships */ function _setupRole(bytes32 role, address account) internal virtual override { super._setupRole(role, account); _roleMembers[role].add(account); } }
// SPDX-License-Identifier: MIT 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 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 pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev _Available since v3.1._ */ interface IERC1155Receiver is IERC165 { /** @dev Handles the receipt of a single ERC1155 token type. This function is called at the end of a `safeTransferFrom` after the balance has been updated. To accept the transfer, this must return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` (i.e. 0xf23a6e61, or its own function selector). @param operator The address which initiated the transfer (i.e. msg.sender) @param from The address which previously owned the token @param id The ID of the token being transferred @param value The amount of tokens being transferred @param data Additional data with no specified format @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed */ function onERC1155Received( address operator, address from, uint256 id, uint256 value, bytes calldata data ) external returns (bytes4); /** @dev Handles the receipt of a multiple ERC1155 token types. This function is called at the end of a `safeBatchTransferFrom` after the balances have been updated. To accept the transfer(s), this must return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` (i.e. 0xbc197c81, or its own function selector). @param operator The address which initiated the batch transfer (i.e. msg.sender) @param from The address which previously owned the token @param ids An array containing ids of each token being transferred (order and length must match values array) @param values An array containing amounts of each token being transferred (order and length must match ids array) @param data Additional data with no specified format @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed */ function onERC1155BatchReceived( address operator, address from, uint256[] calldata ids, uint256[] calldata values, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT 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 pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT 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 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 pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IAccessControl.sol"; /** * @dev External interface of AccessControlEnumerable declared to support ERC165 detection. */ interface IAccessControlEnumerable is IAccessControl { /** * @dev Returns one of the accounts that have `role`. `index` must be a * value between 0 and {getRoleMemberCount}, non-inclusive. * * Role bearers are not sorted in any particular way, and their ordering may * change at any point. * * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure * you perform all queries on the same block. See the following * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post] * for more information. */ function getRoleMember(bytes32 role, uint256 index) external view returns (address); /** * @dev Returns the number of accounts that have `role`. Can be used * together with {getRoleMember} to enumerate all bearers of a role. */ function getRoleMemberCount(bytes32 role) external view returns (uint256); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IAccessControl.sol"; import "../utils/Context.sol"; import "../utils/Strings.sol"; import "../utils/introspection/ERC165.sol"; /** * @dev Contract module that allows children to implement role-based access * control mechanisms. This is a lightweight version that doesn't allow enumerating role * members except through off-chain means by accessing the contract event logs. Some * applications may benefit from on-chain enumerability, for those cases see * {AccessControlEnumerable}. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ``` * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ``` * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. */ abstract contract AccessControl is Context, IAccessControl, ERC165 { struct RoleData { mapping(address => bool) members; bytes32 adminRole; } mapping(bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Modifier that checks that an account has a specific role. Reverts * with a standardized message including the required role. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ * * _Available since v4.1._ */ modifier onlyRole(bytes32 role) { _checkRole(role, _msgSender()); _; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view override returns (bool) { return _roles[role].members[account]; } /** * @dev Revert with a standard message if `account` is missing `role`. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ */ function _checkRole(bytes32 role, address account) internal view { if (!hasRole(role, account)) { revert( string( abi.encodePacked( "AccessControl: account ", Strings.toHexString(uint160(account), 20), " is missing role ", Strings.toHexString(uint256(role), 32) ) ) ); } } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view override returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `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}. * ==== */ 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); } function _grantRole(bytes32 role, address account) private { if (!hasRole(role, account)) { _roles[role].members[account] = true; emit RoleGranted(role, account, _msgSender()); } } function _revokeRole(bytes32 role, address account) private { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Library for managing * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive * types. * * Sets have the following properties: * * - Elements are added, removed, and checked for existence in constant time * (O(1)). * - Elements are enumerated in O(n). No guarantees are made on the ordering. * * ``` * contract Example { * // Add the library methods * using EnumerableSet for EnumerableSet.AddressSet; * * // Declare a set state variable * EnumerableSet.AddressSet private mySet; * } * ``` * * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`) * and `uint256` (`UintSet`) are supported. */ library EnumerableSet { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Set type with // bytes32 values. // The Set implementation uses private functions, and user-facing // implementations (such as AddressSet) are just wrappers around the // underlying Set. // This means that we can only create new EnumerableSets for types that fit // in bytes32. struct Set { // Storage of set values bytes32[] _values; // Position of the value in the `values` array, plus 1 because index 0 // means a value is not in the set. mapping(bytes32 => uint256) _indexes; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function _add(Set storage set, bytes32 value) private returns (bool) { if (!_contains(set, value)) { set._values.push(value); // The value is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value set._indexes[value] = set._values.length; return true; } else { return false; } } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function _remove(Set storage set, bytes32 value) private returns (bool) { // We read and store the value's index to prevent multiple reads from the same storage slot uint256 valueIndex = set._indexes[value]; if (valueIndex != 0) { // Equivalent to contains(set, value) // To delete an element from the _values array in O(1), we swap the element to delete with the last one in // the array, and then remove the last element (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = valueIndex - 1; uint256 lastIndex = set._values.length - 1; if (lastIndex != toDeleteIndex) { bytes32 lastvalue = set._values[lastIndex]; // Move the last value to the index where the value to delete is set._values[toDeleteIndex] = lastvalue; // Update the index for the moved value set._indexes[lastvalue] = valueIndex; // Replace lastvalue's index to valueIndex } // Delete the slot where the moved value was stored set._values.pop(); // Delete the index for the deleted slot delete set._indexes[value]; return true; } else { return false; } } /** * @dev Returns true if the value is in the set. O(1). */ function _contains(Set storage set, bytes32 value) private view returns (bool) { return set._indexes[value] != 0; } /** * @dev Returns the number of values on the set. O(1). */ function _length(Set storage set) private view returns (uint256) { return set._values.length; } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Set storage set, uint256 index) private view returns (bytes32) { return set._values[index]; } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function _values(Set storage set) private view returns (bytes32[] memory) { return set._values; } // Bytes32Set struct Bytes32Set { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _add(set._inner, value); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _remove(set._inner, value); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) { return _contains(set._inner, value); } /** * @dev Returns the number of values in the set. O(1). */ function length(Bytes32Set storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) { return _at(set._inner, index); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(Bytes32Set storage set) internal view returns (bytes32[] memory) { return _values(set._inner); } // AddressSet struct AddressSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(AddressSet storage set, address value) internal returns (bool) { return _add(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(AddressSet storage set, address value) internal returns (bool) { return _remove(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(AddressSet storage set, address value) internal view returns (bool) { return _contains(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns the number of values in the set. O(1). */ function length(AddressSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(AddressSet storage set, uint256 index) internal view returns (address) { return address(uint160(uint256(_at(set._inner, index)))); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(AddressSet storage set) internal view returns (address[] memory) { bytes32[] memory store = _values(set._inner); address[] memory result; assembly { result := store } return result; } // UintSet struct UintSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(UintSet storage set, uint256 value) internal returns (bool) { return _add(set._inner, bytes32(value)); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(UintSet storage set, uint256 value) internal returns (bool) { return _remove(set._inner, bytes32(value)); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(UintSet storage set, uint256 value) internal view returns (bool) { return _contains(set._inner, bytes32(value)); } /** * @dev Returns the number of values on the set. O(1). */ function length(UintSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintSet storage set, uint256 index) internal view returns (uint256) { return uint256(_at(set._inner, index)); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(UintSet storage set) internal view returns (uint256[] memory) { bytes32[] memory store = _values(set._inner); uint256[] memory result; assembly { result := store } return result; } }
// SPDX-License-Identifier: MIT 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 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); } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DIAMOND","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"GOLD","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAUSER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SILVER","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"burnBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"mintBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040526040518060400160405280600881526020017f4e4654666f6c696f000000000000000000000000000000000000000000000000815250600690805190602001906200005192919062000a2b565b506040518060400160405280600581526020017f464f4c494f000000000000000000000000000000000000000000000000000000815250600790805190602001906200009f92919062000a2b565b50348015620000ad57600080fd5b506040518060600160405280602b8152602001620062d8602b913980620000da816200021560201b60201c565b506000600560006101000a81548160ff0219169083151502179055506200011a6000801b6200010e6200023160201b60201c565b6200023960201b60201c565b6200015b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66200014f6200023160201b60201c565b6200023960201b60201c565b6200019c7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a620001906200023160201b60201c565b6200023960201b60201c565b50620001c3336000610309604051806020016040528060008152506200028160201b60201c565b620001e9336001610c97604051806020016040528060008152506200028160201b60201c565b6200020f336002610ec1604051806020016040528060008152506200028160201b60201c565b6200120e565b80600490805190602001906200022d92919062000a2b565b5050565b600033905090565b6200025082826200044760201b620012c41760201c565b6200027c81600160008581526020019081526020016000206200045d60201b620012d21790919060201c565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415620002f4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002eb9062000d4c565b60405180910390fd5b6000620003066200023160201b60201c565b90506200033f8160008762000321886200049560201b60201c565b62000332886200049560201b60201c565b876200055e60201b60201c565b826002600086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620003a1919062000ddd565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6287876040516200042192919062000d6e565b60405180910390a462000440816000878787876200058160201b60201c565b5050505050565b6200045982826200078b60201b60201c565b5050565b60006200048d836000018373ffffffffffffffffffffffffffffffffffffffff1660001b6200087c60201b60201c565b905092915050565b60606000600167ffffffffffffffff811115620004db577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156200050a5781602001602082028036833780820191505090505b509050828160008151811062000549577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080915050919050565b62000579868686868686620008f660201b620013021760201c565b505050505050565b620005ad8473ffffffffffffffffffffffffffffffffffffffff166200096c60201b620013601760201c565b1562000783578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401620005f695949392919062000c5e565b602060405180830381600087803b1580156200061157600080fd5b505af19250505080156200064557506040513d601f19601f8201168201806040525081019062000642919062000af2565b60015b620006f7576200065462000fd3565b806308c379a01415620006b857506200066c62001152565b80620006795750620006ba565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006af919062000cc2565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006ee9062000ce6565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161462000781576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007789062000d08565b60405180910390fd5b505b505050505050565b6200079d82826200097f60201b60201c565b6200087857600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506200081d6200023160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6000620008908383620009e960201b60201c565b620008eb578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050620008f0565b600090505b92915050565b6200091186868686868662000a0c60201b620013731760201c565b6200092162000a1460201b60201c565b1562000964576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200095b9062000d2a565b60405180910390fd5b505050505050565b600080823b905060008111915050919050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600080836001016000848152602001908152602001600020541415905092915050565b505050505050565b6000600560009054906101000a900460ff16905090565b82805462000a399062000eda565b90600052602060002090601f01602090048101928262000a5d576000855562000aa9565b82601f1062000a7857805160ff191683800117855562000aa9565b8280016001018555821562000aa9579182015b8281111562000aa857825182559160200191906001019062000a8b565b5b50905062000ab8919062000abc565b5090565b5b8082111562000ad757600081600090555060010162000abd565b5090565b60008151905062000aec81620011f4565b92915050565b60006020828403121562000b0557600080fd5b600062000b158482850162000adb565b91505092915050565b62000b298162000e3a565b82525050565b600062000b3c8262000da5565b62000b48818562000dbb565b935062000b5a81856020860162000ea4565b62000b658162000ff8565b840191505092915050565b600062000b7d8262000db0565b62000b89818562000dcc565b935062000b9b81856020860162000ea4565b62000ba68162000ff8565b840191505092915050565b600062000bc060348362000dcc565b915062000bcd8262001016565b604082019050919050565b600062000be760288362000dcc565b915062000bf48262001065565b604082019050919050565b600062000c0e602c8362000dcc565b915062000c1b82620010b4565b604082019050919050565b600062000c3560218362000dcc565b915062000c428262001103565b604082019050919050565b62000c588162000e9a565b82525050565b600060a08201905062000c75600083018862000b1e565b62000c84602083018762000b1e565b62000c93604083018662000c4d565b62000ca2606083018562000c4d565b818103608083015262000cb6818462000b2f565b90509695505050505050565b6000602082019050818103600083015262000cde818462000b70565b905092915050565b6000602082019050818103600083015262000d018162000bb1565b9050919050565b6000602082019050818103600083015262000d238162000bd8565b9050919050565b6000602082019050818103600083015262000d458162000bff565b9050919050565b6000602082019050818103600083015262000d678162000c26565b9050919050565b600060408201905062000d85600083018562000c4d565b62000d94602083018462000c4d565b9392505050565b6000604051905090565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600062000dea8262000e9a565b915062000df78362000e9a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000e2f5762000e2e62000f46565b5b828201905092915050565b600062000e478262000e7a565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b8381101562000ec457808201518184015260208101905062000ea7565b8381111562000ed4576000848401525b50505050565b6000600282049050600182168062000ef357607f821691505b6020821081141562000f0a5762000f0962000f75565b5b50919050565b62000f1b8262000ff8565b810181811067ffffffffffffffff8211171562000f3d5762000f3c62000fa4565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d111562000ff55760046000803e62000ff260005162001009565b90505b90565b6000601f19601f8301169050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f455243313135355061757361626c653a20746f6b656e207472616e736665722060008201527f7768696c65207061757365640000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600060443d10156200116457620011f1565b6200116e62000d9b565b60043d036004823e80513d602482011167ffffffffffffffff8211171562001198575050620011f1565b808201805167ffffffffffffffff811115620011b85750505050620011f1565b80602083010160043d038501811115620011d7575050505050620011f1565b620011e88260200185018662000f10565b82955050505050505b90565b620011ff8162000e4e565b81146200120b57600080fd5b50565b6150ba806200121e6000396000f3fe608060405234801561001057600080fd5b50600436106101e45760003560e01c8063731133e91161010f578063d5391393116100a2578063e8a3d48511610071578063e8a3d4851461056b578063e985e9c514610589578063f242432a146105b9578063f5298aca146105d5576101e4565b8063d5391393146104f5578063d547741f14610513578063e3e55f081461052f578063e63ab1e91461054d576101e4565b806395d89b41116100de57806395d89b411461046d578063a217fddf1461048b578063a22cb465146104a9578063ca15c873146104c5576101e4565b8063731133e9146103e75780638456cb59146104035780639010d07c1461040d57806391d148541461043d576101e4565b80632eb2c2d6116101875780633f4ba83a116101565780633f4ba83a146103735780634e1273f41461037d5780635c975abb146103ad5780636b20c454146103cb576101e4565b80632eb2c2d6146103015780632f2ff15d1461031d57806336568abe146103395780633e4bee3814610355576101e4565b80630e89341c116101c35780630e89341c146102675780631f7fdffa14610297578063206545c2146102b3578063248a9ca3146102d1576101e4565b8062fdd58e146101e957806301ffc9a71461021957806306fdde0314610249575b600080fd5b61020360048036038101906101fe91906138c3565b6105f1565b6040516102109190614442565b60405180910390f35b610233600480360381019061022e9190613ad6565b6106bb565b604051610240919061414a565b60405180910390f35b6102516106cd565b60405161025e9190614180565b60405180910390f35b610281600480360381019061027c9190613b28565b61075b565b60405161028e9190614180565b60405180910390f35b6102b160048036038101906102ac91906137dc565b6107ef565b005b6102bb610871565b6040516102c89190614442565b60405180910390f35b6102eb60048036038101906102e69190613a35565b610876565b6040516102f89190614165565b60405180910390f35b61031b6004803603810190610316919061360f565b610895565b005b61033760048036038101906103329190613a5e565b610936565b005b610353600480360381019061034e9190613a5e565b61096a565b005b61035d61099e565b60405161036a9190614442565b60405180910390f35b61037b6109a3565b005b610397600480360381019061039291906139c9565b610a1d565b6040516103a491906140f1565b60405180910390f35b6103b5610bce565b6040516103c2919061414a565b60405180910390f35b6103e560048036038101906103e0919061375d565b610be5565b005b61040160048036038101906103fc919061394e565b610c82565b005b61040b610d04565b005b61042760048036038101906104229190613a9a565b610d7e565b6040516104349190614014565b60405180910390f35b61045760048036038101906104529190613a5e565b610dad565b604051610464919061414a565b60405180910390f35b610475610e17565b6040516104829190614180565b60405180910390f35b610493610ea5565b6040516104a09190614165565b60405180910390f35b6104c360048036038101906104be9190613887565b610eac565b005b6104df60048036038101906104da9190613a35565b61102d565b6040516104ec9190614442565b60405180910390f35b6104fd611051565b60405161050a9190614165565b60405180910390f35b61052d60048036038101906105289190613a5e565b611075565b005b6105376110a9565b6040516105449190614442565b60405180910390f35b6105556110ae565b6040516105629190614165565b60405180910390f35b6105736110d2565b6040516105809190614180565b60405180910390f35b6105a3600480360381019061059e91906135d3565b6110f2565b6040516105b0919061414a565b60405180910390f35b6105d360048036038101906105ce91906136ce565b611186565b005b6105ef60048036038101906105ea91906138ff565b611227565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610662576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161065990614222565b60405180910390fd5b6002600083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60006106c68261137b565b9050919050565b600680546106da9061477e565b80601f01602080910402602001604051908101604052809291908181526020018280546107069061477e565b80156107535780601f1061072857610100808354040283529160200191610753565b820191906000526020600020905b81548152906001019060200180831161073657829003601f168201915b505050505081565b60606004805461076a9061477e565b80601f01602080910402602001604051908101604052809291908181526020018280546107969061477e565b80156107e35780601f106107b8576101008083540402835291602001916107e3565b820191906000526020600020905b8154815290600101906020018083116107c657829003601f168201915b50505050509050919050565b6108207f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a661081b61145d565b610dad565b61085f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085690614322565b60405180910390fd5b61086b84848484611465565b50505050565b600081565b6000806000838152602001908152602001600020600101549050919050565b61089d61145d565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806108e357506108e2856108dd61145d565b6110f2565b5b610922576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610919906142e2565b60405180910390fd5b61092f85858585856116d0565b5050505050565b6109408282611a33565b61096581600160008581526020019081526020016000206112d290919063ffffffff16565b505050565b6109748282611a5c565b6109998160016000858152602001908152602001600020611adf90919063ffffffff16565b505050565b600181565b6109d47f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a6109cf61145d565b610dad565b610a13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0a90614362565b60405180910390fd5b610a1b611b0f565b565b60608151835114610a63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5a906143c2565b60405180910390fd5b6000835167ffffffffffffffff811115610aa6577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610ad45781602001602082028036833780820191505090505b50905060005b8451811015610bc357610b6d858281518110610b1f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151858381518110610b60577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516105f1565b828281518110610ba6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080610bbc906147e1565b9050610ada565b508091505092915050565b6000600560009054906101000a900460ff16905090565b610bed61145d565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610c335750610c3283610c2d61145d565b6110f2565b5b610c72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6990614282565b60405180910390fd5b610c7d838383611bb1565b505050565b610cb37f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6610cae61145d565b610dad565b610cf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce990614322565b60405180910390fd5b610cfe84848484611eb0565b50505050565b610d357f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610d3061145d565b610dad565b610d74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6b90614382565b60405180910390fd5b610d7c612047565b565b6000610da582600160008681526020019081526020016000206120ea90919063ffffffff16565b905092915050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60078054610e249061477e565b80601f0160208091040260200160405190810160405280929190818152602001828054610e509061477e565b8015610e9d5780601f10610e7257610100808354040283529160200191610e9d565b820191906000526020600020905b815481529060010190602001808311610e8057829003601f168201915b505050505081565b6000801b81565b8173ffffffffffffffffffffffffffffffffffffffff16610ecb61145d565b73ffffffffffffffffffffffffffffffffffffffff161415610f22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f19906143a2565b60405180910390fd5b8060036000610f2f61145d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610fdc61145d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611021919061414a565b60405180910390a35050565b600061104a60016000848152602001908152602001600020612104565b9050919050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b61107f8282612119565b6110a48160016000858152602001908152602001600020611adf90919063ffffffff16565b505050565b600281565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b606060405180606001604052806029815260200161505c60299139905090565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61118e61145d565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806111d457506111d3856111ce61145d565b6110f2565b5b611213576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120a90614282565b60405180910390fd5b6112208585858585612142565b5050505050565b61122f61145d565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061127557506112748361126f61145d565b6110f2565b5b6112b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ab90614282565b60405180910390fd5b6112bf8383836123c7565b505050565b6112ce82826125e6565b5050565b60006112fa836000018373ffffffffffffffffffffffffffffffffffffffff1660001b6126c6565b905092915050565b611310868686868686611373565b611318610bce565b15611358576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134f90614262565b60405180910390fd5b505050505050565b600080823b905060008111915050919050565b505050505050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061144657507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611456575061145582612736565b5b9050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156114d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114cc90614402565b60405180910390fd5b8151835114611519576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611510906143e2565b60405180910390fd5b600061152361145d565b9050611534816000878787876127b0565b60005b845181101561163a57838181518110611579577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151600260008784815181106115be577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461162091906145b0565b925050819055508080611632906147e1565b915050611537565b508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516116b2929190614113565b60405180910390a46116c9816000878787876127c6565b5050505050565b8151835114611714576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170b906143e2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611784576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177b906142c2565b60405180910390fd5b600061178e61145d565b905061179e8187878787876127b0565b60005b845181101561199e5760008582815181106117e5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600085838151811061182a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151905060006002600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156118cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c390614342565b60405180910390fd5b8181036002600085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816002600085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461198391906145b0565b9250508190555050505080611997906147e1565b90506117a1565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611a15929190614113565b60405180910390a4611a2b8187878787876127c6565b505050505050565b611a3c82610876565b611a4d81611a4861145d565b6129ad565b611a5783836125e6565b505050565b611a6461145d565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611ad1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac890614422565b60405180910390fd5b611adb8282612a4a565b5050565b6000611b07836000018373ffffffffffffffffffffffffffffffffffffffff1660001b612b2b565b905092915050565b611b17610bce565b611b56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4d90614202565b60405180910390fd5b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611b9a61145d565b604051611ba79190614014565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611c21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1890614302565b60405180910390fd5b8051825114611c65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5c906143e2565b60405180910390fd5b6000611c6f61145d565b9050611c8f818560008686604051806020016040528060008152506127b0565b60005b8351811015611e2a576000848281518110611cd6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190506000848381518110611d1b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151905060006002600084815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611dbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db490614242565b60405180910390fd5b8181036002600085815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050508080611e22906147e1565b915050611c92565b50600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051611ea2929190614113565b60405180910390a450505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611f20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1790614402565b60405180910390fd5b6000611f2a61145d565b9050611f4b81600087611f3c88612cb1565b611f4588612cb1565b876127b0565b826002600086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611fab91906145b0565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62878760405161202992919061445d565b60405180910390a461204081600087878787612d77565b5050505050565b61204f610bce565b1561208f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612086906142a2565b60405180910390fd5b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586120d361145d565b6040516120e09190614014565b60405180910390a1565b60006120f98360000183612f5e565b60001c905092915050565b600061211282600001612faf565b9050919050565b61212282610876565b6121338161212e61145d565b6129ad565b61213d8383612a4a565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156121b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a9906142c2565b60405180910390fd5b60006121bc61145d565b90506121dc8187876121cd88612cb1565b6121d688612cb1565b876127b0565b60006002600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015612274576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226b90614342565b60405180910390fd5b8381036002600087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550836002600087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461232b91906145b0565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6288886040516123a892919061445d565b60405180910390a46123be828888888888612d77565b50505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612437576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242e90614302565b60405180910390fd5b600061244161145d565b90506124718185600061245387612cb1565b61245c87612cb1565b604051806020016040528060008152506127b0565b60006002600085815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015612509576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250090614242565b60405180910390fd5b8281036002600086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6287876040516125d792919061445d565b60405180910390a45050505050565b6125f08282610dad565b6126c257600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061266761145d565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b60006126d28383612fc0565b61272b578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050612730565b600090505b92915050565b60007f5a05180f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806127a957506127a882612fe3565b5b9050919050565b6127be868686868686611302565b505050505050565b6127e58473ffffffffffffffffffffffffffffffffffffffff16611360565b156129a5578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b815260040161282b95949392919061402f565b602060405180830381600087803b15801561284557600080fd5b505af192505050801561287657506040513d601f19601f820116820180604052508101906128739190613aff565b60015b61291c576128826148b7565b806308c379a014156128df5750612897614f52565b806128a257506128e1565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128d69190614180565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612913906141a2565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146129a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161299a906141e2565b60405180910390fd5b505b505050505050565b6129b78282610dad565b612a46576129dc8173ffffffffffffffffffffffffffffffffffffffff16601461305d565b6129ea8360001c602061305d565b6040516020016129fb929190613fda565b6040516020818303038152906040526040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3d9190614180565b60405180910390fd5b5050565b612a548282610dad565b15612b2757600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550612acc61145d565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b60008083600101600084815260200190815260200160002054905060008114612ca5576000600182612b5d9190614660565b9050600060018660000180549050612b759190614660565b9050818114612c30576000866000018281548110612bbc577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905080876000018481548110612c06577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508387600101600083815260200190815260200160002081905550505b85600001805480612c6a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050612cab565b60009150505b92915050565b60606000600167ffffffffffffffff811115612cf6577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015612d245781602001602082028036833780820191505090505b5090508281600081518110612d62577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080915050919050565b612d968473ffffffffffffffffffffffffffffffffffffffff16611360565b15612f56578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401612ddc959493929190614097565b602060405180830381600087803b158015612df657600080fd5b505af1925050508015612e2757506040513d601f19601f82011682018060405250810190612e249190613aff565b60015b612ecd57612e336148b7565b806308c379a01415612e905750612e48614f52565b80612e535750612e92565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e879190614180565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ec4906141a2565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612f54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f4b906141e2565b60405180910390fd5b505b505050505050565b6000826000018281548110612f9c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905092915050565b600081600001805490509050919050565b600080836001016000848152602001908152602001600020541415905092915050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480613056575061305582613357565b5b9050919050565b6060600060028360026130709190614606565b61307a91906145b0565b67ffffffffffffffff8111156130b9577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156130eb5781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110613149577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f7800000000000000000000000000000000000000000000000000000000000000816001815181106131d3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600060018460026132139190614606565b61321d91906145b0565b90505b6001811115613309577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110613285577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b8282815181106132c2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c94508061330290614754565b9050613220565b506000841461334d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613344906141c2565b60405180910390fd5b8091505092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60006133d46133cf846144ab565b614486565b905080838252602082019050828560208602820111156133f357600080fd5b60005b85811015613423578161340988826134d7565b8452602084019350602083019250506001810190506133f6565b5050509392505050565b600061344061343b846144d7565b614486565b9050808382526020820190508285602086028201111561345f57600080fd5b60005b8581101561348f578161347588826135be565b845260208401935060208301925050600181019050613462565b5050509392505050565b60006134ac6134a784614503565b614486565b9050828152602081018484840111156134c457600080fd5b6134cf848285614712565b509392505050565b6000813590506134e681614fe8565b92915050565b600082601f8301126134fd57600080fd5b813561350d8482602086016133c1565b91505092915050565b600082601f83011261352757600080fd5b813561353784826020860161342d565b91505092915050565b60008135905061354f81614fff565b92915050565b60008135905061356481615016565b92915050565b6000813590506135798161502d565b92915050565b60008151905061358e8161502d565b92915050565b600082601f8301126135a557600080fd5b81356135b5848260208601613499565b91505092915050565b6000813590506135cd81615044565b92915050565b600080604083850312156135e657600080fd5b60006135f4858286016134d7565b9250506020613605858286016134d7565b9150509250929050565b600080600080600060a0868803121561362757600080fd5b6000613635888289016134d7565b9550506020613646888289016134d7565b945050604086013567ffffffffffffffff81111561366357600080fd5b61366f88828901613516565b935050606086013567ffffffffffffffff81111561368c57600080fd5b61369888828901613516565b925050608086013567ffffffffffffffff8111156136b557600080fd5b6136c188828901613594565b9150509295509295909350565b600080600080600060a086880312156136e657600080fd5b60006136f4888289016134d7565b9550506020613705888289016134d7565b9450506040613716888289016135be565b9350506060613727888289016135be565b925050608086013567ffffffffffffffff81111561374457600080fd5b61375088828901613594565b9150509295509295909350565b60008060006060848603121561377257600080fd5b6000613780868287016134d7565b935050602084013567ffffffffffffffff81111561379d57600080fd5b6137a986828701613516565b925050604084013567ffffffffffffffff8111156137c657600080fd5b6137d286828701613516565b9150509250925092565b600080600080608085870312156137f257600080fd5b6000613800878288016134d7565b945050602085013567ffffffffffffffff81111561381d57600080fd5b61382987828801613516565b935050604085013567ffffffffffffffff81111561384657600080fd5b61385287828801613516565b925050606085013567ffffffffffffffff81111561386f57600080fd5b61387b87828801613594565b91505092959194509250565b6000806040838503121561389a57600080fd5b60006138a8858286016134d7565b92505060206138b985828601613540565b9150509250929050565b600080604083850312156138d657600080fd5b60006138e4858286016134d7565b92505060206138f5858286016135be565b9150509250929050565b60008060006060848603121561391457600080fd5b6000613922868287016134d7565b9350506020613933868287016135be565b9250506040613944868287016135be565b9150509250925092565b6000806000806080858703121561396457600080fd5b6000613972878288016134d7565b9450506020613983878288016135be565b9350506040613994878288016135be565b925050606085013567ffffffffffffffff8111156139b157600080fd5b6139bd87828801613594565b91505092959194509250565b600080604083850312156139dc57600080fd5b600083013567ffffffffffffffff8111156139f657600080fd5b613a02858286016134ec565b925050602083013567ffffffffffffffff811115613a1f57600080fd5b613a2b85828601613516565b9150509250929050565b600060208284031215613a4757600080fd5b6000613a5584828501613555565b91505092915050565b60008060408385031215613a7157600080fd5b6000613a7f85828601613555565b9250506020613a90858286016134d7565b9150509250929050565b60008060408385031215613aad57600080fd5b6000613abb85828601613555565b9250506020613acc858286016135be565b9150509250929050565b600060208284031215613ae857600080fd5b6000613af68482850161356a565b91505092915050565b600060208284031215613b1157600080fd5b6000613b1f8482850161357f565b91505092915050565b600060208284031215613b3a57600080fd5b6000613b48848285016135be565b91505092915050565b6000613b5d8383613fbc565b60208301905092915050565b613b7281614694565b82525050565b6000613b8382614544565b613b8d8185614572565b9350613b9883614534565b8060005b83811015613bc9578151613bb08882613b51565b9750613bbb83614565565b925050600181019050613b9c565b5085935050505092915050565b613bdf816146a6565b82525050565b613bee816146b2565b82525050565b6000613bff8261454f565b613c098185614583565b9350613c19818560208601614721565b613c22816148d9565b840191505092915050565b6000613c388261455a565b613c428185614594565b9350613c52818560208601614721565b613c5b816148d9565b840191505092915050565b6000613c718261455a565b613c7b81856145a5565b9350613c8b818560208601614721565b80840191505092915050565b6000613ca4603483614594565b9150613caf826148f7565b604082019050919050565b6000613cc7602083614594565b9150613cd282614946565b602082019050919050565b6000613cea602883614594565b9150613cf58261496f565b604082019050919050565b6000613d0d601483614594565b9150613d18826149be565b602082019050919050565b6000613d30602b83614594565b9150613d3b826149e7565b604082019050919050565b6000613d53602483614594565b9150613d5e82614a36565b604082019050919050565b6000613d76602c83614594565b9150613d8182614a85565b604082019050919050565b6000613d99602983614594565b9150613da482614ad4565b604082019050919050565b6000613dbc601083614594565b9150613dc782614b23565b602082019050919050565b6000613ddf602583614594565b9150613dea82614b4c565b604082019050919050565b6000613e02603283614594565b9150613e0d82614b9b565b604082019050919050565b6000613e25602383614594565b9150613e3082614bea565b604082019050919050565b6000613e48603883614594565b9150613e5382614c39565b604082019050919050565b6000613e6b602a83614594565b9150613e7682614c88565b604082019050919050565b6000613e8e603b83614594565b9150613e9982614cd7565b604082019050919050565b6000613eb1603983614594565b9150613ebc82614d26565b604082019050919050565b6000613ed46017836145a5565b9150613edf82614d75565b601782019050919050565b6000613ef7602983614594565b9150613f0282614d9e565b604082019050919050565b6000613f1a602983614594565b9150613f2582614ded565b604082019050919050565b6000613f3d602883614594565b9150613f4882614e3c565b604082019050919050565b6000613f60602183614594565b9150613f6b82614e8b565b604082019050919050565b6000613f836011836145a5565b9150613f8e82614eda565b601182019050919050565b6000613fa6602f83614594565b9150613fb182614f03565b604082019050919050565b613fc581614708565b82525050565b613fd481614708565b82525050565b6000613fe582613ec7565b9150613ff18285613c66565b9150613ffc82613f76565b91506140088284613c66565b91508190509392505050565b60006020820190506140296000830184613b69565b92915050565b600060a0820190506140446000830188613b69565b6140516020830187613b69565b81810360408301526140638186613b78565b905081810360608301526140778185613b78565b9050818103608083015261408b8184613bf4565b90509695505050505050565b600060a0820190506140ac6000830188613b69565b6140b96020830187613b69565b6140c66040830186613fcb565b6140d36060830185613fcb565b81810360808301526140e58184613bf4565b90509695505050505050565b6000602082019050818103600083015261410b8184613b78565b905092915050565b6000604082019050818103600083015261412d8185613b78565b905081810360208301526141418184613b78565b90509392505050565b600060208201905061415f6000830184613bd6565b92915050565b600060208201905061417a6000830184613be5565b92915050565b6000602082019050818103600083015261419a8184613c2d565b905092915050565b600060208201905081810360008301526141bb81613c97565b9050919050565b600060208201905081810360008301526141db81613cba565b9050919050565b600060208201905081810360008301526141fb81613cdd565b9050919050565b6000602082019050818103600083015261421b81613d00565b9050919050565b6000602082019050818103600083015261423b81613d23565b9050919050565b6000602082019050818103600083015261425b81613d46565b9050919050565b6000602082019050818103600083015261427b81613d69565b9050919050565b6000602082019050818103600083015261429b81613d8c565b9050919050565b600060208201905081810360008301526142bb81613daf565b9050919050565b600060208201905081810360008301526142db81613dd2565b9050919050565b600060208201905081810360008301526142fb81613df5565b9050919050565b6000602082019050818103600083015261431b81613e18565b9050919050565b6000602082019050818103600083015261433b81613e3b565b9050919050565b6000602082019050818103600083015261435b81613e5e565b9050919050565b6000602082019050818103600083015261437b81613e81565b9050919050565b6000602082019050818103600083015261439b81613ea4565b9050919050565b600060208201905081810360008301526143bb81613eea565b9050919050565b600060208201905081810360008301526143db81613f0d565b9050919050565b600060208201905081810360008301526143fb81613f30565b9050919050565b6000602082019050818103600083015261441b81613f53565b9050919050565b6000602082019050818103600083015261443b81613f99565b9050919050565b60006020820190506144576000830184613fcb565b92915050565b60006040820190506144726000830185613fcb565b61447f6020830184613fcb565b9392505050565b60006144906144a1565b905061449c82826147b0565b919050565b6000604051905090565b600067ffffffffffffffff8211156144c6576144c5614888565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156144f2576144f1614888565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561451e5761451d614888565b5b614527826148d9565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006145bb82614708565b91506145c683614708565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156145fb576145fa61482a565b5b828201905092915050565b600061461182614708565b915061461c83614708565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156146555761465461482a565b5b828202905092915050565b600061466b82614708565b915061467683614708565b9250828210156146895761468861482a565b5b828203905092915050565b600061469f826146e8565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561473f578082015181840152602081019050614724565b8381111561474e576000848401525b50505050565b600061475f82614708565b915060008214156147735761477261482a565b5b600182039050919050565b6000600282049050600182168061479657607f821691505b602082108114156147aa576147a9614859565b5b50919050565b6147b9826148d9565b810181811067ffffffffffffffff821117156147d8576147d7614888565b5b80604052505050565b60006147ec82614708565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561481f5761481e61482a565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d11156148d65760046000803e6148d36000516148ea565b90505b90565b6000601f19601f8301169050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135355061757361626c653a20746f6b656e207472616e736665722060008201527f7768696c65207061757365640000000000000000000000000000000000000000602082015250565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135355072657365744d696e7465725061757365723a206d7573742060008201527f68617665206d696e74657220726f6c6520746f206d696e740000000000000000602082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f455243313135355072657365744d696e7465725061757365723a206d7573742060008201527f686176652070617573657220726f6c6520746f20756e70617573650000000000602082015250565b7f455243313135355072657365744d696e7465725061757365723a206d7573742060008201527f686176652070617573657220726f6c6520746f20706175736500000000000000602082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b600060443d1015614f6257614fe5565b614f6a6144a1565b60043d036004823e80513d602482011167ffffffffffffffff82111715614f92575050614fe5565b808201805167ffffffffffffffff811115614fb05750505050614fe5565b80602083010160043d038501811115614fcd575050505050614fe5565b614fdc826020018501866147b0565b82955050505050505b90565b614ff181614694565b8114614ffc57600080fd5b50565b615008816146a6565b811461501357600080fd5b50565b61501f816146b2565b811461502a57600080fd5b50565b615036816146bc565b811461504157600080fd5b50565b61504d81614708565b811461505857600080fd5b5056fe68747470733a2f2f6170692e6e6674666f6c696f2e696f2f6d657461646174612f636f6e7472616374a2646970667358221220eb80a9e694961a17345fa44e073c835f1290f613eab0c1cd65cbe0f0c1fc478364736f6c6343000804003368747470733a2f2f6170692e6e6674666f6c696f2e696f2f6d657461646174612f746f6b656e2f7b69647d
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101e45760003560e01c8063731133e91161010f578063d5391393116100a2578063e8a3d48511610071578063e8a3d4851461056b578063e985e9c514610589578063f242432a146105b9578063f5298aca146105d5576101e4565b8063d5391393146104f5578063d547741f14610513578063e3e55f081461052f578063e63ab1e91461054d576101e4565b806395d89b41116100de57806395d89b411461046d578063a217fddf1461048b578063a22cb465146104a9578063ca15c873146104c5576101e4565b8063731133e9146103e75780638456cb59146104035780639010d07c1461040d57806391d148541461043d576101e4565b80632eb2c2d6116101875780633f4ba83a116101565780633f4ba83a146103735780634e1273f41461037d5780635c975abb146103ad5780636b20c454146103cb576101e4565b80632eb2c2d6146103015780632f2ff15d1461031d57806336568abe146103395780633e4bee3814610355576101e4565b80630e89341c116101c35780630e89341c146102675780631f7fdffa14610297578063206545c2146102b3578063248a9ca3146102d1576101e4565b8062fdd58e146101e957806301ffc9a71461021957806306fdde0314610249575b600080fd5b61020360048036038101906101fe91906138c3565b6105f1565b6040516102109190614442565b60405180910390f35b610233600480360381019061022e9190613ad6565b6106bb565b604051610240919061414a565b60405180910390f35b6102516106cd565b60405161025e9190614180565b60405180910390f35b610281600480360381019061027c9190613b28565b61075b565b60405161028e9190614180565b60405180910390f35b6102b160048036038101906102ac91906137dc565b6107ef565b005b6102bb610871565b6040516102c89190614442565b60405180910390f35b6102eb60048036038101906102e69190613a35565b610876565b6040516102f89190614165565b60405180910390f35b61031b6004803603810190610316919061360f565b610895565b005b61033760048036038101906103329190613a5e565b610936565b005b610353600480360381019061034e9190613a5e565b61096a565b005b61035d61099e565b60405161036a9190614442565b60405180910390f35b61037b6109a3565b005b610397600480360381019061039291906139c9565b610a1d565b6040516103a491906140f1565b60405180910390f35b6103b5610bce565b6040516103c2919061414a565b60405180910390f35b6103e560048036038101906103e0919061375d565b610be5565b005b61040160048036038101906103fc919061394e565b610c82565b005b61040b610d04565b005b61042760048036038101906104229190613a9a565b610d7e565b6040516104349190614014565b60405180910390f35b61045760048036038101906104529190613a5e565b610dad565b604051610464919061414a565b60405180910390f35b610475610e17565b6040516104829190614180565b60405180910390f35b610493610ea5565b6040516104a09190614165565b60405180910390f35b6104c360048036038101906104be9190613887565b610eac565b005b6104df60048036038101906104da9190613a35565b61102d565b6040516104ec9190614442565b60405180910390f35b6104fd611051565b60405161050a9190614165565b60405180910390f35b61052d60048036038101906105289190613a5e565b611075565b005b6105376110a9565b6040516105449190614442565b60405180910390f35b6105556110ae565b6040516105629190614165565b60405180910390f35b6105736110d2565b6040516105809190614180565b60405180910390f35b6105a3600480360381019061059e91906135d3565b6110f2565b6040516105b0919061414a565b60405180910390f35b6105d360048036038101906105ce91906136ce565b611186565b005b6105ef60048036038101906105ea91906138ff565b611227565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610662576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161065990614222565b60405180910390fd5b6002600083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60006106c68261137b565b9050919050565b600680546106da9061477e565b80601f01602080910402602001604051908101604052809291908181526020018280546107069061477e565b80156107535780601f1061072857610100808354040283529160200191610753565b820191906000526020600020905b81548152906001019060200180831161073657829003601f168201915b505050505081565b60606004805461076a9061477e565b80601f01602080910402602001604051908101604052809291908181526020018280546107969061477e565b80156107e35780601f106107b8576101008083540402835291602001916107e3565b820191906000526020600020905b8154815290600101906020018083116107c657829003601f168201915b50505050509050919050565b6108207f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a661081b61145d565b610dad565b61085f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085690614322565b60405180910390fd5b61086b84848484611465565b50505050565b600081565b6000806000838152602001908152602001600020600101549050919050565b61089d61145d565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806108e357506108e2856108dd61145d565b6110f2565b5b610922576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610919906142e2565b60405180910390fd5b61092f85858585856116d0565b5050505050565b6109408282611a33565b61096581600160008581526020019081526020016000206112d290919063ffffffff16565b505050565b6109748282611a5c565b6109998160016000858152602001908152602001600020611adf90919063ffffffff16565b505050565b600181565b6109d47f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a6109cf61145d565b610dad565b610a13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0a90614362565b60405180910390fd5b610a1b611b0f565b565b60608151835114610a63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5a906143c2565b60405180910390fd5b6000835167ffffffffffffffff811115610aa6577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610ad45781602001602082028036833780820191505090505b50905060005b8451811015610bc357610b6d858281518110610b1f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151858381518110610b60577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516105f1565b828281518110610ba6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080610bbc906147e1565b9050610ada565b508091505092915050565b6000600560009054906101000a900460ff16905090565b610bed61145d565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610c335750610c3283610c2d61145d565b6110f2565b5b610c72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6990614282565b60405180910390fd5b610c7d838383611bb1565b505050565b610cb37f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6610cae61145d565b610dad565b610cf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce990614322565b60405180910390fd5b610cfe84848484611eb0565b50505050565b610d357f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610d3061145d565b610dad565b610d74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6b90614382565b60405180910390fd5b610d7c612047565b565b6000610da582600160008681526020019081526020016000206120ea90919063ffffffff16565b905092915050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60078054610e249061477e565b80601f0160208091040260200160405190810160405280929190818152602001828054610e509061477e565b8015610e9d5780601f10610e7257610100808354040283529160200191610e9d565b820191906000526020600020905b815481529060010190602001808311610e8057829003601f168201915b505050505081565b6000801b81565b8173ffffffffffffffffffffffffffffffffffffffff16610ecb61145d565b73ffffffffffffffffffffffffffffffffffffffff161415610f22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f19906143a2565b60405180910390fd5b8060036000610f2f61145d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610fdc61145d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611021919061414a565b60405180910390a35050565b600061104a60016000848152602001908152602001600020612104565b9050919050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b61107f8282612119565b6110a48160016000858152602001908152602001600020611adf90919063ffffffff16565b505050565b600281565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b606060405180606001604052806029815260200161505c60299139905090565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61118e61145d565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806111d457506111d3856111ce61145d565b6110f2565b5b611213576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120a90614282565b60405180910390fd5b6112208585858585612142565b5050505050565b61122f61145d565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061127557506112748361126f61145d565b6110f2565b5b6112b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ab90614282565b60405180910390fd5b6112bf8383836123c7565b505050565b6112ce82826125e6565b5050565b60006112fa836000018373ffffffffffffffffffffffffffffffffffffffff1660001b6126c6565b905092915050565b611310868686868686611373565b611318610bce565b15611358576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134f90614262565b60405180910390fd5b505050505050565b600080823b905060008111915050919050565b505050505050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061144657507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611456575061145582612736565b5b9050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156114d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114cc90614402565b60405180910390fd5b8151835114611519576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611510906143e2565b60405180910390fd5b600061152361145d565b9050611534816000878787876127b0565b60005b845181101561163a57838181518110611579577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151600260008784815181106115be577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461162091906145b0565b925050819055508080611632906147e1565b915050611537565b508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516116b2929190614113565b60405180910390a46116c9816000878787876127c6565b5050505050565b8151835114611714576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170b906143e2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611784576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177b906142c2565b60405180910390fd5b600061178e61145d565b905061179e8187878787876127b0565b60005b845181101561199e5760008582815181106117e5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600085838151811061182a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151905060006002600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156118cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c390614342565b60405180910390fd5b8181036002600085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816002600085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461198391906145b0565b9250508190555050505080611997906147e1565b90506117a1565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611a15929190614113565b60405180910390a4611a2b8187878787876127c6565b505050505050565b611a3c82610876565b611a4d81611a4861145d565b6129ad565b611a5783836125e6565b505050565b611a6461145d565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611ad1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac890614422565b60405180910390fd5b611adb8282612a4a565b5050565b6000611b07836000018373ffffffffffffffffffffffffffffffffffffffff1660001b612b2b565b905092915050565b611b17610bce565b611b56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4d90614202565b60405180910390fd5b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611b9a61145d565b604051611ba79190614014565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611c21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1890614302565b60405180910390fd5b8051825114611c65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5c906143e2565b60405180910390fd5b6000611c6f61145d565b9050611c8f818560008686604051806020016040528060008152506127b0565b60005b8351811015611e2a576000848281518110611cd6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190506000848381518110611d1b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151905060006002600084815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611dbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db490614242565b60405180910390fd5b8181036002600085815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050508080611e22906147e1565b915050611c92565b50600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051611ea2929190614113565b60405180910390a450505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611f20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1790614402565b60405180910390fd5b6000611f2a61145d565b9050611f4b81600087611f3c88612cb1565b611f4588612cb1565b876127b0565b826002600086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611fab91906145b0565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62878760405161202992919061445d565b60405180910390a461204081600087878787612d77565b5050505050565b61204f610bce565b1561208f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612086906142a2565b60405180910390fd5b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586120d361145d565b6040516120e09190614014565b60405180910390a1565b60006120f98360000183612f5e565b60001c905092915050565b600061211282600001612faf565b9050919050565b61212282610876565b6121338161212e61145d565b6129ad565b61213d8383612a4a565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156121b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a9906142c2565b60405180910390fd5b60006121bc61145d565b90506121dc8187876121cd88612cb1565b6121d688612cb1565b876127b0565b60006002600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015612274576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226b90614342565b60405180910390fd5b8381036002600087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550836002600087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461232b91906145b0565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6288886040516123a892919061445d565b60405180910390a46123be828888888888612d77565b50505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612437576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242e90614302565b60405180910390fd5b600061244161145d565b90506124718185600061245387612cb1565b61245c87612cb1565b604051806020016040528060008152506127b0565b60006002600085815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015612509576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250090614242565b60405180910390fd5b8281036002600086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6287876040516125d792919061445d565b60405180910390a45050505050565b6125f08282610dad565b6126c257600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061266761145d565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b60006126d28383612fc0565b61272b578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050612730565b600090505b92915050565b60007f5a05180f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806127a957506127a882612fe3565b5b9050919050565b6127be868686868686611302565b505050505050565b6127e58473ffffffffffffffffffffffffffffffffffffffff16611360565b156129a5578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b815260040161282b95949392919061402f565b602060405180830381600087803b15801561284557600080fd5b505af192505050801561287657506040513d601f19601f820116820180604052508101906128739190613aff565b60015b61291c576128826148b7565b806308c379a014156128df5750612897614f52565b806128a257506128e1565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128d69190614180565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612913906141a2565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146129a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161299a906141e2565b60405180910390fd5b505b505050505050565b6129b78282610dad565b612a46576129dc8173ffffffffffffffffffffffffffffffffffffffff16601461305d565b6129ea8360001c602061305d565b6040516020016129fb929190613fda565b6040516020818303038152906040526040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3d9190614180565b60405180910390fd5b5050565b612a548282610dad565b15612b2757600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550612acc61145d565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b60008083600101600084815260200190815260200160002054905060008114612ca5576000600182612b5d9190614660565b9050600060018660000180549050612b759190614660565b9050818114612c30576000866000018281548110612bbc577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905080876000018481548110612c06577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508387600101600083815260200190815260200160002081905550505b85600001805480612c6a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050612cab565b60009150505b92915050565b60606000600167ffffffffffffffff811115612cf6577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015612d245781602001602082028036833780820191505090505b5090508281600081518110612d62577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080915050919050565b612d968473ffffffffffffffffffffffffffffffffffffffff16611360565b15612f56578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401612ddc959493929190614097565b602060405180830381600087803b158015612df657600080fd5b505af1925050508015612e2757506040513d601f19601f82011682018060405250810190612e249190613aff565b60015b612ecd57612e336148b7565b806308c379a01415612e905750612e48614f52565b80612e535750612e92565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e879190614180565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ec4906141a2565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612f54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f4b906141e2565b60405180910390fd5b505b505050505050565b6000826000018281548110612f9c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905092915050565b600081600001805490509050919050565b600080836001016000848152602001908152602001600020541415905092915050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480613056575061305582613357565b5b9050919050565b6060600060028360026130709190614606565b61307a91906145b0565b67ffffffffffffffff8111156130b9577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156130eb5781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110613149577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f7800000000000000000000000000000000000000000000000000000000000000816001815181106131d3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600060018460026132139190614606565b61321d91906145b0565b90505b6001811115613309577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110613285577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b8282815181106132c2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c94508061330290614754565b9050613220565b506000841461334d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613344906141c2565b60405180910390fd5b8091505092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60006133d46133cf846144ab565b614486565b905080838252602082019050828560208602820111156133f357600080fd5b60005b85811015613423578161340988826134d7565b8452602084019350602083019250506001810190506133f6565b5050509392505050565b600061344061343b846144d7565b614486565b9050808382526020820190508285602086028201111561345f57600080fd5b60005b8581101561348f578161347588826135be565b845260208401935060208301925050600181019050613462565b5050509392505050565b60006134ac6134a784614503565b614486565b9050828152602081018484840111156134c457600080fd5b6134cf848285614712565b509392505050565b6000813590506134e681614fe8565b92915050565b600082601f8301126134fd57600080fd5b813561350d8482602086016133c1565b91505092915050565b600082601f83011261352757600080fd5b813561353784826020860161342d565b91505092915050565b60008135905061354f81614fff565b92915050565b60008135905061356481615016565b92915050565b6000813590506135798161502d565b92915050565b60008151905061358e8161502d565b92915050565b600082601f8301126135a557600080fd5b81356135b5848260208601613499565b91505092915050565b6000813590506135cd81615044565b92915050565b600080604083850312156135e657600080fd5b60006135f4858286016134d7565b9250506020613605858286016134d7565b9150509250929050565b600080600080600060a0868803121561362757600080fd5b6000613635888289016134d7565b9550506020613646888289016134d7565b945050604086013567ffffffffffffffff81111561366357600080fd5b61366f88828901613516565b935050606086013567ffffffffffffffff81111561368c57600080fd5b61369888828901613516565b925050608086013567ffffffffffffffff8111156136b557600080fd5b6136c188828901613594565b9150509295509295909350565b600080600080600060a086880312156136e657600080fd5b60006136f4888289016134d7565b9550506020613705888289016134d7565b9450506040613716888289016135be565b9350506060613727888289016135be565b925050608086013567ffffffffffffffff81111561374457600080fd5b61375088828901613594565b9150509295509295909350565b60008060006060848603121561377257600080fd5b6000613780868287016134d7565b935050602084013567ffffffffffffffff81111561379d57600080fd5b6137a986828701613516565b925050604084013567ffffffffffffffff8111156137c657600080fd5b6137d286828701613516565b9150509250925092565b600080600080608085870312156137f257600080fd5b6000613800878288016134d7565b945050602085013567ffffffffffffffff81111561381d57600080fd5b61382987828801613516565b935050604085013567ffffffffffffffff81111561384657600080fd5b61385287828801613516565b925050606085013567ffffffffffffffff81111561386f57600080fd5b61387b87828801613594565b91505092959194509250565b6000806040838503121561389a57600080fd5b60006138a8858286016134d7565b92505060206138b985828601613540565b9150509250929050565b600080604083850312156138d657600080fd5b60006138e4858286016134d7565b92505060206138f5858286016135be565b9150509250929050565b60008060006060848603121561391457600080fd5b6000613922868287016134d7565b9350506020613933868287016135be565b9250506040613944868287016135be565b9150509250925092565b6000806000806080858703121561396457600080fd5b6000613972878288016134d7565b9450506020613983878288016135be565b9350506040613994878288016135be565b925050606085013567ffffffffffffffff8111156139b157600080fd5b6139bd87828801613594565b91505092959194509250565b600080604083850312156139dc57600080fd5b600083013567ffffffffffffffff8111156139f657600080fd5b613a02858286016134ec565b925050602083013567ffffffffffffffff811115613a1f57600080fd5b613a2b85828601613516565b9150509250929050565b600060208284031215613a4757600080fd5b6000613a5584828501613555565b91505092915050565b60008060408385031215613a7157600080fd5b6000613a7f85828601613555565b9250506020613a90858286016134d7565b9150509250929050565b60008060408385031215613aad57600080fd5b6000613abb85828601613555565b9250506020613acc858286016135be565b9150509250929050565b600060208284031215613ae857600080fd5b6000613af68482850161356a565b91505092915050565b600060208284031215613b1157600080fd5b6000613b1f8482850161357f565b91505092915050565b600060208284031215613b3a57600080fd5b6000613b48848285016135be565b91505092915050565b6000613b5d8383613fbc565b60208301905092915050565b613b7281614694565b82525050565b6000613b8382614544565b613b8d8185614572565b9350613b9883614534565b8060005b83811015613bc9578151613bb08882613b51565b9750613bbb83614565565b925050600181019050613b9c565b5085935050505092915050565b613bdf816146a6565b82525050565b613bee816146b2565b82525050565b6000613bff8261454f565b613c098185614583565b9350613c19818560208601614721565b613c22816148d9565b840191505092915050565b6000613c388261455a565b613c428185614594565b9350613c52818560208601614721565b613c5b816148d9565b840191505092915050565b6000613c718261455a565b613c7b81856145a5565b9350613c8b818560208601614721565b80840191505092915050565b6000613ca4603483614594565b9150613caf826148f7565b604082019050919050565b6000613cc7602083614594565b9150613cd282614946565b602082019050919050565b6000613cea602883614594565b9150613cf58261496f565b604082019050919050565b6000613d0d601483614594565b9150613d18826149be565b602082019050919050565b6000613d30602b83614594565b9150613d3b826149e7565b604082019050919050565b6000613d53602483614594565b9150613d5e82614a36565b604082019050919050565b6000613d76602c83614594565b9150613d8182614a85565b604082019050919050565b6000613d99602983614594565b9150613da482614ad4565b604082019050919050565b6000613dbc601083614594565b9150613dc782614b23565b602082019050919050565b6000613ddf602583614594565b9150613dea82614b4c565b604082019050919050565b6000613e02603283614594565b9150613e0d82614b9b565b604082019050919050565b6000613e25602383614594565b9150613e3082614bea565b604082019050919050565b6000613e48603883614594565b9150613e5382614c39565b604082019050919050565b6000613e6b602a83614594565b9150613e7682614c88565b604082019050919050565b6000613e8e603b83614594565b9150613e9982614cd7565b604082019050919050565b6000613eb1603983614594565b9150613ebc82614d26565b604082019050919050565b6000613ed46017836145a5565b9150613edf82614d75565b601782019050919050565b6000613ef7602983614594565b9150613f0282614d9e565b604082019050919050565b6000613f1a602983614594565b9150613f2582614ded565b604082019050919050565b6000613f3d602883614594565b9150613f4882614e3c565b604082019050919050565b6000613f60602183614594565b9150613f6b82614e8b565b604082019050919050565b6000613f836011836145a5565b9150613f8e82614eda565b601182019050919050565b6000613fa6602f83614594565b9150613fb182614f03565b604082019050919050565b613fc581614708565b82525050565b613fd481614708565b82525050565b6000613fe582613ec7565b9150613ff18285613c66565b9150613ffc82613f76565b91506140088284613c66565b91508190509392505050565b60006020820190506140296000830184613b69565b92915050565b600060a0820190506140446000830188613b69565b6140516020830187613b69565b81810360408301526140638186613b78565b905081810360608301526140778185613b78565b9050818103608083015261408b8184613bf4565b90509695505050505050565b600060a0820190506140ac6000830188613b69565b6140b96020830187613b69565b6140c66040830186613fcb565b6140d36060830185613fcb565b81810360808301526140e58184613bf4565b90509695505050505050565b6000602082019050818103600083015261410b8184613b78565b905092915050565b6000604082019050818103600083015261412d8185613b78565b905081810360208301526141418184613b78565b90509392505050565b600060208201905061415f6000830184613bd6565b92915050565b600060208201905061417a6000830184613be5565b92915050565b6000602082019050818103600083015261419a8184613c2d565b905092915050565b600060208201905081810360008301526141bb81613c97565b9050919050565b600060208201905081810360008301526141db81613cba565b9050919050565b600060208201905081810360008301526141fb81613cdd565b9050919050565b6000602082019050818103600083015261421b81613d00565b9050919050565b6000602082019050818103600083015261423b81613d23565b9050919050565b6000602082019050818103600083015261425b81613d46565b9050919050565b6000602082019050818103600083015261427b81613d69565b9050919050565b6000602082019050818103600083015261429b81613d8c565b9050919050565b600060208201905081810360008301526142bb81613daf565b9050919050565b600060208201905081810360008301526142db81613dd2565b9050919050565b600060208201905081810360008301526142fb81613df5565b9050919050565b6000602082019050818103600083015261431b81613e18565b9050919050565b6000602082019050818103600083015261433b81613e3b565b9050919050565b6000602082019050818103600083015261435b81613e5e565b9050919050565b6000602082019050818103600083015261437b81613e81565b9050919050565b6000602082019050818103600083015261439b81613ea4565b9050919050565b600060208201905081810360008301526143bb81613eea565b9050919050565b600060208201905081810360008301526143db81613f0d565b9050919050565b600060208201905081810360008301526143fb81613f30565b9050919050565b6000602082019050818103600083015261441b81613f53565b9050919050565b6000602082019050818103600083015261443b81613f99565b9050919050565b60006020820190506144576000830184613fcb565b92915050565b60006040820190506144726000830185613fcb565b61447f6020830184613fcb565b9392505050565b60006144906144a1565b905061449c82826147b0565b919050565b6000604051905090565b600067ffffffffffffffff8211156144c6576144c5614888565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156144f2576144f1614888565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561451e5761451d614888565b5b614527826148d9565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006145bb82614708565b91506145c683614708565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156145fb576145fa61482a565b5b828201905092915050565b600061461182614708565b915061461c83614708565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156146555761465461482a565b5b828202905092915050565b600061466b82614708565b915061467683614708565b9250828210156146895761468861482a565b5b828203905092915050565b600061469f826146e8565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561473f578082015181840152602081019050614724565b8381111561474e576000848401525b50505050565b600061475f82614708565b915060008214156147735761477261482a565b5b600182039050919050565b6000600282049050600182168061479657607f821691505b602082108114156147aa576147a9614859565b5b50919050565b6147b9826148d9565b810181811067ffffffffffffffff821117156147d8576147d7614888565b5b80604052505050565b60006147ec82614708565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561481f5761481e61482a565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d11156148d65760046000803e6148d36000516148ea565b90505b90565b6000601f19601f8301169050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135355061757361626c653a20746f6b656e207472616e736665722060008201527f7768696c65207061757365640000000000000000000000000000000000000000602082015250565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135355072657365744d696e7465725061757365723a206d7573742060008201527f68617665206d696e74657220726f6c6520746f206d696e740000000000000000602082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f455243313135355072657365744d696e7465725061757365723a206d7573742060008201527f686176652070617573657220726f6c6520746f20756e70617573650000000000602082015250565b7f455243313135355072657365744d696e7465725061757365723a206d7573742060008201527f686176652070617573657220726f6c6520746f20706175736500000000000000602082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b600060443d1015614f6257614fe5565b614f6a6144a1565b60043d036004823e80513d602482011167ffffffffffffffff82111715614f92575050614fe5565b808201805167ffffffffffffffff811115614fb05750505050614fe5565b80602083010160043d038501811115614fcd575050505050614fe5565b614fdc826020018501866147b0565b82955050505050505b90565b614ff181614694565b8114614ffc57600080fd5b50565b615008816146a6565b811461501357600080fd5b50565b61501f816146b2565b811461502a57600080fd5b50565b615036816146bc565b811461504157600080fd5b50565b61504d81614708565b811461505857600080fd5b5056fe68747470733a2f2f6170692e6e6674666f6c696f2e696f2f6d657461646174612f636f6e7472616374a2646970667358221220eb80a9e694961a17345fa44e073c835f1290f613eab0c1cd65cbe0f0c1fc478364736f6c63430008040033
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.