ERC-1155
Overview
Max Total Supply
1,514 52i
Holders
843
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:
RainerHosch
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)
// // // //////////////////////////////////////////////////////////////////////////////////////// // __________ .__ ___ ___ .__ // // \______ \_____ |__| ____ ___________ / | \ ____ ______ ____ | |__ // // | _/\__ \ | |/ \_/ __ \_ __ \ / ~ \/ _ \/ ___// ___\| | \ // // | | \ / __ \| | | \ ___/| | \/ \ Y ( <_> )___ \\ \___| Y \ // // |____|_ /(____ /__|___| /\___ >__| \___|_ / \____/____ >\___ >___| / // // \/ \/ \/ \/ \/ \/ \/ \/ // //////////////////////////////////////////////////////////////////////////////////////// // // // // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC1155/presets/ERC1155PresetMinterPauser.sol"; contract RainerHosch is ERC1155PresetMinterPauser, Ownable { string public name = "52icons - Rainer Hosch Genesis"; string public symbol = "52i"; string public contractUri = "https://nft.rainerhosch.com/contract"; constructor() ERC1155PresetMinterPauser("https://nft.rainerhosch.com/{id}") { } function setUri(string memory newuri) public onlyOwner { _setURI(newuri); } function setContractURI(string memory newuri) public onlyOwner { contractUri = newuri; } function contractURI() public view returns (string memory) { return contractUri; } function mintMass( address[] memory to, uint256[] memory id, uint256[] memory amount ) onlyOwner public { require(to.length == id.length, "Contract Info: to and id length mismatch"); require(to.length == amount.length, "Contract Info: to and amount length mismatch"); for (uint256 i = 0; i < to.length; i++) { _mint(to[i], id[i], amount[i], ""); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/presets/ERC1155PresetMinterPauser.sol) 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. * * _Deprecated in favor of https://wizard.openzeppelin.com/[Contracts Wizard]._ */ 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 // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC1155/ERC1155.sol) pragma solidity ^0.8.0; import "./IERC1155.sol"; import "./IERC1155Receiver.sol"; import "./extensions/IERC1155MetadataURI.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of the basic standard multi-token. * See https://eips.ethereum.org/EIPS/eip-1155 * Originally based on code by Enjin: https://github.com/enjin/erc-1155 * * _Available since v3.1._ */ contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI { using Address for address; // Mapping from token ID to account balances mapping(uint256 => mapping(address => uint256)) private _balances; // Mapping from account to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json string private _uri; /** * @dev See {_setURI}. */ constructor(string memory uri_) { _setURI(uri_); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC1155).interfaceId || interfaceId == type(IERC1155MetadataURI).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC1155MetadataURI-uri}. * * This implementation returns the same URI for *all* token types. It relies * on the token type ID substitution mechanism * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP]. * * Clients calling this function must replace the `\{id\}` substring with the * actual token type ID. */ function uri(uint256) public view virtual override returns (string memory) { return _uri; } /** * @dev See {IERC1155-balanceOf}. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) public view virtual override returns (uint256) { require(account != address(0), "ERC1155: balance query for the zero address"); return _balances[id][account]; } /** * @dev See {IERC1155-balanceOfBatch}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch(address[] memory accounts, uint256[] memory ids) public view virtual override returns (uint256[] memory) { require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch"); uint256[] memory batchBalances = new uint256[](accounts.length); for (uint256 i = 0; i < accounts.length; ++i) { batchBalances[i] = balanceOf(accounts[i], ids[i]); } return batchBalances; } /** * @dev See {IERC1155-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC1155-isApprovedForAll}. */ function isApprovedForAll(address account, address operator) public view virtual override returns (bool) { return _operatorApprovals[account][operator]; } /** * @dev See {IERC1155-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes memory data ) public virtual override { require( from == _msgSender() || isApprovedForAll(from, _msgSender()), "ERC1155: caller is not owner nor approved" ); _safeTransferFrom(from, to, id, amount, data); } /** * @dev See {IERC1155-safeBatchTransferFrom}. */ function safeBatchTransferFrom( address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) public virtual override { require( from == _msgSender() || isApprovedForAll(from, _msgSender()), "ERC1155: transfer caller is not owner nor approved" ); _safeBatchTransferFrom(from, to, ids, amounts, data); } /** * @dev Transfers `amount` tokens of token type `id` from `from` to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - `from` must have a balance of tokens of type `id` of at least `amount`. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function _safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: transfer to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, to, _asSingletonArray(id), _asSingletonArray(amount), data); uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: insufficient balance for transfer"); unchecked { _balances[id][from] = fromBalance - amount; } _balances[id][to] += amount; emit TransferSingle(operator, from, to, id, amount); _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}. * * Emits a {TransferBatch} event. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function _safeBatchTransferFrom( address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual { require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); require(to != address(0), "ERC1155: transfer to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, to, ids, amounts, data); for (uint256 i = 0; i < ids.length; ++i) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: insufficient balance for transfer"); unchecked { _balances[id][from] = fromBalance - amount; } _balances[id][to] += amount; } emit TransferBatch(operator, from, to, ids, amounts); _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data); } /** * @dev Sets a new URI for all token types, by relying on the token type ID * substitution mechanism * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP]. * * By this mechanism, any occurrence of the `\{id\}` substring in either the * URI or any of the amounts in the JSON file at said URI will be replaced by * clients with the token type ID. * * For example, the `https://token-cdn-domain/\{id\}.json` URI would be * interpreted by clients as * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json` * for token type ID 0x4cce0. * * See {uri}. * * Because these URIs cannot be meaningfully represented by the {URI} event, * this function emits no events. */ function _setURI(string memory newuri) internal virtual { _uri = newuri; } /** * @dev Creates `amount` tokens of token type `id`, and assigns them to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function _mint( address to, uint256 id, uint256 amount, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: mint to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, address(0), to, _asSingletonArray(id), _asSingletonArray(amount), data); _balances[id][to] += amount; emit TransferSingle(operator, address(0), to, id, amount); _doSafeTransferAcceptanceCheck(operator, address(0), to, id, amount, data); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}. * * Requirements: * * - `ids` and `amounts` must have the same length. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function _mintBatch( address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: mint to the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, address(0), to, ids, amounts, data); for (uint256 i = 0; i < ids.length; i++) { _balances[ids[i]][to] += amounts[i]; } emit TransferBatch(operator, address(0), to, ids, amounts); _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data); } /** * @dev Destroys `amount` tokens of token type `id` from `from` * * Requirements: * * - `from` cannot be the zero address. * - `from` must have at least `amount` tokens of token type `id`. */ function _burn( address from, uint256 id, uint256 amount ) internal virtual { require(from != address(0), "ERC1155: burn from the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, address(0), _asSingletonArray(id), _asSingletonArray(amount), ""); uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][from] = fromBalance - amount; } emit TransferSingle(operator, from, address(0), id, amount); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}. * * Requirements: * * - `ids` and `amounts` must have the same length. */ function _burnBatch( address from, uint256[] memory ids, uint256[] memory amounts ) internal virtual { require(from != address(0), "ERC1155: burn from the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, address(0), ids, amounts, ""); for (uint256 i = 0; i < ids.length; i++) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][from] = fromBalance - amount; } } emit TransferBatch(operator, from, address(0), ids, amounts); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC1155: setting approval status for self"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Hook that is called before any token transfer. This includes minting * and burning, as well as batched variants. * * The same hook is called on both single and batched variants. For single * transfers, the length of the `id` and `amount` arrays will be 1. * * Calling conditions (for each `id` and `amount` pair): * * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens * of token type `id` will be transferred to `to`. * - When `from` is zero, `amount` tokens of token type `id` will be minted * for `to`. * - when `to` is zero, `amount` of ``from``'s tokens of token type `id` * will be burned. * - `from` and `to` are never both zero. * - `ids` and `amounts` have the same, non-zero length. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual {} function _doSafeTransferAcceptanceCheck( address operator, address from, address to, uint256 id, uint256 amount, bytes memory data ) private { if (to.isContract()) { try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) { if (response != IERC1155Receiver.onERC1155Received.selector) { revert("ERC1155: ERC1155Receiver rejected tokens"); } } catch Error(string memory reason) { revert(reason); } catch { revert("ERC1155: transfer to non ERC1155Receiver implementer"); } } } function _doSafeBatchTransferAcceptanceCheck( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) private { if (to.isContract()) { try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns ( bytes4 response ) { if (response != IERC1155Receiver.onERC1155BatchReceived.selector) { revert("ERC1155: ERC1155Receiver rejected tokens"); } } catch Error(string memory reason) { revert(reason); } catch { revert("ERC1155: transfer to non ERC1155Receiver implementer"); } } } function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) { uint256[] memory array = new uint256[](1); array[0] = element; return array; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/ERC1155Burnable.sol) pragma solidity ^0.8.0; import "../ERC1155.sol"; /** * @dev Extension of {ERC1155} that allows token holders to destroy both their * own tokens and those that they have been approved to use. * * _Available since v3.1._ */ abstract contract ERC1155Burnable is ERC1155 { function burn( address account, uint256 id, uint256 value ) public virtual { require( account == _msgSender() || isApprovedForAll(account, _msgSender()), "ERC1155: caller is not owner nor approved" ); _burn(account, id, value); } function burnBatch( address account, uint256[] memory ids, uint256[] memory values ) public virtual { require( account == _msgSender() || isApprovedForAll(account, _msgSender()), "ERC1155: caller is not owner nor approved" ); _burnBatch(account, ids, values); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/ERC1155Pausable.sol) pragma solidity ^0.8.0; import "../ERC1155.sol"; import "../../../security/Pausable.sol"; /** * @dev ERC1155 token with pausable token transfers, minting and burning. * * Useful for scenarios such as preventing trades until the end of an evaluation * period, or having an emergency switch for freezing all token transfers in the * event of a large bug. * * _Available since v3.1._ */ abstract contract ERC1155Pausable is ERC1155, Pausable { /** * @dev See {ERC1155-_beforeTokenTransfer}. * * Requirements: * * - the contract must not be paused. */ function _beforeTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual override { super._beforeTokenTransfer(operator, from, to, ids, amounts, data); require(!paused(), "ERC1155Pausable: token transfer while paused"); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (access/AccessControlEnumerable.sol) pragma solidity ^0.8.0; import "./IAccessControlEnumerable.sol"; import "./AccessControl.sol"; import "../utils/structs/EnumerableSet.sol"; /** * @dev Extension of {AccessControl} that allows enumerating the members of each role. */ abstract contract AccessControlEnumerable is IAccessControlEnumerable, AccessControl { using EnumerableSet for EnumerableSet.AddressSet; mapping(bytes32 => EnumerableSet.AddressSet) private _roleMembers; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControlEnumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns one of the accounts that have `role`. `index` must be a * value between 0 and {getRoleMemberCount}, non-inclusive. * * Role bearers are not sorted in any particular way, and their ordering may * change at any point. * * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure * you perform all queries on the same block. See the following * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post] * for more information. */ function getRoleMember(bytes32 role, uint256 index) public view virtual 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 virtual override returns (uint256) { return _roleMembers[role].length(); } /** * @dev Overload {_grantRole} to track enumerable memberships */ function _grantRole(bytes32 role, address account) internal virtual override { super._grantRole(role, account); _roleMembers[role].add(account); } /** * @dev Overload {_revokeRole} to track enumerable memberships */ function _revokeRole(bytes32 role, address account) internal virtual override { super._revokeRole(role, account); _roleMembers[role].remove(account); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC1155/IERC1155.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC1155 compliant contract, as defined in the * https://eips.ethereum.org/EIPS/eip-1155[EIP]. * * _Available since v3.1._ */ interface IERC1155 is IERC165 { /** * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`. */ event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value); /** * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all * transfers. */ event TransferBatch( address indexed operator, address indexed from, address indexed to, uint256[] ids, uint256[] values ); /** * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to * `approved`. */ event ApprovalForAll(address indexed account, address indexed operator, bool approved); /** * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI. * * If an {URI} event was emitted for `id`, the standard * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value * returned by {IERC1155MetadataURI-uri}. */ event URI(string value, uint256 indexed id); /** * @dev Returns the amount of tokens of token type `id` owned by `account`. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) external view returns (uint256); /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids) external view returns (uint256[] memory); /** * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`, * * Emits an {ApprovalForAll} event. * * Requirements: * * - `operator` cannot be the caller. */ function setApprovalForAll(address operator, bool approved) external; /** * @dev Returns true if `operator` is approved to transfer ``account``'s tokens. * * See {setApprovalForAll}. */ function isApprovedForAll(address account, address operator) external view returns (bool); /** * @dev Transfers `amount` tokens of token type `id` from `from` to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - If the caller is not `from`, it must be have been approved to spend ``from``'s tokens via {setApprovalForAll}. * - `from` must have a balance of tokens of type `id` of at least `amount`. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes calldata data ) external; /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}. * * Emits a {TransferBatch} event. * * Requirements: * * - `ids` and `amounts` must have the same length. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function safeBatchTransferFrom( address from, address to, uint256[] calldata ids, uint256[] calldata amounts, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/IERC1155Receiver.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev _Available since v3.1._ */ interface IERC1155Receiver is IERC165 { /** * @dev Handles the receipt of a single ERC1155 token type. This function is * called at the end of a `safeTransferFrom` after the balance has been updated. * * NOTE: To accept the transfer, this must return * `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` * (i.e. 0xf23a6e61, or its own function selector). * * @param operator The address which initiated the transfer (i.e. msg.sender) * @param from The address which previously owned the token * @param id The ID of the token being transferred * @param value The amount of tokens being transferred * @param data Additional data with no specified format * @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed */ function onERC1155Received( address operator, address from, uint256 id, uint256 value, bytes calldata data ) external returns (bytes4); /** * @dev Handles the receipt of a multiple ERC1155 token types. This function * is called at the end of a `safeBatchTransferFrom` after the balances have * been updated. * * NOTE: To accept the transfer(s), this must return * `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` * (i.e. 0xbc197c81, or its own function selector). * * @param operator The address which initiated the batch transfer (i.e. msg.sender) * @param from The address which previously owned the token * @param ids An array containing ids of each token being transferred (order and length must match values array) * @param values An array containing amounts of each token being transferred (order and length must match ids array) * @param data Additional data with no specified format * @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed */ function onERC1155BatchReceived( address operator, address from, uint256[] calldata ids, uint256[] calldata values, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol) pragma solidity ^0.8.0; import "../IERC1155.sol"; /** * @dev Interface of the optional ERC1155MetadataExtension interface, as defined * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP]. * * _Available since v3.1._ */ interface IERC1155MetadataURI is IERC1155 { /** * @dev Returns the URI for token type `id`. * * If the `\{id\}` substring is present in the URI, it must be replaced by * clients with the actual token type ID. */ function uri(uint256 id) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/Pausable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/IAccessControlEnumerable.sol) pragma solidity ^0.8.0; import "./IAccessControl.sol"; /** * @dev External interface of AccessControlEnumerable declared to support ERC165 detection. */ interface IAccessControlEnumerable is IAccessControl { /** * @dev Returns one of the accounts that have `role`. `index` must be a * value between 0 and {getRoleMemberCount}, non-inclusive. * * Role bearers are not sorted in any particular way, and their ordering may * change at any point. * * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure * you perform all queries on the same block. See the following * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post] * for more information. */ function getRoleMember(bytes32 role, uint256 index) external view returns (address); /** * @dev Returns the number of accounts that have `role`. Can be used * together with {getRoleMember} to enumerate all bearers of a role. */ function getRoleMemberCount(bytes32 role) external view returns (uint256); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (access/AccessControl.sol) pragma solidity ^0.8.0; import "./IAccessControl.sol"; import "../utils/Context.sol"; import "../utils/Strings.sol"; import "../utils/introspection/ERC165.sol"; /** * @dev Contract module that allows children to implement role-based access * control mechanisms. This is a lightweight version that doesn't allow enumerating role * members except through off-chain means by accessing the contract event logs. Some * applications may benefit from on-chain enumerability, for those cases see * {AccessControlEnumerable}. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ``` * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ``` * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. */ abstract contract AccessControl is Context, IAccessControl, ERC165 { struct RoleData { mapping(address => bool) members; bytes32 adminRole; } mapping(bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Modifier that checks that an account has a specific role. Reverts * with a standardized message including the required role. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ * * _Available since v4.1._ */ modifier onlyRole(bytes32 role) { _checkRole(role, _msgSender()); _; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view virtual override returns (bool) { return _roles[role].members[account]; } /** * @dev Revert with a standard message if `account` is missing `role`. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ */ function _checkRole(bytes32 role, address account) internal view virtual { if (!hasRole(role, account)) { revert( string( abi.encodePacked( "AccessControl: account ", Strings.toHexString(uint160(account), 20), " is missing role ", Strings.toHexString(uint256(role), 32) ) ) ); } } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view virtual override returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been revoked `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) public virtual override { require(account == _msgSender(), "AccessControl: can only renounce roles for self"); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== * * NOTE: This function is deprecated in favor of {_grantRole}. */ function _setupRole(bytes32 role, address account) internal virtual { _grantRole(role, account); } /** * @dev Sets `adminRole` as ``role``'s admin role. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { bytes32 previousAdminRole = getRoleAdmin(role); _roles[role].adminRole = adminRole; emit RoleAdminChanged(role, previousAdminRole, adminRole); } /** * @dev Grants `role` to `account`. * * Internal function without access restriction. */ function _grantRole(bytes32 role, address account) internal virtual { if (!hasRole(role, account)) { _roles[role].members[account] = true; emit RoleGranted(role, account, _msgSender()); } } /** * @dev Revokes `role` from `account`. * * Internal function without access restriction. */ function _revokeRole(bytes32 role, address account) internal virtual { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/structs/EnumerableSet.sol) pragma solidity ^0.8.0; /** * @dev Library for managing * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive * types. * * Sets have the following properties: * * - Elements are added, removed, and checked for existence in constant time * (O(1)). * - Elements are enumerated in O(n). No guarantees are made on the ordering. * * ``` * contract Example { * // Add the library methods * using EnumerableSet for EnumerableSet.AddressSet; * * // Declare a set state variable * EnumerableSet.AddressSet private mySet; * } * ``` * * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`) * and `uint256` (`UintSet`) are supported. */ library EnumerableSet { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Set type with // bytes32 values. // The Set implementation uses private functions, and user-facing // implementations (such as AddressSet) are just wrappers around the // underlying Set. // This means that we can only create new EnumerableSets for types that fit // in bytes32. struct Set { // Storage of set values bytes32[] _values; // Position of the value in the `values` array, plus 1 because index 0 // means a value is not in the set. mapping(bytes32 => uint256) _indexes; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function _add(Set storage set, bytes32 value) private returns (bool) { if (!_contains(set, value)) { set._values.push(value); // The value is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value set._indexes[value] = set._values.length; return true; } else { return false; } } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function _remove(Set storage set, bytes32 value) private returns (bool) { // We read and store the value's index to prevent multiple reads from the same storage slot uint256 valueIndex = set._indexes[value]; if (valueIndex != 0) { // Equivalent to contains(set, value) // To delete an element from the _values array in O(1), we swap the element to delete with the last one in // the array, and then remove the last element (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = valueIndex - 1; uint256 lastIndex = set._values.length - 1; if (lastIndex != toDeleteIndex) { bytes32 lastvalue = set._values[lastIndex]; // Move the last value to the index where the value to delete is set._values[toDeleteIndex] = lastvalue; // Update the index for the moved value set._indexes[lastvalue] = valueIndex; // Replace lastvalue's index to valueIndex } // Delete the slot where the moved value was stored set._values.pop(); // Delete the index for the deleted slot delete set._indexes[value]; return true; } else { return false; } } /** * @dev Returns true if the value is in the set. O(1). */ function _contains(Set storage set, bytes32 value) private view returns (bool) { return set._indexes[value] != 0; } /** * @dev Returns the number of values on the set. O(1). */ function _length(Set storage set) private view returns (uint256) { return set._values.length; } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Set storage set, uint256 index) private view returns (bytes32) { return set._values[index]; } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function _values(Set storage set) private view returns (bytes32[] memory) { return set._values; } // Bytes32Set struct Bytes32Set { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _add(set._inner, value); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _remove(set._inner, value); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) { return _contains(set._inner, value); } /** * @dev Returns the number of values in the set. O(1). */ function length(Bytes32Set storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) { return _at(set._inner, index); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(Bytes32Set storage set) internal view returns (bytes32[] memory) { return _values(set._inner); } // AddressSet struct AddressSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(AddressSet storage set, address value) internal returns (bool) { return _add(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(AddressSet storage set, address value) internal returns (bool) { return _remove(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(AddressSet storage set, address value) internal view returns (bool) { return _contains(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns the number of values in the set. O(1). */ function length(AddressSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(AddressSet storage set, uint256 index) internal view returns (address) { return address(uint160(uint256(_at(set._inner, index)))); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(AddressSet storage set) internal view returns (address[] memory) { bytes32[] memory store = _values(set._inner); address[] memory result; assembly { result := store } return result; } // UintSet struct UintSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(UintSet storage set, uint256 value) internal returns (bool) { return _add(set._inner, bytes32(value)); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(UintSet storage set, uint256 value) internal returns (bool) { return _remove(set._inner, bytes32(value)); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(UintSet storage set, uint256 value) internal view returns (bool) { return _contains(set._inner, bytes32(value)); } /** * @dev Returns the number of values on the set. O(1). */ function length(UintSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintSet storage set, uint256 index) internal view returns (uint256) { return uint256(_at(set._inner, index)); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(UintSet storage set) internal view returns (uint256[] memory) { bytes32[] memory store = _values(set._inner); uint256[] memory result; assembly { result := store } return result; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol) pragma solidity ^0.8.0; /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControl { /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. * * _Available since v3.1._ */ event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {AccessControl-_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) external view returns (bool); /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {AccessControl-_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) external view returns (bytes32); /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) external; /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) external; /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
{ "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":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"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":"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":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"burnBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"mintBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"to","type":"address[]"},{"internalType":"uint256[]","name":"id","type":"uint256[]"},{"internalType":"uint256[]","name":"amount","type":"uint256[]"}],"name":"mintMass","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newuri","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newuri","type":"string"}],"name":"setUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","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
60806040526040518060400160405280601e81526020017f353269636f6e73202d205261696e657220486f7363682047656e657369730000815250600690805190602001906200005192919062000589565b506040518060400160405280600381526020017f3532690000000000000000000000000000000000000000000000000000000000815250600790805190602001906200009f92919062000589565b50604051806060016040528060248152602001620062936024913960089080519060200190620000d192919062000589565b50348015620000df57600080fd5b506040518060400160405280602081526020017f68747470733a2f2f6e66742e7261696e6572686f7363682e636f6d2f7b69647d8152508062000128816200021160201b60201c565b506000600560006101000a81548160ff021916908315150217905550620001686000801b6200015c6200022d60201b60201c565b6200023560201b60201c565b620001a97f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66200019d6200022d60201b60201c565b6200023560201b60201c565b620001ea7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a620001de6200022d60201b60201c565b6200023560201b60201c565b506200020b620001ff6200022d60201b60201c565b6200024b60201b60201c565b6200069e565b80600490805190602001906200022992919062000589565b5050565b600033905090565b6200024782826200031160201b60201c565b5050565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200032882826200035960201b620017d71760201c565b6200035481600160008581526020019081526020016000206200044a60201b620018b71790919060201c565b505050565b6200036b82826200048260201b60201c565b6200044657600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620003eb6200022d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b60006200047a836000018373ffffffffffffffffffffffffffffffffffffffff1660001b620004ec60201b60201c565b905092915050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60006200050083836200056660201b60201c565b6200055b57826000018290806001815401808255809150506001900390600052602060002001600090919091909150558260000180549050836001016000848152602001908152602001600020819055506001905062000560565b600090505b92915050565b600080836001016000848152602001908152602001600020541415905092915050565b828054620005979062000639565b90600052602060002090601f016020900481019282620005bb576000855562000607565b82601f10620005d657805160ff191683800117855562000607565b8280016001018555821562000607579182015b8281111562000606578251825591602001919060010190620005e9565b5b5090506200061691906200061a565b5090565b5b80821115620006355760008160009055506001016200061b565b5090565b600060028204905060018216806200065257607f821691505b602082108114156200066957620006686200066f565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b615be580620006ae6000396000f3fe608060405234801561001057600080fd5b50600436106102105760003560e01c80638da5cb5b11610125578063ca15c873116100ad578063e8a3d4851161007c578063e8a3d485146105d7578063e985e9c5146105f5578063f242432a14610625578063f2fde38b14610641578063f5298aca1461065d57610210565b8063ca15c8731461054f578063d53913931461057f578063d547741f1461059d578063e63ab1e9146105b957610210565b806395d89b41116100f457806395d89b41146104bd5780639b642de1146104db578063a217fddf146104f7578063a22cb46514610515578063c0e24d5e1461053157610210565b80638da5cb5b146104235780639010d07c1461044157806391d1485414610471578063938e3d7b146104a157610210565b806336568abe116101a85780636b20c454116101775780636b20c454146103bb578063715018a6146103d7578063731133e9146103e15780638456cb59146103fd5780638726458a1461040757610210565b806336568abe146103475780633f4ba83a146103635780634e1273f41461036d5780635c975abb1461039d57610210565b80631f7fdffa116101e45780631f7fdffa146102c3578063248a9ca3146102df5780632eb2c2d61461030f5780632f2ff15d1461032b57610210565b8062fdd58e1461021557806301ffc9a71461024557806306fdde03146102755780630e89341c14610293575b600080fd5b61022f600480360381019061022a91906140ec565b610679565b60405161023c9190614e4f565b60405180910390f35b61025f600480360381019061025a9190614396565b610743565b60405161026c9190614ad7565b60405180910390f35b61027d610755565b60405161028a9190614b0d565b60405180910390f35b6102ad60048036038101906102a89190614429565b6107e3565b6040516102ba9190614b0d565b60405180910390f35b6102dd60048036038101906102d89190614005565b610877565b005b6102f960048036038101906102f491906142f5565b6108f9565b6040516103069190614af2565b60405180910390f35b61032960048036038101906103249190613e38565b610918565b005b6103456004803603810190610340919061431e565b6109b9565b005b610361600480360381019061035c919061431e565b6109e2565b005b61036b610a65565b005b610387600480360381019061038291906141f2565b610adf565b6040516103949190614a7e565b60405180910390f35b6103a5610c90565b6040516103b29190614ad7565b60405180910390f35b6103d560048036038101906103d09190613f86565b610ca7565b005b6103df610d44565b005b6103fb60048036038101906103f69190614177565b610dcc565b005b610405610e4e565b005b610421600480360381019061041c919061425e565b610ec8565b005b61042b6110cc565b60405161043891906149a1565b60405180910390f35b61045b6004803603810190610456919061435a565b6110f6565b60405161046891906149a1565b60405180910390f35b61048b6004803603810190610486919061431e565b611125565b6040516104989190614ad7565b60405180910390f35b6104bb60048036038101906104b691906143e8565b61118f565b005b6104c5611225565b6040516104d29190614b0d565b60405180910390f35b6104f560048036038101906104f091906143e8565b6112b3565b005b6104ff61133b565b60405161050c9190614af2565b60405180910390f35b61052f600480360381019061052a91906140b0565b611342565b005b610539611358565b6040516105469190614b0d565b60405180910390f35b610569600480360381019061056491906142f5565b6113e6565b6040516105769190614e4f565b60405180910390f35b61058761140a565b6040516105949190614af2565b60405180910390f35b6105b760048036038101906105b2919061431e565b61142e565b005b6105c1611457565b6040516105ce9190614af2565b60405180910390f35b6105df61147b565b6040516105ec9190614b0d565b60405180910390f35b61060f600480360381019061060a9190613dfc565b61150d565b60405161061c9190614ad7565b60405180910390f35b61063f600480360381019061063a9190613ef7565b6115a1565b005b61065b60048036038101906106569190613dd3565b611642565b005b61067760048036038101906106729190614128565b61173a565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156106ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106e190614bcf565b60405180910390fd5b6002600083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600061074e826118e7565b9050919050565b60068054610762906151bc565b80601f016020809104026020016040519081016040528092919081815260200182805461078e906151bc565b80156107db5780601f106107b0576101008083540402835291602001916107db565b820191906000526020600020905b8154815290600101906020018083116107be57829003601f168201915b505050505081565b6060600480546107f2906151bc565b80601f016020809104026020016040519081016040528092919081815260200182805461081e906151bc565b801561086b5780601f106108405761010080835404028352916020019161086b565b820191906000526020600020905b81548152906001019060200180831161084e57829003601f168201915b50505050509050919050565b6108a87f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66108a36119c9565b611125565b6108e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108de90614cef565b60405180910390fd5b6108f3848484846119d1565b50505050565b6000806000838152602001908152602001600020600101549050919050565b6109206119c9565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806109665750610965856109606119c9565b61150d565b5b6109a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099c90614caf565b60405180910390fd5b6109b28585858585611c3c565b5050505050565b6109c2826108f9565b6109d3816109ce6119c9565b611f9f565b6109dd838361203c565b505050565b6109ea6119c9565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4e90614e2f565b60405180910390fd5b610a618282612070565b5050565b610a967f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610a916119c9565b611125565b610ad5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610acc90614d6f565b60405180910390fd5b610add6120a4565b565b60608151835114610b25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1c90614dcf565b60405180910390fd5b6000835167ffffffffffffffff811115610b68577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610b965781602001602082028036833780820191505090505b50905060005b8451811015610c8557610c2f858281518110610be1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151858381518110610c22577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151610679565b828281518110610c68577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080610c7e9061521f565b9050610b9c565b508091505092915050565b6000600560009054906101000a900460ff16905090565b610caf6119c9565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610cf55750610cf483610cef6119c9565b61150d565b5b610d34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2b90614c4f565b60405180910390fd5b610d3f838383612146565b505050565b610d4c6119c9565b73ffffffffffffffffffffffffffffffffffffffff16610d6a6110cc565b73ffffffffffffffffffffffffffffffffffffffff1614610dc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db790614d2f565b60405180910390fd5b610dca6000612445565b565b610dfd7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6610df86119c9565b611125565b610e3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3390614cef565b60405180910390fd5b610e488484848461250b565b50505050565b610e7f7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610e7a6119c9565b611125565b610ebe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb590614d8f565b60405180910390fd5b610ec66126a2565b565b610ed06119c9565b73ffffffffffffffffffffffffffffffffffffffff16610eee6110cc565b73ffffffffffffffffffffffffffffffffffffffff1614610f44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3b90614d2f565b60405180910390fd5b8151835114610f88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7f90614d4f565b60405180910390fd5b8051835114610fcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc390614b4f565b60405180910390fd5b60005b83518110156110c6576110b3848281518110611014577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151848381518110611055577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151848481518110611096577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516040518060200160405280600081525061250b565b80806110be9061521f565b915050610fcf565b50505050565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600061111d826001600086815260200190815260200160002061274590919063ffffffff16565b905092915050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6111976119c9565b73ffffffffffffffffffffffffffffffffffffffff166111b56110cc565b73ffffffffffffffffffffffffffffffffffffffff161461120b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120290614d2f565b60405180910390fd5b8060089080519060200190611221929190613ab6565b5050565b60078054611232906151bc565b80601f016020809104026020016040519081016040528092919081815260200182805461125e906151bc565b80156112ab5780601f10611280576101008083540402835291602001916112ab565b820191906000526020600020905b81548152906001019060200180831161128e57829003601f168201915b505050505081565b6112bb6119c9565b73ffffffffffffffffffffffffffffffffffffffff166112d96110cc565b73ffffffffffffffffffffffffffffffffffffffff161461132f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132690614d2f565b60405180910390fd5b6113388161275f565b50565b6000801b81565b61135461134d6119c9565b8383612779565b5050565b60088054611365906151bc565b80601f0160208091040260200160405190810160405280929190818152602001828054611391906151bc565b80156113de5780601f106113b3576101008083540402835291602001916113de565b820191906000526020600020905b8154815290600101906020018083116113c157829003601f168201915b505050505081565b6000611403600160008481526020019081526020016000206128e6565b9050919050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b611437826108f9565b611448816114436119c9565b611f9f565b6114528383612070565b505050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b60606008805461148a906151bc565b80601f01602080910402602001604051908101604052809291908181526020018280546114b6906151bc565b80156115035780601f106114d857610100808354040283529160200191611503565b820191906000526020600020905b8154815290600101906020018083116114e657829003601f168201915b5050505050905090565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6115a96119c9565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806115ef57506115ee856115e96119c9565b61150d565b5b61162e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162590614c4f565b60405180910390fd5b61163b85858585856128fb565b5050505050565b61164a6119c9565b73ffffffffffffffffffffffffffffffffffffffff166116686110cc565b73ffffffffffffffffffffffffffffffffffffffff16146116be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b590614d2f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561172e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172590614bef565b60405180910390fd5b61173781612445565b50565b6117426119c9565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806117885750611787836117826119c9565b61150d565b5b6117c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117be90614c4f565b60405180910390fd5b6117d2838383612b80565b505050565b6117e18282611125565b6118b357600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506118586119c9565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b60006118df836000018373ffffffffffffffffffffffffffffffffffffffff1660001b612d9f565b905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806119b257507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806119c257506119c182612e0f565b5b9050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611a41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3890614e0f565b60405180910390fd5b8151835114611a85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7c90614def565b60405180910390fd5b6000611a8f6119c9565b9050611aa081600087878787612e89565b60005b8451811015611ba657838181518110611ae5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015160026000878481518110611b2a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b8c9190614fee565b925050819055508080611b9e9061521f565b915050611aa3565b508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611c1e929190614aa0565b60405180910390a4611c3581600087878787612e9f565b5050505050565b8151835114611c80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7790614def565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611cf0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce790614c8f565b60405180910390fd5b6000611cfa6119c9565b9050611d0a818787878787612e89565b60005b8451811015611f0a576000858281518110611d51577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190506000858381518110611d96577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151905060006002600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611e38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2f90614d0f565b60405180910390fd5b8181036002600085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816002600085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611eef9190614fee565b9250508190555050505080611f039061521f565b9050611d0d565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611f81929190614aa0565b60405180910390a4611f97818787878787612e9f565b505050505050565b611fa98282611125565b61203857611fce8173ffffffffffffffffffffffffffffffffffffffff166014613086565b611fdc8360001c6020613086565b604051602001611fed929190614967565b6040516020818303038152906040526040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202f9190614b0d565b60405180910390fd5b5050565b61204682826117d7565b61206b81600160008581526020019081526020016000206118b790919063ffffffff16565b505050565b61207a8282613380565b61209f816001600085815260200190815260200160002061346190919063ffffffff16565b505050565b6120ac610c90565b6120eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e290614baf565b60405180910390fd5b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61212f6119c9565b60405161213c91906149a1565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156121b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ad90614ccf565b60405180910390fd5b80518251146121fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f190614def565b60405180910390fd5b60006122046119c9565b905061222481856000868660405180602001604052806000815250612e89565b60005b83518110156123bf57600084828151811061226b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151905060008483815181106122b0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151905060006002600084815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612352576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234990614c0f565b60405180910390fd5b8181036002600085815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050505080806123b79061521f565b915050612227565b50600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051612437929190614aa0565b60405180910390a450505050565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561257b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257290614e0f565b60405180910390fd5b60006125856119c9565b90506125a68160008761259788613491565b6125a088613491565b87612e89565b826002600086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126069190614fee565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051612684929190614e6a565b60405180910390a461269b81600087878787613557565b5050505050565b6126aa610c90565b156126ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126e190614c6f565b60405180910390fd5b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861272e6119c9565b60405161273b91906149a1565b60405180910390a1565b6000612754836000018361373e565b60001c905092915050565b8060049080519060200190612775929190613ab6565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156127e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127df90614daf565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516128d99190614ad7565b60405180910390a3505050565b60006128f48260000161378f565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561296b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161296290614c8f565b60405180910390fd5b60006129756119c9565b905061299581878761298688613491565b61298f88613491565b87612e89565b60006002600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015612a2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2490614d0f565b60405180910390fd5b8381036002600087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550836002600087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612ae49190614fee565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628888604051612b61929190614e6a565b60405180910390a4612b77828888888888613557565b50505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612bf0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612be790614ccf565b60405180910390fd5b6000612bfa6119c9565b9050612c2a81856000612c0c87613491565b612c1587613491565b60405180602001604052806000815250612e89565b60006002600085815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015612cc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cb990614c0f565b60405180910390fd5b8281036002600086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051612d90929190614e6a565b60405180910390a45050505050565b6000612dab83836137a0565b612e04578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050612e09565b600090505b92915050565b60007f5a05180f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612e825750612e81826137c3565b5b9050919050565b612e9786868686868661383d565b505050505050565b612ebe8473ffffffffffffffffffffffffffffffffffffffff1661389b565b1561307e578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401612f049594939291906149bc565b602060405180830381600087803b158015612f1e57600080fd5b505af1925050508015612f4f57506040513d601f19601f82011682018060405250810190612f4c91906143bf565b60015b612ff557612f5b6152f5565b806308c379a01415612fb85750612f70615aa6565b80612f7b5750612fba565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612faf9190614b0d565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fec90614b2f565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161461307c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161307390614b8f565b60405180910390fd5b505b505050505050565b6060600060028360026130999190615044565b6130a39190614fee565b67ffffffffffffffff8111156130e2577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156131145781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110613172577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f7800000000000000000000000000000000000000000000000000000000000000816001815181106131fc577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506000600184600261323c9190615044565b6132469190614fee565b90505b6001811115613332577f3031323334353637383961626364656600000000000000000000000000000000600f8616601081106132ae577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b8282815181106132eb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c94508061332b90615192565b9050613249565b5060008414613376576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161336d90614b6f565b60405180910390fd5b8091505092915050565b61338a8282611125565b1561345d57600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506134026119c9565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b6000613489836000018373ffffffffffffffffffffffffffffffffffffffff1660001b6138be565b905092915050565b60606000600167ffffffffffffffff8111156134d6577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156135045781602001602082028036833780820191505090505b5090508281600081518110613542577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080915050919050565b6135768473ffffffffffffffffffffffffffffffffffffffff1661389b565b15613736578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b81526004016135bc959493929190614a24565b602060405180830381600087803b1580156135d657600080fd5b505af192505050801561360757506040513d601f19601f8201168201806040525081019061360491906143bf565b60015b6136ad576136136152f5565b806308c379a014156136705750613628615aa6565b806136335750613672565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136679190614b0d565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136a490614b2f565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614613734576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161372b90614b8f565b60405180910390fd5b505b505050505050565b600082600001828154811061377c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905092915050565b600081600001805490509050919050565b600080836001016000848152602001908152602001600020541415905092915050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480613836575061383582613a44565b5b9050919050565b61384b868686868686613aae565b613853610c90565b15613893576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161388a90614c2f565b60405180910390fd5b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008083600101600084815260200190815260200160002054905060008114613a385760006001826138f0919061509e565b9050600060018660000180549050613908919061509e565b90508181146139c357600086600001828154811061394f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905080876000018481548110613999577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508387600101600083815260200190815260200160002081905550505b856000018054806139fd577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050613a3e565b60009150505b92915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b505050505050565b828054613ac2906151bc565b90600052602060002090601f016020900481019282613ae45760008555613b2b565b82601f10613afd57805160ff1916838001178555613b2b565b82800160010185558215613b2b579182015b82811115613b2a578251825591602001919060010190613b0f565b5b509050613b389190613b3c565b5090565b5b80821115613b55576000816000905550600101613b3d565b5090565b6000613b6c613b6784614eb8565b614e93565b90508083825260208201905082856020860282011115613b8b57600080fd5b60005b85811015613bbb5781613ba18882613cad565b845260208401935060208301925050600181019050613b8e565b5050509392505050565b6000613bd8613bd384614ee4565b614e93565b90508083825260208201905082856020860282011115613bf757600080fd5b60005b85811015613c275781613c0d8882613dbe565b845260208401935060208301925050600181019050613bfa565b5050509392505050565b6000613c44613c3f84614f10565b614e93565b905082815260208101848484011115613c5c57600080fd5b613c67848285615150565b509392505050565b6000613c82613c7d84614f41565b614e93565b905082815260208101848484011115613c9a57600080fd5b613ca5848285615150565b509392505050565b600081359050613cbc81615b3c565b92915050565b600082601f830112613cd357600080fd5b8135613ce3848260208601613b59565b91505092915050565b600082601f830112613cfd57600080fd5b8135613d0d848260208601613bc5565b91505092915050565b600081359050613d2581615b53565b92915050565b600081359050613d3a81615b6a565b92915050565b600081359050613d4f81615b81565b92915050565b600081519050613d6481615b81565b92915050565b600082601f830112613d7b57600080fd5b8135613d8b848260208601613c31565b91505092915050565b600082601f830112613da557600080fd5b8135613db5848260208601613c6f565b91505092915050565b600081359050613dcd81615b98565b92915050565b600060208284031215613de557600080fd5b6000613df384828501613cad565b91505092915050565b60008060408385031215613e0f57600080fd5b6000613e1d85828601613cad565b9250506020613e2e85828601613cad565b9150509250929050565b600080600080600060a08688031215613e5057600080fd5b6000613e5e88828901613cad565b9550506020613e6f88828901613cad565b945050604086013567ffffffffffffffff811115613e8c57600080fd5b613e9888828901613cec565b935050606086013567ffffffffffffffff811115613eb557600080fd5b613ec188828901613cec565b925050608086013567ffffffffffffffff811115613ede57600080fd5b613eea88828901613d6a565b9150509295509295909350565b600080600080600060a08688031215613f0f57600080fd5b6000613f1d88828901613cad565b9550506020613f2e88828901613cad565b9450506040613f3f88828901613dbe565b9350506060613f5088828901613dbe565b925050608086013567ffffffffffffffff811115613f6d57600080fd5b613f7988828901613d6a565b9150509295509295909350565b600080600060608486031215613f9b57600080fd5b6000613fa986828701613cad565b935050602084013567ffffffffffffffff811115613fc657600080fd5b613fd286828701613cec565b925050604084013567ffffffffffffffff811115613fef57600080fd5b613ffb86828701613cec565b9150509250925092565b6000806000806080858703121561401b57600080fd5b600061402987828801613cad565b945050602085013567ffffffffffffffff81111561404657600080fd5b61405287828801613cec565b935050604085013567ffffffffffffffff81111561406f57600080fd5b61407b87828801613cec565b925050606085013567ffffffffffffffff81111561409857600080fd5b6140a487828801613d6a565b91505092959194509250565b600080604083850312156140c357600080fd5b60006140d185828601613cad565b92505060206140e285828601613d16565b9150509250929050565b600080604083850312156140ff57600080fd5b600061410d85828601613cad565b925050602061411e85828601613dbe565b9150509250929050565b60008060006060848603121561413d57600080fd5b600061414b86828701613cad565b935050602061415c86828701613dbe565b925050604061416d86828701613dbe565b9150509250925092565b6000806000806080858703121561418d57600080fd5b600061419b87828801613cad565b94505060206141ac87828801613dbe565b93505060406141bd87828801613dbe565b925050606085013567ffffffffffffffff8111156141da57600080fd5b6141e687828801613d6a565b91505092959194509250565b6000806040838503121561420557600080fd5b600083013567ffffffffffffffff81111561421f57600080fd5b61422b85828601613cc2565b925050602083013567ffffffffffffffff81111561424857600080fd5b61425485828601613cec565b9150509250929050565b60008060006060848603121561427357600080fd5b600084013567ffffffffffffffff81111561428d57600080fd5b61429986828701613cc2565b935050602084013567ffffffffffffffff8111156142b657600080fd5b6142c286828701613cec565b925050604084013567ffffffffffffffff8111156142df57600080fd5b6142eb86828701613cec565b9150509250925092565b60006020828403121561430757600080fd5b600061431584828501613d2b565b91505092915050565b6000806040838503121561433157600080fd5b600061433f85828601613d2b565b925050602061435085828601613cad565b9150509250929050565b6000806040838503121561436d57600080fd5b600061437b85828601613d2b565b925050602061438c85828601613dbe565b9150509250929050565b6000602082840312156143a857600080fd5b60006143b684828501613d40565b91505092915050565b6000602082840312156143d157600080fd5b60006143df84828501613d55565b91505092915050565b6000602082840312156143fa57600080fd5b600082013567ffffffffffffffff81111561441457600080fd5b61442084828501613d94565b91505092915050565b60006020828403121561443b57600080fd5b600061444984828501613dbe565b91505092915050565b600061445e8383614949565b60208301905092915050565b614473816150d2565b82525050565b600061448482614f82565b61448e8185614fb0565b935061449983614f72565b8060005b838110156144ca5781516144b18882614452565b97506144bc83614fa3565b92505060018101905061449d565b5085935050505092915050565b6144e0816150e4565b82525050565b6144ef816150f0565b82525050565b600061450082614f8d565b61450a8185614fc1565b935061451a81856020860161515f565b61452381615317565b840191505092915050565b600061453982614f98565b6145438185614fd2565b935061455381856020860161515f565b61455c81615317565b840191505092915050565b600061457282614f98565b61457c8185614fe3565b935061458c81856020860161515f565b80840191505092915050565b60006145a5603483614fd2565b91506145b082615335565b604082019050919050565b60006145c8602c83614fd2565b91506145d382615384565b604082019050919050565b60006145eb602083614fd2565b91506145f6826153d3565b602082019050919050565b600061460e602883614fd2565b9150614619826153fc565b604082019050919050565b6000614631601483614fd2565b915061463c8261544b565b602082019050919050565b6000614654602b83614fd2565b915061465f82615474565b604082019050919050565b6000614677602683614fd2565b9150614682826154c3565b604082019050919050565b600061469a602483614fd2565b91506146a582615512565b604082019050919050565b60006146bd602c83614fd2565b91506146c882615561565b604082019050919050565b60006146e0602983614fd2565b91506146eb826155b0565b604082019050919050565b6000614703601083614fd2565b915061470e826155ff565b602082019050919050565b6000614726602583614fd2565b915061473182615628565b604082019050919050565b6000614749603283614fd2565b915061475482615677565b604082019050919050565b600061476c602383614fd2565b9150614777826156c6565b604082019050919050565b600061478f603883614fd2565b915061479a82615715565b604082019050919050565b60006147b2602a83614fd2565b91506147bd82615764565b604082019050919050565b60006147d5602083614fd2565b91506147e0826157b3565b602082019050919050565b60006147f8602883614fd2565b9150614803826157dc565b604082019050919050565b600061481b603b83614fd2565b91506148268261582b565b604082019050919050565b600061483e603983614fd2565b91506148498261587a565b604082019050919050565b6000614861601783614fe3565b915061486c826158c9565b601782019050919050565b6000614884602983614fd2565b915061488f826158f2565b604082019050919050565b60006148a7602983614fd2565b91506148b282615941565b604082019050919050565b60006148ca602883614fd2565b91506148d582615990565b604082019050919050565b60006148ed602183614fd2565b91506148f8826159df565b604082019050919050565b6000614910601183614fe3565b915061491b82615a2e565b601182019050919050565b6000614933602f83614fd2565b915061493e82615a57565b604082019050919050565b61495281615146565b82525050565b61496181615146565b82525050565b600061497282614854565b915061497e8285614567565b915061498982614903565b91506149958284614567565b91508190509392505050565b60006020820190506149b6600083018461446a565b92915050565b600060a0820190506149d1600083018861446a565b6149de602083018761446a565b81810360408301526149f08186614479565b90508181036060830152614a048185614479565b90508181036080830152614a1881846144f5565b90509695505050505050565b600060a082019050614a39600083018861446a565b614a46602083018761446a565b614a536040830186614958565b614a606060830185614958565b8181036080830152614a7281846144f5565b90509695505050505050565b60006020820190508181036000830152614a988184614479565b905092915050565b60006040820190508181036000830152614aba8185614479565b90508181036020830152614ace8184614479565b90509392505050565b6000602082019050614aec60008301846144d7565b92915050565b6000602082019050614b0760008301846144e6565b92915050565b60006020820190508181036000830152614b27818461452e565b905092915050565b60006020820190508181036000830152614b4881614598565b9050919050565b60006020820190508181036000830152614b68816145bb565b9050919050565b60006020820190508181036000830152614b88816145de565b9050919050565b60006020820190508181036000830152614ba881614601565b9050919050565b60006020820190508181036000830152614bc881614624565b9050919050565b60006020820190508181036000830152614be881614647565b9050919050565b60006020820190508181036000830152614c088161466a565b9050919050565b60006020820190508181036000830152614c288161468d565b9050919050565b60006020820190508181036000830152614c48816146b0565b9050919050565b60006020820190508181036000830152614c68816146d3565b9050919050565b60006020820190508181036000830152614c88816146f6565b9050919050565b60006020820190508181036000830152614ca881614719565b9050919050565b60006020820190508181036000830152614cc88161473c565b9050919050565b60006020820190508181036000830152614ce88161475f565b9050919050565b60006020820190508181036000830152614d0881614782565b9050919050565b60006020820190508181036000830152614d28816147a5565b9050919050565b60006020820190508181036000830152614d48816147c8565b9050919050565b60006020820190508181036000830152614d68816147eb565b9050919050565b60006020820190508181036000830152614d888161480e565b9050919050565b60006020820190508181036000830152614da881614831565b9050919050565b60006020820190508181036000830152614dc881614877565b9050919050565b60006020820190508181036000830152614de88161489a565b9050919050565b60006020820190508181036000830152614e08816148bd565b9050919050565b60006020820190508181036000830152614e28816148e0565b9050919050565b60006020820190508181036000830152614e4881614926565b9050919050565b6000602082019050614e646000830184614958565b92915050565b6000604082019050614e7f6000830185614958565b614e8c6020830184614958565b9392505050565b6000614e9d614eae565b9050614ea982826151ee565b919050565b6000604051905090565b600067ffffffffffffffff821115614ed357614ed26152c6565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614eff57614efe6152c6565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614f2b57614f2a6152c6565b5b614f3482615317565b9050602081019050919050565b600067ffffffffffffffff821115614f5c57614f5b6152c6565b5b614f6582615317565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614ff982615146565b915061500483615146565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561503957615038615268565b5b828201905092915050565b600061504f82615146565b915061505a83615146565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561509357615092615268565b5b828202905092915050565b60006150a982615146565b91506150b483615146565b9250828210156150c7576150c6615268565b5b828203905092915050565b60006150dd82615126565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561517d578082015181840152602081019050615162565b8381111561518c576000848401525b50505050565b600061519d82615146565b915060008214156151b1576151b0615268565b5b600182039050919050565b600060028204905060018216806151d457607f821691505b602082108114156151e8576151e7615297565b5b50919050565b6151f782615317565b810181811067ffffffffffffffff82111715615216576152156152c6565b5b80604052505050565b600061522a82615146565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561525d5761525c615268565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d11156153145760046000803e615311600051615328565b90505b90565b6000601f19601f8301169050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f436f6e747261637420496e666f3a20746f20616e6420616d6f756e74206c656e60008201527f677468206d69736d617463680000000000000000000000000000000000000000602082015250565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135355061757361626c653a20746f6b656e207472616e736665722060008201527f7768696c65207061757365640000000000000000000000000000000000000000602082015250565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135355072657365744d696e7465725061757365723a206d7573742060008201527f68617665206d696e74657220726f6c6520746f206d696e740000000000000000602082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f436f6e747261637420496e666f3a20746f20616e64206964206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135355072657365744d696e7465725061757365723a206d7573742060008201527f686176652070617573657220726f6c6520746f20756e70617573650000000000602082015250565b7f455243313135355072657365744d696e7465725061757365723a206d7573742060008201527f686176652070617573657220726f6c6520746f20706175736500000000000000602082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b600060443d1015615ab657615b39565b615abe614eae565b60043d036004823e80513d602482011167ffffffffffffffff82111715615ae6575050615b39565b808201805167ffffffffffffffff811115615b045750505050615b39565b80602083010160043d038501811115615b21575050505050615b39565b615b30826020018501866151ee565b82955050505050505b90565b615b45816150d2565b8114615b5057600080fd5b50565b615b5c816150e4565b8114615b6757600080fd5b50565b615b73816150f0565b8114615b7e57600080fd5b50565b615b8a816150fa565b8114615b9557600080fd5b50565b615ba181615146565b8114615bac57600080fd5b5056fea26469706673582212203091843761d0dcd3f7d4d9327ef47ac647fa6747b6cc61c1011d104256133aeb64736f6c6343000804003368747470733a2f2f6e66742e7261696e6572686f7363682e636f6d2f636f6e7472616374
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106102105760003560e01c80638da5cb5b11610125578063ca15c873116100ad578063e8a3d4851161007c578063e8a3d485146105d7578063e985e9c5146105f5578063f242432a14610625578063f2fde38b14610641578063f5298aca1461065d57610210565b8063ca15c8731461054f578063d53913931461057f578063d547741f1461059d578063e63ab1e9146105b957610210565b806395d89b41116100f457806395d89b41146104bd5780639b642de1146104db578063a217fddf146104f7578063a22cb46514610515578063c0e24d5e1461053157610210565b80638da5cb5b146104235780639010d07c1461044157806391d1485414610471578063938e3d7b146104a157610210565b806336568abe116101a85780636b20c454116101775780636b20c454146103bb578063715018a6146103d7578063731133e9146103e15780638456cb59146103fd5780638726458a1461040757610210565b806336568abe146103475780633f4ba83a146103635780634e1273f41461036d5780635c975abb1461039d57610210565b80631f7fdffa116101e45780631f7fdffa146102c3578063248a9ca3146102df5780632eb2c2d61461030f5780632f2ff15d1461032b57610210565b8062fdd58e1461021557806301ffc9a71461024557806306fdde03146102755780630e89341c14610293575b600080fd5b61022f600480360381019061022a91906140ec565b610679565b60405161023c9190614e4f565b60405180910390f35b61025f600480360381019061025a9190614396565b610743565b60405161026c9190614ad7565b60405180910390f35b61027d610755565b60405161028a9190614b0d565b60405180910390f35b6102ad60048036038101906102a89190614429565b6107e3565b6040516102ba9190614b0d565b60405180910390f35b6102dd60048036038101906102d89190614005565b610877565b005b6102f960048036038101906102f491906142f5565b6108f9565b6040516103069190614af2565b60405180910390f35b61032960048036038101906103249190613e38565b610918565b005b6103456004803603810190610340919061431e565b6109b9565b005b610361600480360381019061035c919061431e565b6109e2565b005b61036b610a65565b005b610387600480360381019061038291906141f2565b610adf565b6040516103949190614a7e565b60405180910390f35b6103a5610c90565b6040516103b29190614ad7565b60405180910390f35b6103d560048036038101906103d09190613f86565b610ca7565b005b6103df610d44565b005b6103fb60048036038101906103f69190614177565b610dcc565b005b610405610e4e565b005b610421600480360381019061041c919061425e565b610ec8565b005b61042b6110cc565b60405161043891906149a1565b60405180910390f35b61045b6004803603810190610456919061435a565b6110f6565b60405161046891906149a1565b60405180910390f35b61048b6004803603810190610486919061431e565b611125565b6040516104989190614ad7565b60405180910390f35b6104bb60048036038101906104b691906143e8565b61118f565b005b6104c5611225565b6040516104d29190614b0d565b60405180910390f35b6104f560048036038101906104f091906143e8565b6112b3565b005b6104ff61133b565b60405161050c9190614af2565b60405180910390f35b61052f600480360381019061052a91906140b0565b611342565b005b610539611358565b6040516105469190614b0d565b60405180910390f35b610569600480360381019061056491906142f5565b6113e6565b6040516105769190614e4f565b60405180910390f35b61058761140a565b6040516105949190614af2565b60405180910390f35b6105b760048036038101906105b2919061431e565b61142e565b005b6105c1611457565b6040516105ce9190614af2565b60405180910390f35b6105df61147b565b6040516105ec9190614b0d565b60405180910390f35b61060f600480360381019061060a9190613dfc565b61150d565b60405161061c9190614ad7565b60405180910390f35b61063f600480360381019061063a9190613ef7565b6115a1565b005b61065b60048036038101906106569190613dd3565b611642565b005b61067760048036038101906106729190614128565b61173a565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156106ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106e190614bcf565b60405180910390fd5b6002600083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600061074e826118e7565b9050919050565b60068054610762906151bc565b80601f016020809104026020016040519081016040528092919081815260200182805461078e906151bc565b80156107db5780601f106107b0576101008083540402835291602001916107db565b820191906000526020600020905b8154815290600101906020018083116107be57829003601f168201915b505050505081565b6060600480546107f2906151bc565b80601f016020809104026020016040519081016040528092919081815260200182805461081e906151bc565b801561086b5780601f106108405761010080835404028352916020019161086b565b820191906000526020600020905b81548152906001019060200180831161084e57829003601f168201915b50505050509050919050565b6108a87f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a66108a36119c9565b611125565b6108e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108de90614cef565b60405180910390fd5b6108f3848484846119d1565b50505050565b6000806000838152602001908152602001600020600101549050919050565b6109206119c9565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806109665750610965856109606119c9565b61150d565b5b6109a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099c90614caf565b60405180910390fd5b6109b28585858585611c3c565b5050505050565b6109c2826108f9565b6109d3816109ce6119c9565b611f9f565b6109dd838361203c565b505050565b6109ea6119c9565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4e90614e2f565b60405180910390fd5b610a618282612070565b5050565b610a967f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610a916119c9565b611125565b610ad5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610acc90614d6f565b60405180910390fd5b610add6120a4565b565b60608151835114610b25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1c90614dcf565b60405180910390fd5b6000835167ffffffffffffffff811115610b68577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610b965781602001602082028036833780820191505090505b50905060005b8451811015610c8557610c2f858281518110610be1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151858381518110610c22577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151610679565b828281518110610c68577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080610c7e9061521f565b9050610b9c565b508091505092915050565b6000600560009054906101000a900460ff16905090565b610caf6119c9565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610cf55750610cf483610cef6119c9565b61150d565b5b610d34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2b90614c4f565b60405180910390fd5b610d3f838383612146565b505050565b610d4c6119c9565b73ffffffffffffffffffffffffffffffffffffffff16610d6a6110cc565b73ffffffffffffffffffffffffffffffffffffffff1614610dc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db790614d2f565b60405180910390fd5b610dca6000612445565b565b610dfd7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6610df86119c9565b611125565b610e3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3390614cef565b60405180910390fd5b610e488484848461250b565b50505050565b610e7f7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610e7a6119c9565b611125565b610ebe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb590614d8f565b60405180910390fd5b610ec66126a2565b565b610ed06119c9565b73ffffffffffffffffffffffffffffffffffffffff16610eee6110cc565b73ffffffffffffffffffffffffffffffffffffffff1614610f44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3b90614d2f565b60405180910390fd5b8151835114610f88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7f90614d4f565b60405180910390fd5b8051835114610fcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc390614b4f565b60405180910390fd5b60005b83518110156110c6576110b3848281518110611014577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151848381518110611055577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151848481518110611096577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516040518060200160405280600081525061250b565b80806110be9061521f565b915050610fcf565b50505050565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600061111d826001600086815260200190815260200160002061274590919063ffffffff16565b905092915050565b600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6111976119c9565b73ffffffffffffffffffffffffffffffffffffffff166111b56110cc565b73ffffffffffffffffffffffffffffffffffffffff161461120b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120290614d2f565b60405180910390fd5b8060089080519060200190611221929190613ab6565b5050565b60078054611232906151bc565b80601f016020809104026020016040519081016040528092919081815260200182805461125e906151bc565b80156112ab5780601f10611280576101008083540402835291602001916112ab565b820191906000526020600020905b81548152906001019060200180831161128e57829003601f168201915b505050505081565b6112bb6119c9565b73ffffffffffffffffffffffffffffffffffffffff166112d96110cc565b73ffffffffffffffffffffffffffffffffffffffff161461132f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132690614d2f565b60405180910390fd5b6113388161275f565b50565b6000801b81565b61135461134d6119c9565b8383612779565b5050565b60088054611365906151bc565b80601f0160208091040260200160405190810160405280929190818152602001828054611391906151bc565b80156113de5780601f106113b3576101008083540402835291602001916113de565b820191906000526020600020905b8154815290600101906020018083116113c157829003601f168201915b505050505081565b6000611403600160008481526020019081526020016000206128e6565b9050919050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b611437826108f9565b611448816114436119c9565b611f9f565b6114528383612070565b505050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b60606008805461148a906151bc565b80601f01602080910402602001604051908101604052809291908181526020018280546114b6906151bc565b80156115035780601f106114d857610100808354040283529160200191611503565b820191906000526020600020905b8154815290600101906020018083116114e657829003601f168201915b5050505050905090565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6115a96119c9565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806115ef57506115ee856115e96119c9565b61150d565b5b61162e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162590614c4f565b60405180910390fd5b61163b85858585856128fb565b5050505050565b61164a6119c9565b73ffffffffffffffffffffffffffffffffffffffff166116686110cc565b73ffffffffffffffffffffffffffffffffffffffff16146116be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b590614d2f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561172e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172590614bef565b60405180910390fd5b61173781612445565b50565b6117426119c9565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806117885750611787836117826119c9565b61150d565b5b6117c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117be90614c4f565b60405180910390fd5b6117d2838383612b80565b505050565b6117e18282611125565b6118b357600160008084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506118586119c9565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b60006118df836000018373ffffffffffffffffffffffffffffffffffffffff1660001b612d9f565b905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806119b257507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806119c257506119c182612e0f565b5b9050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611a41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3890614e0f565b60405180910390fd5b8151835114611a85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7c90614def565b60405180910390fd5b6000611a8f6119c9565b9050611aa081600087878787612e89565b60005b8451811015611ba657838181518110611ae5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015160026000878481518110611b2a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b8c9190614fee565b925050819055508080611b9e9061521f565b915050611aa3565b508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611c1e929190614aa0565b60405180910390a4611c3581600087878787612e9f565b5050505050565b8151835114611c80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7790614def565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611cf0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce790614c8f565b60405180910390fd5b6000611cfa6119c9565b9050611d0a818787878787612e89565b60005b8451811015611f0a576000858281518110611d51577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190506000858381518110611d96577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151905060006002600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611e38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2f90614d0f565b60405180910390fd5b8181036002600085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816002600085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611eef9190614fee565b9250508190555050505080611f039061521f565b9050611d0d565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611f81929190614aa0565b60405180910390a4611f97818787878787612e9f565b505050505050565b611fa98282611125565b61203857611fce8173ffffffffffffffffffffffffffffffffffffffff166014613086565b611fdc8360001c6020613086565b604051602001611fed929190614967565b6040516020818303038152906040526040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202f9190614b0d565b60405180910390fd5b5050565b61204682826117d7565b61206b81600160008581526020019081526020016000206118b790919063ffffffff16565b505050565b61207a8282613380565b61209f816001600085815260200190815260200160002061346190919063ffffffff16565b505050565b6120ac610c90565b6120eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e290614baf565b60405180910390fd5b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61212f6119c9565b60405161213c91906149a1565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156121b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ad90614ccf565b60405180910390fd5b80518251146121fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f190614def565b60405180910390fd5b60006122046119c9565b905061222481856000868660405180602001604052806000815250612e89565b60005b83518110156123bf57600084828151811061226b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151905060008483815181106122b0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151905060006002600084815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612352576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234990614c0f565b60405180910390fd5b8181036002600085815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050505080806123b79061521f565b915050612227565b50600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051612437929190614aa0565b60405180910390a450505050565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561257b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257290614e0f565b60405180910390fd5b60006125856119c9565b90506125a68160008761259788613491565b6125a088613491565b87612e89565b826002600086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126069190614fee565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051612684929190614e6a565b60405180910390a461269b81600087878787613557565b5050505050565b6126aa610c90565b156126ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126e190614c6f565b60405180910390fd5b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861272e6119c9565b60405161273b91906149a1565b60405180910390a1565b6000612754836000018361373e565b60001c905092915050565b8060049080519060200190612775929190613ab6565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156127e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127df90614daf565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516128d99190614ad7565b60405180910390a3505050565b60006128f48260000161378f565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561296b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161296290614c8f565b60405180910390fd5b60006129756119c9565b905061299581878761298688613491565b61298f88613491565b87612e89565b60006002600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015612a2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2490614d0f565b60405180910390fd5b8381036002600087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550836002600087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612ae49190614fee565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628888604051612b61929190614e6a565b60405180910390a4612b77828888888888613557565b50505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612bf0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612be790614ccf565b60405180910390fd5b6000612bfa6119c9565b9050612c2a81856000612c0c87613491565b612c1587613491565b60405180602001604052806000815250612e89565b60006002600085815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015612cc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cb990614c0f565b60405180910390fd5b8281036002600086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051612d90929190614e6a565b60405180910390a45050505050565b6000612dab83836137a0565b612e04578260000182908060018154018082558091505060019003906000526020600020016000909190919091505582600001805490508360010160008481526020019081526020016000208190555060019050612e09565b600090505b92915050565b60007f5a05180f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612e825750612e81826137c3565b5b9050919050565b612e9786868686868661383d565b505050505050565b612ebe8473ffffffffffffffffffffffffffffffffffffffff1661389b565b1561307e578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401612f049594939291906149bc565b602060405180830381600087803b158015612f1e57600080fd5b505af1925050508015612f4f57506040513d601f19601f82011682018060405250810190612f4c91906143bf565b60015b612ff557612f5b6152f5565b806308c379a01415612fb85750612f70615aa6565b80612f7b5750612fba565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612faf9190614b0d565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fec90614b2f565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161461307c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161307390614b8f565b60405180910390fd5b505b505050505050565b6060600060028360026130999190615044565b6130a39190614fee565b67ffffffffffffffff8111156130e2577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156131145781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110613172577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f7800000000000000000000000000000000000000000000000000000000000000816001815181106131fc577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506000600184600261323c9190615044565b6132469190614fee565b90505b6001811115613332577f3031323334353637383961626364656600000000000000000000000000000000600f8616601081106132ae577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b8282815181106132eb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c94508061332b90615192565b9050613249565b5060008414613376576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161336d90614b6f565b60405180910390fd5b8091505092915050565b61338a8282611125565b1561345d57600080600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506134026119c9565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b6000613489836000018373ffffffffffffffffffffffffffffffffffffffff1660001b6138be565b905092915050565b60606000600167ffffffffffffffff8111156134d6577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156135045781602001602082028036833780820191505090505b5090508281600081518110613542577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080915050919050565b6135768473ffffffffffffffffffffffffffffffffffffffff1661389b565b15613736578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b81526004016135bc959493929190614a24565b602060405180830381600087803b1580156135d657600080fd5b505af192505050801561360757506040513d601f19601f8201168201806040525081019061360491906143bf565b60015b6136ad576136136152f5565b806308c379a014156136705750613628615aa6565b806136335750613672565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136679190614b0d565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136a490614b2f565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614613734576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161372b90614b8f565b60405180910390fd5b505b505050505050565b600082600001828154811061377c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905092915050565b600081600001805490509050919050565b600080836001016000848152602001908152602001600020541415905092915050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480613836575061383582613a44565b5b9050919050565b61384b868686868686613aae565b613853610c90565b15613893576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161388a90614c2f565b60405180910390fd5b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008083600101600084815260200190815260200160002054905060008114613a385760006001826138f0919061509e565b9050600060018660000180549050613908919061509e565b90508181146139c357600086600001828154811061394f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905080876000018481548110613999577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508387600101600083815260200190815260200160002081905550505b856000018054806139fd577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050613a3e565b60009150505b92915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b505050505050565b828054613ac2906151bc565b90600052602060002090601f016020900481019282613ae45760008555613b2b565b82601f10613afd57805160ff1916838001178555613b2b565b82800160010185558215613b2b579182015b82811115613b2a578251825591602001919060010190613b0f565b5b509050613b389190613b3c565b5090565b5b80821115613b55576000816000905550600101613b3d565b5090565b6000613b6c613b6784614eb8565b614e93565b90508083825260208201905082856020860282011115613b8b57600080fd5b60005b85811015613bbb5781613ba18882613cad565b845260208401935060208301925050600181019050613b8e565b5050509392505050565b6000613bd8613bd384614ee4565b614e93565b90508083825260208201905082856020860282011115613bf757600080fd5b60005b85811015613c275781613c0d8882613dbe565b845260208401935060208301925050600181019050613bfa565b5050509392505050565b6000613c44613c3f84614f10565b614e93565b905082815260208101848484011115613c5c57600080fd5b613c67848285615150565b509392505050565b6000613c82613c7d84614f41565b614e93565b905082815260208101848484011115613c9a57600080fd5b613ca5848285615150565b509392505050565b600081359050613cbc81615b3c565b92915050565b600082601f830112613cd357600080fd5b8135613ce3848260208601613b59565b91505092915050565b600082601f830112613cfd57600080fd5b8135613d0d848260208601613bc5565b91505092915050565b600081359050613d2581615b53565b92915050565b600081359050613d3a81615b6a565b92915050565b600081359050613d4f81615b81565b92915050565b600081519050613d6481615b81565b92915050565b600082601f830112613d7b57600080fd5b8135613d8b848260208601613c31565b91505092915050565b600082601f830112613da557600080fd5b8135613db5848260208601613c6f565b91505092915050565b600081359050613dcd81615b98565b92915050565b600060208284031215613de557600080fd5b6000613df384828501613cad565b91505092915050565b60008060408385031215613e0f57600080fd5b6000613e1d85828601613cad565b9250506020613e2e85828601613cad565b9150509250929050565b600080600080600060a08688031215613e5057600080fd5b6000613e5e88828901613cad565b9550506020613e6f88828901613cad565b945050604086013567ffffffffffffffff811115613e8c57600080fd5b613e9888828901613cec565b935050606086013567ffffffffffffffff811115613eb557600080fd5b613ec188828901613cec565b925050608086013567ffffffffffffffff811115613ede57600080fd5b613eea88828901613d6a565b9150509295509295909350565b600080600080600060a08688031215613f0f57600080fd5b6000613f1d88828901613cad565b9550506020613f2e88828901613cad565b9450506040613f3f88828901613dbe565b9350506060613f5088828901613dbe565b925050608086013567ffffffffffffffff811115613f6d57600080fd5b613f7988828901613d6a565b9150509295509295909350565b600080600060608486031215613f9b57600080fd5b6000613fa986828701613cad565b935050602084013567ffffffffffffffff811115613fc657600080fd5b613fd286828701613cec565b925050604084013567ffffffffffffffff811115613fef57600080fd5b613ffb86828701613cec565b9150509250925092565b6000806000806080858703121561401b57600080fd5b600061402987828801613cad565b945050602085013567ffffffffffffffff81111561404657600080fd5b61405287828801613cec565b935050604085013567ffffffffffffffff81111561406f57600080fd5b61407b87828801613cec565b925050606085013567ffffffffffffffff81111561409857600080fd5b6140a487828801613d6a565b91505092959194509250565b600080604083850312156140c357600080fd5b60006140d185828601613cad565b92505060206140e285828601613d16565b9150509250929050565b600080604083850312156140ff57600080fd5b600061410d85828601613cad565b925050602061411e85828601613dbe565b9150509250929050565b60008060006060848603121561413d57600080fd5b600061414b86828701613cad565b935050602061415c86828701613dbe565b925050604061416d86828701613dbe565b9150509250925092565b6000806000806080858703121561418d57600080fd5b600061419b87828801613cad565b94505060206141ac87828801613dbe565b93505060406141bd87828801613dbe565b925050606085013567ffffffffffffffff8111156141da57600080fd5b6141e687828801613d6a565b91505092959194509250565b6000806040838503121561420557600080fd5b600083013567ffffffffffffffff81111561421f57600080fd5b61422b85828601613cc2565b925050602083013567ffffffffffffffff81111561424857600080fd5b61425485828601613cec565b9150509250929050565b60008060006060848603121561427357600080fd5b600084013567ffffffffffffffff81111561428d57600080fd5b61429986828701613cc2565b935050602084013567ffffffffffffffff8111156142b657600080fd5b6142c286828701613cec565b925050604084013567ffffffffffffffff8111156142df57600080fd5b6142eb86828701613cec565b9150509250925092565b60006020828403121561430757600080fd5b600061431584828501613d2b565b91505092915050565b6000806040838503121561433157600080fd5b600061433f85828601613d2b565b925050602061435085828601613cad565b9150509250929050565b6000806040838503121561436d57600080fd5b600061437b85828601613d2b565b925050602061438c85828601613dbe565b9150509250929050565b6000602082840312156143a857600080fd5b60006143b684828501613d40565b91505092915050565b6000602082840312156143d157600080fd5b60006143df84828501613d55565b91505092915050565b6000602082840312156143fa57600080fd5b600082013567ffffffffffffffff81111561441457600080fd5b61442084828501613d94565b91505092915050565b60006020828403121561443b57600080fd5b600061444984828501613dbe565b91505092915050565b600061445e8383614949565b60208301905092915050565b614473816150d2565b82525050565b600061448482614f82565b61448e8185614fb0565b935061449983614f72565b8060005b838110156144ca5781516144b18882614452565b97506144bc83614fa3565b92505060018101905061449d565b5085935050505092915050565b6144e0816150e4565b82525050565b6144ef816150f0565b82525050565b600061450082614f8d565b61450a8185614fc1565b935061451a81856020860161515f565b61452381615317565b840191505092915050565b600061453982614f98565b6145438185614fd2565b935061455381856020860161515f565b61455c81615317565b840191505092915050565b600061457282614f98565b61457c8185614fe3565b935061458c81856020860161515f565b80840191505092915050565b60006145a5603483614fd2565b91506145b082615335565b604082019050919050565b60006145c8602c83614fd2565b91506145d382615384565b604082019050919050565b60006145eb602083614fd2565b91506145f6826153d3565b602082019050919050565b600061460e602883614fd2565b9150614619826153fc565b604082019050919050565b6000614631601483614fd2565b915061463c8261544b565b602082019050919050565b6000614654602b83614fd2565b915061465f82615474565b604082019050919050565b6000614677602683614fd2565b9150614682826154c3565b604082019050919050565b600061469a602483614fd2565b91506146a582615512565b604082019050919050565b60006146bd602c83614fd2565b91506146c882615561565b604082019050919050565b60006146e0602983614fd2565b91506146eb826155b0565b604082019050919050565b6000614703601083614fd2565b915061470e826155ff565b602082019050919050565b6000614726602583614fd2565b915061473182615628565b604082019050919050565b6000614749603283614fd2565b915061475482615677565b604082019050919050565b600061476c602383614fd2565b9150614777826156c6565b604082019050919050565b600061478f603883614fd2565b915061479a82615715565b604082019050919050565b60006147b2602a83614fd2565b91506147bd82615764565b604082019050919050565b60006147d5602083614fd2565b91506147e0826157b3565b602082019050919050565b60006147f8602883614fd2565b9150614803826157dc565b604082019050919050565b600061481b603b83614fd2565b91506148268261582b565b604082019050919050565b600061483e603983614fd2565b91506148498261587a565b604082019050919050565b6000614861601783614fe3565b915061486c826158c9565b601782019050919050565b6000614884602983614fd2565b915061488f826158f2565b604082019050919050565b60006148a7602983614fd2565b91506148b282615941565b604082019050919050565b60006148ca602883614fd2565b91506148d582615990565b604082019050919050565b60006148ed602183614fd2565b91506148f8826159df565b604082019050919050565b6000614910601183614fe3565b915061491b82615a2e565b601182019050919050565b6000614933602f83614fd2565b915061493e82615a57565b604082019050919050565b61495281615146565b82525050565b61496181615146565b82525050565b600061497282614854565b915061497e8285614567565b915061498982614903565b91506149958284614567565b91508190509392505050565b60006020820190506149b6600083018461446a565b92915050565b600060a0820190506149d1600083018861446a565b6149de602083018761446a565b81810360408301526149f08186614479565b90508181036060830152614a048185614479565b90508181036080830152614a1881846144f5565b90509695505050505050565b600060a082019050614a39600083018861446a565b614a46602083018761446a565b614a536040830186614958565b614a606060830185614958565b8181036080830152614a7281846144f5565b90509695505050505050565b60006020820190508181036000830152614a988184614479565b905092915050565b60006040820190508181036000830152614aba8185614479565b90508181036020830152614ace8184614479565b90509392505050565b6000602082019050614aec60008301846144d7565b92915050565b6000602082019050614b0760008301846144e6565b92915050565b60006020820190508181036000830152614b27818461452e565b905092915050565b60006020820190508181036000830152614b4881614598565b9050919050565b60006020820190508181036000830152614b68816145bb565b9050919050565b60006020820190508181036000830152614b88816145de565b9050919050565b60006020820190508181036000830152614ba881614601565b9050919050565b60006020820190508181036000830152614bc881614624565b9050919050565b60006020820190508181036000830152614be881614647565b9050919050565b60006020820190508181036000830152614c088161466a565b9050919050565b60006020820190508181036000830152614c288161468d565b9050919050565b60006020820190508181036000830152614c48816146b0565b9050919050565b60006020820190508181036000830152614c68816146d3565b9050919050565b60006020820190508181036000830152614c88816146f6565b9050919050565b60006020820190508181036000830152614ca881614719565b9050919050565b60006020820190508181036000830152614cc88161473c565b9050919050565b60006020820190508181036000830152614ce88161475f565b9050919050565b60006020820190508181036000830152614d0881614782565b9050919050565b60006020820190508181036000830152614d28816147a5565b9050919050565b60006020820190508181036000830152614d48816147c8565b9050919050565b60006020820190508181036000830152614d68816147eb565b9050919050565b60006020820190508181036000830152614d888161480e565b9050919050565b60006020820190508181036000830152614da881614831565b9050919050565b60006020820190508181036000830152614dc881614877565b9050919050565b60006020820190508181036000830152614de88161489a565b9050919050565b60006020820190508181036000830152614e08816148bd565b9050919050565b60006020820190508181036000830152614e28816148e0565b9050919050565b60006020820190508181036000830152614e4881614926565b9050919050565b6000602082019050614e646000830184614958565b92915050565b6000604082019050614e7f6000830185614958565b614e8c6020830184614958565b9392505050565b6000614e9d614eae565b9050614ea982826151ee565b919050565b6000604051905090565b600067ffffffffffffffff821115614ed357614ed26152c6565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614eff57614efe6152c6565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614f2b57614f2a6152c6565b5b614f3482615317565b9050602081019050919050565b600067ffffffffffffffff821115614f5c57614f5b6152c6565b5b614f6582615317565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614ff982615146565b915061500483615146565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561503957615038615268565b5b828201905092915050565b600061504f82615146565b915061505a83615146565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561509357615092615268565b5b828202905092915050565b60006150a982615146565b91506150b483615146565b9250828210156150c7576150c6615268565b5b828203905092915050565b60006150dd82615126565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561517d578082015181840152602081019050615162565b8381111561518c576000848401525b50505050565b600061519d82615146565b915060008214156151b1576151b0615268565b5b600182039050919050565b600060028204905060018216806151d457607f821691505b602082108114156151e8576151e7615297565b5b50919050565b6151f782615317565b810181811067ffffffffffffffff82111715615216576152156152c6565b5b80604052505050565b600061522a82615146565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561525d5761525c615268565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d11156153145760046000803e615311600051615328565b90505b90565b6000601f19601f8301169050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f436f6e747261637420496e666f3a20746f20616e6420616d6f756e74206c656e60008201527f677468206d69736d617463680000000000000000000000000000000000000000602082015250565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135355061757361626c653a20746f6b656e207472616e736665722060008201527f7768696c65207061757365640000000000000000000000000000000000000000602082015250565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135355072657365744d696e7465725061757365723a206d7573742060008201527f68617665206d696e74657220726f6c6520746f206d696e740000000000000000602082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f436f6e747261637420496e666f3a20746f20616e64206964206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135355072657365744d696e7465725061757365723a206d7573742060008201527f686176652070617573657220726f6c6520746f20756e70617573650000000000602082015250565b7f455243313135355072657365744d696e7465725061757365723a206d7573742060008201527f686176652070617573657220726f6c6520746f20706175736500000000000000602082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b600060443d1015615ab657615b39565b615abe614eae565b60043d036004823e80513d602482011167ffffffffffffffff82111715615ae6575050615b39565b808201805167ffffffffffffffff811115615b045750505050615b39565b80602083010160043d038501811115615b21575050505050615b39565b615b30826020018501866151ee565b82955050505050505b90565b615b45816150d2565b8114615b5057600080fd5b50565b615b5c816150e4565b8114615b6757600080fd5b50565b615b73816150f0565b8114615b7e57600080fd5b50565b615b8a816150fa565b8114615b9557600080fd5b50565b615ba181615146565b8114615bac57600080fd5b5056fea26469706673582212203091843761d0dcd3f7d4d9327ef47ac647fa6747b6cc61c1011d104256133aeb64736f6c63430008040033
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.