Overview
POL Balance
0 POL
POL Value
$0.00Token Holdings
More Info
Private Name Tags
ContractCreator
TokenTracker
Sponsored
Latest 25 from a total of 1,453 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Set Approval For... | 61692513 | 4 days ago | IN | 0 POL | 0.00083609 | ||||
Set Approval For... | 61692507 | 4 days ago | IN | 0 POL | 0.00083871 | ||||
Set Approval For... | 61692502 | 4 days ago | IN | 0 POL | 0.00077363 | ||||
Set Approval For... | 61692497 | 4 days ago | IN | 0 POL | 0.00077625 | ||||
Set Approval For... | 61413795 | 11 days ago | IN | 0 POL | 0.0028911 | ||||
Set Approval For... | 60336576 | 38 days ago | IN | 0 POL | 0.00080571 | ||||
Set Approval For... | 60336542 | 38 days ago | IN | 0 POL | 0.00080571 | ||||
Set Approval For... | 60336537 | 38 days ago | IN | 0 POL | 0.00080571 | ||||
Set Approval For... | 60336531 | 38 days ago | IN | 0 POL | 0.00080571 | ||||
Set Approval For... | 60336525 | 38 days ago | IN | 0 POL | 0.00080571 | ||||
Set Approval For... | 60336519 | 38 days ago | IN | 0 POL | 0.00080571 | ||||
Set Approval For... | 60336513 | 38 days ago | IN | 0 POL | 0.00080571 | ||||
Set Approval For... | 60336507 | 38 days ago | IN | 0 POL | 0.00080571 | ||||
Set Approval For... | 60336502 | 38 days ago | IN | 0 POL | 0.00080571 | ||||
Set Approval For... | 60336497 | 38 days ago | IN | 0 POL | 0.00080571 | ||||
Set Approval For... | 60336492 | 38 days ago | IN | 0 POL | 0.00080571 | ||||
Set Approval For... | 60336486 | 38 days ago | IN | 0 POL | 0.00080571 | ||||
Set Approval For... | 60336481 | 38 days ago | IN | 0 POL | 0.00080571 | ||||
Set Approval For... | 60336476 | 38 days ago | IN | 0 POL | 0.00080571 | ||||
Set Approval For... | 60336468 | 38 days ago | IN | 0 POL | 0.00080571 | ||||
Set Approval For... | 60336233 | 38 days ago | IN | 0 POL | 0.00080571 | ||||
Set Approval For... | 60336228 | 38 days ago | IN | 0 POL | 0.00080571 | ||||
Set Approval For... | 60336222 | 38 days ago | IN | 0 POL | 0.00080571 | ||||
Set Approval For... | 60336217 | 38 days ago | IN | 0 POL | 0.00080571 | ||||
Set Approval For... | 60336211 | 38 days ago | IN | 0 POL | 0.00080571 |
Loading...
Loading
Contract Name:
LuchaWearables
Compiler Version
v0.8.0+commit.c7dfd78e
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol"; import "@openzeppelin/contracts/access/AccessControl.sol"; import "@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Burnable.sol"; import "@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Supply.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "./lib/Base64.sol"; contract LuchaWearables is ERC1155, AccessControl, ERC1155Burnable, ERC1155Supply { using Strings for uint256; string public name = "Luchadores.io Wearables"; string public symbol = "WEARABLE"; struct Asset { string name; string description; string rarity; string slot; string theme; string imageData; } mapping(uint256 => Asset) public assets; bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE"); bytes32 public constant ASSET_MANAGER_ROLE = keccak256("ASSET_MANAGER_ROLE"); constructor() ERC1155("") { _setupRole(DEFAULT_ADMIN_ROLE, msg.sender); _setupRole(ASSET_MANAGER_ROLE, msg.sender); } function mint(address account, uint256 id, uint256 amount, bytes memory data) external onlyRole(MINTER_ROLE) { _mint(account, id, amount, data); } function mintBatch(address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data) external onlyRole(MINTER_ROLE) { _mintBatch(to, ids, amounts, data); } function uri(uint256 id) public view override returns (string memory) { return string(abi.encodePacked( "data:application/json;base64,", Base64.encode( bytes( string(abi.encodePacked( "{", '"name":"', assets[id].name, '",', '"description":"', assets[id].description, '",', '"image_data":"', "<svg id='wearable-", id.toString(), "' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'>", assets[id].imageData, '</svg>",', '"attributes": [', "{", '"trait_type":"Rarity",', '"value":"', assets[id].rarity, '"', "},", "{", '"trait_type":"Slot",', '"value":"', assets[id].slot, '"', "},", "{", '"trait_type":"Theme",', '"value":"', assets[id].theme, '"', "}", "]", "}" )) ) ) )); } function updateAsset(uint256 id, Asset calldata asset) external onlyRole(ASSET_MANAGER_ROLE) { assets[id] = asset; } function _beforeTokenTransfer(address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data) internal override(ERC1155, ERC1155Supply) { super._beforeTokenTransfer(operator, from, to, ids, amounts, data); } function supportsInterface(bytes4 interfaceId) public view override(ERC1155, AccessControl) returns (bool) { return super.supportsInterface(interfaceId); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC1155.sol"; import "./IERC1155Receiver.sol"; import "./extensions/IERC1155MetadataURI.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of the basic standard multi-token. * See https://eips.ethereum.org/EIPS/eip-1155 * Originally based on code by Enjin: https://github.com/enjin/erc-1155 * * _Available since v3.1._ */ contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI { using Address for address; // Mapping from token ID to account balances mapping(uint256 => mapping(address => uint256)) private _balances; // Mapping from account to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json string private _uri; /** * @dev See {_setURI}. */ constructor(string memory uri_) { _setURI(uri_); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC1155).interfaceId || interfaceId == type(IERC1155MetadataURI).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC1155MetadataURI-uri}. * * This implementation returns the same URI for *all* token types. It relies * on the token type ID substitution mechanism * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP]. * * Clients calling this function must replace the `\{id\}` substring with the * actual token type ID. */ function uri(uint256) public view virtual override returns (string memory) { return _uri; } /** * @dev See {IERC1155-balanceOf}. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) public view virtual override returns (uint256) { require(account != address(0), "ERC1155: balance query for the zero address"); return _balances[id][account]; } /** * @dev See {IERC1155-balanceOfBatch}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch(address[] memory accounts, uint256[] memory ids) public view virtual override returns (uint256[] memory) { require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch"); uint256[] memory batchBalances = new uint256[](accounts.length); for (uint256 i = 0; i < accounts.length; ++i) { batchBalances[i] = balanceOf(accounts[i], ids[i]); } return batchBalances; } /** * @dev See {IERC1155-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(_msgSender() != operator, "ERC1155: setting approval status for self"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC1155-isApprovedForAll}. */ function isApprovedForAll(address account, address operator) public view virtual override returns (bool) { return _operatorApprovals[account][operator]; } /** * @dev See {IERC1155-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes memory data ) public virtual override { require( from == _msgSender() || isApprovedForAll(from, _msgSender()), "ERC1155: caller is not owner nor approved" ); _safeTransferFrom(from, to, id, amount, data); } /** * @dev See {IERC1155-safeBatchTransferFrom}. */ function safeBatchTransferFrom( address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) public virtual override { require( from == _msgSender() || isApprovedForAll(from, _msgSender()), "ERC1155: transfer caller is not owner nor approved" ); _safeBatchTransferFrom(from, to, ids, amounts, data); } /** * @dev Transfers `amount` tokens of token type `id` from `from` to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - `from` must have a balance of tokens of type `id` of at least `amount`. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function _safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: transfer to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, to, _asSingletonArray(id), _asSingletonArray(amount), data); uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: insufficient balance for transfer"); unchecked { _balances[id][from] = fromBalance - amount; } _balances[id][to] += amount; emit TransferSingle(operator, from, to, id, amount); _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}. * * Emits a {TransferBatch} event. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function _safeBatchTransferFrom( address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual { require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); require(to != address(0), "ERC1155: transfer to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, to, ids, amounts, data); for (uint256 i = 0; i < ids.length; ++i) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: insufficient balance for transfer"); unchecked { _balances[id][from] = fromBalance - amount; } _balances[id][to] += amount; } emit TransferBatch(operator, from, to, ids, amounts); _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data); } /** * @dev Sets a new URI for all token types, by relying on the token type ID * substitution mechanism * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP]. * * By this mechanism, any occurrence of the `\{id\}` substring in either the * URI or any of the amounts in the JSON file at said URI will be replaced by * clients with the token type ID. * * For example, the `https://token-cdn-domain/\{id\}.json` URI would be * interpreted by clients as * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json` * for token type ID 0x4cce0. * * See {uri}. * * Because these URIs cannot be meaningfully represented by the {URI} event, * this function emits no events. */ function _setURI(string memory newuri) internal virtual { _uri = newuri; } /** * @dev Creates `amount` tokens of token type `id`, and assigns them to `account`. * * Emits a {TransferSingle} event. * * Requirements: * * - `account` cannot be the zero address. * - If `account` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function _mint( address account, uint256 id, uint256 amount, bytes memory data ) internal virtual { require(account != address(0), "ERC1155: mint to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, address(0), account, _asSingletonArray(id), _asSingletonArray(amount), data); _balances[id][account] += amount; emit TransferSingle(operator, address(0), account, id, amount); _doSafeTransferAcceptanceCheck(operator, address(0), account, id, amount, data); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}. * * Requirements: * * - `ids` and `amounts` must have the same length. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function _mintBatch( address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: mint to the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, address(0), to, ids, amounts, data); for (uint256 i = 0; i < ids.length; i++) { _balances[ids[i]][to] += amounts[i]; } emit TransferBatch(operator, address(0), to, ids, amounts); _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data); } /** * @dev Destroys `amount` tokens of token type `id` from `account` * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens of token type `id`. */ function _burn( address account, uint256 id, uint256 amount ) internal virtual { require(account != address(0), "ERC1155: burn from the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, account, address(0), _asSingletonArray(id), _asSingletonArray(amount), ""); uint256 accountBalance = _balances[id][account]; require(accountBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][account] = accountBalance - amount; } emit TransferSingle(operator, account, address(0), id, amount); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}. * * Requirements: * * - `ids` and `amounts` must have the same length. */ function _burnBatch( address account, uint256[] memory ids, uint256[] memory amounts ) internal virtual { require(account != address(0), "ERC1155: burn from the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, account, address(0), ids, amounts, ""); for (uint256 i = 0; i < ids.length; i++) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 accountBalance = _balances[id][account]; require(accountBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][account] = accountBalance - amount; } } emit TransferBatch(operator, account, address(0), ids, amounts); } /** * @dev Hook that is called before any token transfer. This includes minting * and burning, as well as batched variants. * * The same hook is called on both single and batched variants. For single * transfers, the length of the `id` and `amount` arrays will be 1. * * Calling conditions (for each `id` and `amount` pair): * * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens * of token type `id` will be transferred to `to`. * - When `from` is zero, `amount` tokens of token type `id` will be minted * for `to`. * - when `to` is zero, `amount` of ``from``'s tokens of token type `id` * will be burned. * - `from` and `to` are never both zero. * - `ids` and `amounts` have the same, non-zero length. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual {} function _doSafeTransferAcceptanceCheck( address operator, address from, address to, uint256 id, uint256 amount, bytes memory data ) private { if (to.isContract()) { try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) { if (response != IERC1155Receiver.onERC1155Received.selector) { revert("ERC1155: ERC1155Receiver rejected tokens"); } } catch Error(string memory reason) { revert(reason); } catch { revert("ERC1155: transfer to non ERC1155Receiver implementer"); } } } function _doSafeBatchTransferAcceptanceCheck( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) private { if (to.isContract()) { try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns ( bytes4 response ) { if (response != IERC1155Receiver.onERC1155BatchReceived.selector) { revert("ERC1155: ERC1155Receiver rejected tokens"); } } catch Error(string memory reason) { revert(reason); } catch { revert("ERC1155: transfer to non ERC1155Receiver implementer"); } } } function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) { uint256[] memory array = new uint256[](1); array[0] = element; return array; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IAccessControl.sol"; import "../utils/Context.sol"; import "../utils/Strings.sol"; import "../utils/introspection/ERC165.sol"; /** * @dev Contract module that allows children to implement role-based access * control mechanisms. This is a lightweight version that doesn't allow enumerating role * members except through off-chain means by accessing the contract event logs. Some * applications may benefit from on-chain enumerability, for those cases see * {AccessControlEnumerable}. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ``` * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ``` * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. */ abstract contract AccessControl is Context, IAccessControl, ERC165 { struct RoleData { mapping(address => bool) members; bytes32 adminRole; } mapping(bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Modifier that checks that an account has a specific role. Reverts * with a standardized message including the required role. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ * * _Available since v4.1._ */ modifier onlyRole(bytes32 role) { _checkRole(role, _msgSender()); _; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view override returns (bool) { return _roles[role].members[account]; } /** * @dev Revert with a standard message if `account` is missing `role`. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ */ function _checkRole(bytes32 role, address account) internal view { if (!hasRole(role, account)) { revert( string( abi.encodePacked( "AccessControl: account ", Strings.toHexString(uint160(account), 20), " is missing role ", Strings.toHexString(uint256(role), 32) ) ) ); } } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view override returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) public virtual override { require(account == _msgSender(), "AccessControl: can only renounce roles for self"); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== */ function _setupRole(bytes32 role, address account) internal virtual { _grantRole(role, account); } /** * @dev Sets `adminRole` as ``role``'s admin role. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { bytes32 previousAdminRole = getRoleAdmin(role); _roles[role].adminRole = adminRole; emit RoleAdminChanged(role, previousAdminRole, adminRole); } function _grantRole(bytes32 role, address account) private { if (!hasRole(role, account)) { _roles[role].members[account] = true; emit RoleGranted(role, account, _msgSender()); } } function _revokeRole(bytes32 role, address account) private { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../ERC1155.sol"; /** * @dev Extension of {ERC1155} that allows token holders to destroy both their * own tokens and those that they have been approved to use. * * _Available since v3.1._ */ abstract contract ERC1155Burnable is ERC1155 { function burn( address account, uint256 id, uint256 value ) public virtual { require( account == _msgSender() || isApprovedForAll(account, _msgSender()), "ERC1155: caller is not owner nor approved" ); _burn(account, id, value); } function burnBatch( address account, uint256[] memory ids, uint256[] memory values ) public virtual { require( account == _msgSender() || isApprovedForAll(account, _msgSender()), "ERC1155: caller is not owner nor approved" ); _burnBatch(account, ids, values); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../ERC1155.sol"; /** * @dev Extension of ERC1155 that adds tracking of total supply per id. * * Useful for scenarios where Fungible and Non-fungible tokens have to be * clearly identified. Note: While a totalSupply of 1 might mean the * corresponding is an NFT, there is no guarantees that no other token with the * same id are not going to be minted. */ abstract contract ERC1155Supply is ERC1155 { mapping(uint256 => uint256) private _totalSupply; /** * @dev Total amount of tokens in with a given id. */ function totalSupply(uint256 id) public view virtual returns (uint256) { return _totalSupply[id]; } /** * @dev Indicates weither any token exist with a given id, or not. */ function exists(uint256 id) public view virtual returns (bool) { return ERC1155Supply.totalSupply(id) > 0; } /** * @dev See {ERC1155-_beforeTokenTransfer}. */ 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); if (from == address(0)) { for (uint256 i = 0; i < ids.length; ++i) { _totalSupply[ids[i]] += amounts[i]; } } if (to == address(0)) { for (uint256 i = 0; i < ids.length; ++i) { _totalSupply[ids[i]] -= amounts[i]; } } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /// [MIT License] /// @title Base64 /// @notice Provides a function for encoding some bytes in base64 /// @author Brecht Devos <[email protected]> library Base64 { bytes internal constant TABLE = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; /// @notice Encodes some bytes to the base64 representation function encode(bytes memory data) internal pure returns (string memory) { uint256 len = data.length; if (len == 0) return ""; // multiply by 4/3 rounded up uint256 encodedLen = 4 * ((len + 2) / 3); // Add some extra buffer at the end bytes memory result = new bytes(encodedLen + 32); bytes memory table = TABLE; assembly { let tablePtr := add(table, 1) let resultPtr := add(result, 32) for { let i := 0 } lt(i, len) { } { i := add(i, 3) let input := and(mload(add(data, i)), 0xffffff) let out := mload(add(tablePtr, and(shr(18, input), 0x3F))) out := shl(8, out) out := add( out, and(mload(add(tablePtr, and(shr(12, input), 0x3F))), 0xFF) ) out := shl(8, out) out := add( out, and(mload(add(tablePtr, and(shr(6, input), 0x3F))), 0xFF) ) out := shl(8, out) out := add( out, and(mload(add(tablePtr, and(input, 0x3F))), 0xFF) ) out := shl(224, out) mstore(resultPtr, out) resultPtr := add(resultPtr, 4) } switch mod(len, 3) case 1 { mstore(sub(resultPtr, 2), shl(240, 0x3d3d)) } case 2 { mstore(sub(resultPtr, 1), shl(248, 0x3d)) } mstore(result, encodedLen) } return string(result); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC1155 compliant contract, as defined in the * https://eips.ethereum.org/EIPS/eip-1155[EIP]. * * _Available since v3.1._ */ interface IERC1155 is IERC165 { /** * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`. */ event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value); /** * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all * transfers. */ event TransferBatch( address indexed operator, address indexed from, address indexed to, uint256[] ids, uint256[] values ); /** * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to * `approved`. */ event ApprovalForAll(address indexed account, address indexed operator, bool approved); /** * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI. * * If an {URI} event was emitted for `id`, the standard * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value * returned by {IERC1155MetadataURI-uri}. */ event URI(string value, uint256 indexed id); /** * @dev Returns the amount of tokens of token type `id` owned by `account`. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) external view returns (uint256); /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids) external view returns (uint256[] memory); /** * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`, * * Emits an {ApprovalForAll} event. * * Requirements: * * - `operator` cannot be the caller. */ function setApprovalForAll(address operator, bool approved) external; /** * @dev Returns true if `operator` is approved to transfer ``account``'s tokens. * * See {setApprovalForAll}. */ function isApprovedForAll(address account, address operator) external view returns (bool); /** * @dev Transfers `amount` tokens of token type `id` from `from` to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - If the caller is not `from`, it must be have been approved to spend ``from``'s tokens via {setApprovalForAll}. * - `from` must have a balance of tokens of type `id` of at least `amount`. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes calldata data ) external; /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}. * * Emits a {TransferBatch} event. * * Requirements: * * - `ids` and `amounts` must have the same length. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function safeBatchTransferFrom( address from, address to, uint256[] calldata ids, uint256[] calldata amounts, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev _Available since v3.1._ */ interface IERC1155Receiver is IERC165 { /** @dev Handles the receipt of a single ERC1155 token type. This function is called at the end of a `safeTransferFrom` after the balance has been updated. To accept the transfer, this must return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` (i.e. 0xf23a6e61, or its own function selector). @param operator The address which initiated the transfer (i.e. msg.sender) @param from The address which previously owned the token @param id The ID of the token being transferred @param value The amount of tokens being transferred @param data Additional data with no specified format @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed */ function onERC1155Received( address operator, address from, uint256 id, uint256 value, bytes calldata data ) external returns (bytes4); /** @dev Handles the receipt of a multiple ERC1155 token types. This function is called at the end of a `safeBatchTransferFrom` after the balances have been updated. To accept the transfer(s), this must return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` (i.e. 0xbc197c81, or its own function selector). @param operator The address which initiated the batch transfer (i.e. msg.sender) @param from The address which previously owned the token @param ids An array containing ids of each token being transferred (order and length must match values array) @param values An array containing amounts of each token being transferred (order and length must match ids array) @param data Additional data with no specified format @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed */ function onERC1155BatchReceived( address operator, address from, uint256[] calldata ids, uint256[] calldata values, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../IERC1155.sol"; /** * @dev Interface of the optional ERC1155MetadataExtension interface, as defined * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP]. * * _Available since v3.1._ */ interface IERC1155MetadataURI is IERC1155 { /** * @dev Returns the URI for token type `id`. * * If the `\{id\}` substring is present in the URI, it must be replaced by * clients with the actual token type ID. */ function uri(uint256 id) external view returns (string memory); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @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; }
{ "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":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[],"name":"ASSET_MANAGER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"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":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"assets","outputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"description","type":"string"},{"internalType":"string","name":"rarity","type":"string"},{"internalType":"string","name":"slot","type":"string"},{"internalType":"string","name":"theme","type":"string"},{"internalType":"string","name":"imageData","type":"string"}],"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":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"mintBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"},{"components":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"description","type":"string"},{"internalType":"string","name":"rarity","type":"string"},{"internalType":"string","name":"slot","type":"string"},{"internalType":"string","name":"theme","type":"string"},{"internalType":"string","name":"imageData","type":"string"}],"internalType":"struct LuchaWearables.Asset","name":"asset","type":"tuple"}],"name":"updateAsset","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040526040518060400160405280601781526020017f4c75636861646f7265732e696f205765617261626c65730000000000000000008152506005908051906020019062000051929190620002b4565b506040518060400160405280600881526020017f5745415241424c45000000000000000000000000000000000000000000000000815250600690805190602001906200009f929190620002b4565b50348015620000ad57600080fd5b5060405180602001604052806000815250620000cf816200011d60201b60201c565b50620000e56000801b336200013960201b60201c565b620001177fb1fadd3142ab2ad7f1337ea4d97112bcc8337fc11ce5b20cb04ad038adf99819336200013960201b60201c565b620003c9565b806002908051906020019062000135929190620002b4565b5050565b6200014b82826200014f60201b60201c565b5050565b6200016182826200024160201b60201c565b6200023d5760016003600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620001e2620002ac60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b60006003600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600033905090565b828054620002c29062000364565b90600052602060002090601f016020900481019282620002e6576000855562000332565b82601f106200030157805160ff191683800117855562000332565b8280016001018555821562000332579182015b828111156200033157825182559160200191906001019062000314565b5b50905062000341919062000345565b5090565b5b808211156200036057600081600090555060010162000346565b5090565b600060028204905060018216806200037d57607f821691505b602082108114156200039457620003936200039a565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61594b80620003d96000396000f3fe608060405234801561001057600080fd5b506004361061018d5760003560e01c8063731133e9116100de578063bd85b03911610097578063d547741f11610071578063d547741f146104bd578063e985e9c5146104d9578063f242432a14610509578063f5298aca146105255761018d565b8063bd85b0391461043a578063cf35bdd01461046a578063d53913931461049f5761018d565b8063731133e91461037857806391d148541461039457806395d89b41146103c4578063a217fddf146103e2578063a22cb46514610400578063a4b32de81461041c5761018d565b8063248a9ca31161014b57806336568abe1161012557806336568abe146102e05780634e1273f4146102fc5780634f558e791461032c5780636b20c4541461035c5761018d565b8063248a9ca3146102785780632eb2c2d6146102a85780632f2ff15d146102c45761018d565b8062fdd58e1461019257806301ffc9a7146101c2578063026189aa146101f257806306fdde031461020e5780630e89341c1461022c5780631f7fdffa1461025c575b600080fd5b6101ac60048036038101906101a791906139e1565b610541565b6040516101b99190614f2c565b60405180910390f35b6101dc60048036038101906101d79190613bb8565b61060a565b6040516101e99190614c69565b60405180910390f35b61020c60048036038101906102079190613c33565b61061c565b005b610216610676565b6040516102239190614c9f565b60405180910390f35b61024660048036038101906102419190613c0a565b610704565b6040516102539190614c9f565b60405180910390f35b610276600480360381019061027191906138fa565b6107e6565b005b610292600480360381019061028d9190613b53565b61082b565b60405161029f9190614c84565b60405180910390f35b6102c260048036038101906102bd919061372d565b61084b565b005b6102de60048036038101906102d99190613b7c565b6108ec565b005b6102fa60048036038101906102f59190613b7c565b610915565b005b61031660048036038101906103119190613ae7565b610998565b6040516103239190614c10565b60405180910390f35b61034660048036038101906103419190613c0a565b610b49565b6040516103539190614c69565b60405180910390f35b6103766004803603810190610371919061387b565b610b5d565b005b610392600480360381019061038d9190613a6c565b610bfa565b005b6103ae60048036038101906103a99190613b7c565b610c3f565b6040516103bb9190614c69565b60405180910390f35b6103cc610caa565b6040516103d99190614c9f565b60405180910390f35b6103ea610d38565b6040516103f79190614c84565b60405180910390f35b61041a600480360381019061041591906139a5565b610d3f565b005b610424610ec0565b6040516104319190614c84565b60405180910390f35b610454600480360381019061044f9190613c0a565b610ee4565b6040516104619190614f2c565b60405180910390f35b610484600480360381019061047f9190613c0a565b610f01565b60405161049696959493929190614cc1565b60405180910390f35b6104a761126d565b6040516104b49190614c84565b60405180910390f35b6104d760048036038101906104d29190613b7c565b611291565b005b6104f360048036038101906104ee91906136f1565b6112ba565b6040516105009190614c69565b60405180910390f35b610523600480360381019061051e91906137ec565b61134e565b005b61053f600480360381019061053a9190613a1d565b6113ef565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156105b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105a990614dac565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60006106158261148c565b9050919050565b7fb1fadd3142ab2ad7f1337ea4d97112bcc8337fc11ce5b20cb04ad038adf9981961064e81610649611506565b61150e565b8160076000858152602001908152602001600020818161066e919061576e565b905050505050565b600580546106839061545c565b80601f01602080910402602001604051908101604052809291908181526020018280546106af9061545c565b80156106fc5780601f106106d1576101008083540402835291602001916106fc565b820191906000526020600020905b8154815290600101906020018083116106df57829003601f168201915b505050505081565b60606107c0600760008481526020019081526020016000206000016007600085815260200190815260200160002060010161073e856115ab565b600760008781526020019081526020016000206005016007600088815260200190815260200160002060020160076000898152602001908152602001600020600301600760008a81526020019081526020016000206004016040516020016107ac9796959493929190614964565b604051602081830303815290604052611758565b6040516020016107d09190614af2565b6040516020818303038152906040529050919050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a661081881610813611506565b61150e565b61082485858585611916565b5050505050565b600060036000838152602001908152602001600020600101549050919050565b610853611506565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610899575061089885610893611506565b6112ba565b5b6108d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108cf90614e2c565b60405180910390fd5b6108e58585858585611b80565b5050505050565b6108f58261082b565b61090681610901611506565b61150e565b6109108383611ee0565b505050565b61091d611506565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461098a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098190614f0c565b60405180910390fd5b6109948282611fc1565b5050565b606081518351146109de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d590614eac565b60405180910390fd5b6000835167ffffffffffffffff811115610a21577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610a4f5781602001602082028036833780820191505090505b50905060005b8451811015610b3e57610ae8858281518110610a9a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151858381518110610adb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151610541565b828281518110610b21577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080610b37906154aa565b9050610a55565b508091505092915050565b600080610b5583610ee4565b119050919050565b610b65611506565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610bab5750610baa83610ba5611506565b6112ba565b5b610bea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be190614dec565b60405180910390fd5b610bf58383836120a3565b505050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6610c2c81610c27611506565b61150e565b610c38858585856123a0565b5050505050565b60006003600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60068054610cb79061545c565b80601f0160208091040260200160405190810160405280929190818152602001828054610ce39061545c565b8015610d305780601f10610d0557610100808354040283529160200191610d30565b820191906000526020600020905b815481529060010190602001808311610d1357829003601f168201915b505050505081565b6000801b81565b8173ffffffffffffffffffffffffffffffffffffffff16610d5e611506565b73ffffffffffffffffffffffffffffffffffffffff161415610db5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dac90614e8c565b60405180910390fd5b8060016000610dc2611506565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610e6f611506565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610eb49190614c69565b60405180910390a35050565b7fb1fadd3142ab2ad7f1337ea4d97112bcc8337fc11ce5b20cb04ad038adf9981981565b600060046000838152602001908152602001600020549050919050565b6007602052806000526040600020600091509050806000018054610f249061545c565b80601f0160208091040260200160405190810160405280929190818152602001828054610f509061545c565b8015610f9d5780601f10610f7257610100808354040283529160200191610f9d565b820191906000526020600020905b815481529060010190602001808311610f8057829003601f168201915b505050505090806001018054610fb29061545c565b80601f0160208091040260200160405190810160405280929190818152602001828054610fde9061545c565b801561102b5780601f106110005761010080835404028352916020019161102b565b820191906000526020600020905b81548152906001019060200180831161100e57829003601f168201915b5050505050908060020180546110409061545c565b80601f016020809104026020016040519081016040528092919081815260200182805461106c9061545c565b80156110b95780601f1061108e576101008083540402835291602001916110b9565b820191906000526020600020905b81548152906001019060200180831161109c57829003601f168201915b5050505050908060030180546110ce9061545c565b80601f01602080910402602001604051908101604052809291908181526020018280546110fa9061545c565b80156111475780601f1061111c57610100808354040283529160200191611147565b820191906000526020600020905b81548152906001019060200180831161112a57829003601f168201915b50505050509080600401805461115c9061545c565b80601f01602080910402602001604051908101604052809291908181526020018280546111889061545c565b80156111d55780601f106111aa576101008083540402835291602001916111d5565b820191906000526020600020905b8154815290600101906020018083116111b857829003601f168201915b5050505050908060050180546111ea9061545c565b80601f01602080910402602001604051908101604052809291908181526020018280546112169061545c565b80156112635780601f1061123857610100808354040283529160200191611263565b820191906000526020600020905b81548152906001019060200180831161124657829003601f168201915b5050505050905086565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b61129a8261082b565b6112ab816112a6611506565b61150e565b6112b58383611fc1565b505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611356611506565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061139c575061139b85611396611506565b6112ba565b5b6113db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d290614dec565b60405180910390fd5b6113e88585858585612536565b5050505050565b6113f7611506565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061143d575061143c83611437611506565b6112ba565b5b61147c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147390614dec565b60405180910390fd5b6114878383836127b8565b505050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806114ff57506114fe826129d5565b5b9050919050565b600033905090565b6115188282610c3f565b6115a75761153d8173ffffffffffffffffffffffffffffffffffffffff166014612ab7565b61154b8360001c6020612ab7565b60405160200161155c929190614b14565b6040516020818303038152906040526040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159e9190614c9f565b60405180910390fd5b5050565b606060008214156115f3576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611753565b600082905060005b6000821461162557808061160e906154aa565b915050600a8261161e9190615172565b91506115fb565b60008167ffffffffffffffff811115611667577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156116995781602001600182028036833780820191505090505b5090505b6000851461174c576001826116b291906151fd565b9150600a856116c19190615511565b60306116cd919061511c565b60f81b818381518110611709577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856117459190615172565b945061169d565b8093505050505b919050565b606060008251905060008114156117815760405180602001604052806000815250915050611911565b60006003600283611792919061511c565b61179c9190615172565b60046117a891906151a3565b905060006020826117b9919061511c565b67ffffffffffffffff8111156117f8577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561182a5781602001600182028036833780820191505090505b50905060006040518060600160405280604081526020016158d6604091399050600181016020830160005b868110156118ce5760038101905062ffffff818a015116603f8160121c168401518060081b905060ff603f83600c1c1686015116810190508060081b905060ff603f8360061c1686015116810190508060081b905060ff603f831686015116810190508060e01b90508084526004840193505050611855565b5060038606600181146118e857600281146118f857611903565b613d3d60f01b6002830352611903565b603d60f81b60018303525b508484525050819450505050505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611986576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197d90614eec565b60405180910390fd5b81518351146119ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c190614ecc565b60405180910390fd5b60006119d4611506565b90506119e581600087878787612db1565b60005b8451811015611aea57838181518110611a2a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151600080878481518110611a6e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ad0919061511c565b925050819055508080611ae2906154aa565b9150506119e8565b508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611b62929190614c32565b60405180910390a4611b7981600087878787612dc7565b5050505050565b8151835114611bc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bbb90614ecc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611c34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2b90614e0c565b60405180910390fd5b6000611c3e611506565b9050611c4e818787878787612db1565b60005b8451811015611e4b576000858281518110611c95577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190506000858381518110611cda577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611d7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7290614e6c565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e30919061511c565b9250508190555050505080611e44906154aa565b9050611c51565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611ec2929190614c32565b60405180910390a4611ed8818787878787612dc7565b505050505050565b611eea8282610c3f565b611fbd5760016003600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611f62611506565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b611fcb8282610c3f565b1561209f5760006003600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550612044611506565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612113576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210a90614e4c565b60405180910390fd5b8051825114612157576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214e90614ecc565b60405180910390fd5b6000612161611506565b905061218181856000868660405180602001604052806000815250612db1565b60005b835181101561231a5760008482815181106121c8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600084838151811061220d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600080600084815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156122ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a590614dcc565b60405180910390fd5b81810360008085815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050508080612312906154aa565b915050612184565b50600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051612392929190614c32565b60405180910390a450505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612410576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240790614eec565b60405180910390fd5b600061241a611506565b905061243b8160008761242c88612f97565b61243588612f97565b87612db1565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461249a919061511c565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051612518929190614f47565b60405180910390a461252f8160008787878761305d565b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156125a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259d90614e0c565b60405180910390fd5b60006125b0611506565b90506125d08187876125c188612f97565b6125ca88612f97565b87612db1565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015612667576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265e90614e6c565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461271c919061511c565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628888604051612799929190614f47565b60405180910390a46127af82888888888861305d565b50505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612828576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161281f90614e4c565b60405180910390fd5b6000612832611506565b90506128628185600061284487612f97565b61284d87612f97565b60405180602001604052806000815250612db1565b600080600085815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156128f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f090614dcc565b60405180910390fd5b82810360008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6287876040516129c6929190614f47565b60405180910390a45050505050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612aa057507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612ab05750612aaf8261322d565b5b9050919050565b606060006002836002612aca91906151a3565b612ad4919061511c565b67ffffffffffffffff811115612b13577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612b455781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110612ba3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110612c2d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006001846002612c6d91906151a3565b612c77919061511c565b90505b6001811115612d63577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110612cdf577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b828281518110612d1c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c945080612d5c90615432565b9050612c7a565b5060008414612da7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d9e90614d6c565b60405180910390fd5b8091505092915050565b612dbf868686868686613297565b505050505050565b612de68473ffffffffffffffffffffffffffffffffffffffff166134a9565b15612f8f578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401612e2c959493929190614b4e565b602060405180830381600087803b158015612e4657600080fd5b505af1925050508015612e7757506040513d601f19601f82011682018060405250810190612e749190613be1565b60015b612f0657612e83615656565b80612e8e5750612ecb565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ec29190614c9f565b60405180910390fd5b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612efd90614d4c565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612f8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f8490614d8c565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff811115612fdc577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561300a5781602001602082028036833780820191505090505b5090508281600081518110613048577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080915050919050565b61307c8473ffffffffffffffffffffffffffffffffffffffff166134a9565b15613225578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b81526004016130c2959493929190614bb6565b602060405180830381600087803b1580156130dc57600080fd5b505af192505050801561310d57506040513d601f19601f8201168201806040525081019061310a9190613be1565b60015b61319c57613119615656565b806131245750613161565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131589190614c9f565b60405180910390fd5b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161319390614d4c565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614613223576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161321a90614d8c565b60405180910390fd5b505b505050505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6132a58686868686866134bc565b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156133a35760005b83518110156133a15782818151811061331f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015160046000868481518110613364577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015181526020019081526020016000206000828254613389919061511c565b925050819055508061339a906154aa565b90506132dd565b505b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156134a15760005b835181101561349f5782818151811061341d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015160046000868481518110613462577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101518152602001908152602001600020600082825461348791906151fd565b9250508190555080613498906154aa565b90506133db565b505b505050505050565b600080823b905060008111915050919050565b505050505050565b60006134d76134d284614ff8565b614fc7565b905080838252602082019050828560208602820111156134f657600080fd5b60005b85811015613526578161350c88826135da565b8452602084019350602083019250506001810190506134f9565b5050509392505050565b600061354361353e84615024565b614fc7565b9050808382526020820190508285602086028201111561356257600080fd5b60005b85811015613592578161357888826136dc565b845260208401935060208301925050600181019050613565565b5050509392505050565b60006135af6135aa84615050565b614fc7565b9050828152602081018484840111156135c757600080fd5b6135d28482856153f0565b509392505050565b6000813590506135e98161585d565b92915050565b600082601f83011261360057600080fd5b81356136108482602086016134c4565b91505092915050565b600082601f83011261362a57600080fd5b813561363a848260208601613530565b91505092915050565b60008135905061365281615874565b92915050565b6000813590506136678161588b565b92915050565b60008135905061367c816158a2565b92915050565b600081519050613691816158a2565b92915050565b600082601f8301126136a857600080fd5b81356136b884826020860161359c565b91505092915050565b600060c082840312156136d357600080fd5b81905092915050565b6000813590506136eb816158b9565b92915050565b6000806040838503121561370457600080fd5b6000613712858286016135da565b9250506020613723858286016135da565b9150509250929050565b600080600080600060a0868803121561374557600080fd5b6000613753888289016135da565b9550506020613764888289016135da565b945050604086013567ffffffffffffffff81111561378157600080fd5b61378d88828901613619565b935050606086013567ffffffffffffffff8111156137aa57600080fd5b6137b688828901613619565b925050608086013567ffffffffffffffff8111156137d357600080fd5b6137df88828901613697565b9150509295509295909350565b600080600080600060a0868803121561380457600080fd5b6000613812888289016135da565b9550506020613823888289016135da565b9450506040613834888289016136dc565b9350506060613845888289016136dc565b925050608086013567ffffffffffffffff81111561386257600080fd5b61386e88828901613697565b9150509295509295909350565b60008060006060848603121561389057600080fd5b600061389e868287016135da565b935050602084013567ffffffffffffffff8111156138bb57600080fd5b6138c786828701613619565b925050604084013567ffffffffffffffff8111156138e457600080fd5b6138f086828701613619565b9150509250925092565b6000806000806080858703121561391057600080fd5b600061391e878288016135da565b945050602085013567ffffffffffffffff81111561393b57600080fd5b61394787828801613619565b935050604085013567ffffffffffffffff81111561396457600080fd5b61397087828801613619565b925050606085013567ffffffffffffffff81111561398d57600080fd5b61399987828801613697565b91505092959194509250565b600080604083850312156139b857600080fd5b60006139c6858286016135da565b92505060206139d785828601613643565b9150509250929050565b600080604083850312156139f457600080fd5b6000613a02858286016135da565b9250506020613a13858286016136dc565b9150509250929050565b600080600060608486031215613a3257600080fd5b6000613a40868287016135da565b9350506020613a51868287016136dc565b9250506040613a62868287016136dc565b9150509250925092565b60008060008060808587031215613a8257600080fd5b6000613a90878288016135da565b9450506020613aa1878288016136dc565b9350506040613ab2878288016136dc565b925050606085013567ffffffffffffffff811115613acf57600080fd5b613adb87828801613697565b91505092959194509250565b60008060408385031215613afa57600080fd5b600083013567ffffffffffffffff811115613b1457600080fd5b613b20858286016135ef565b925050602083013567ffffffffffffffff811115613b3d57600080fd5b613b4985828601613619565b9150509250929050565b600060208284031215613b6557600080fd5b6000613b7384828501613658565b91505092915050565b60008060408385031215613b8f57600080fd5b6000613b9d85828601613658565b9250506020613bae858286016135da565b9150509250929050565b600060208284031215613bca57600080fd5b6000613bd88482850161366d565b91505092915050565b600060208284031215613bf357600080fd5b6000613c0184828501613682565b91505092915050565b600060208284031215613c1c57600080fd5b6000613c2a848285016136dc565b91505092915050565b60008060408385031215613c4657600080fd5b6000613c54858286016136dc565b925050602083013567ffffffffffffffff811115613c7157600080fd5b613c7d858286016136c1565b9150509250929050565b6000613c938383614946565b60208301905092915050565b613ca881615231565b82525050565b6000613cb9826150a5565b613cc381856150de565b9350613cce83615080565b8060005b83811015613cff578151613ce68882613c87565b9750613cf1836150d1565b925050600181019050613cd2565b5085935050505092915050565b613d1581615243565b82525050565b613d248161524f565b82525050565b6000613d35826150b0565b613d3f81856150ef565b9350613d4f8185602086016153ff565b613d5881615608565b840191505092915050565b6000613d6e826150c6565b613d788185615100565b9350613d888185602086016153ff565b613d9181615608565b840191505092915050565b6000613da7826150c6565b613db18185615111565b9350613dc18185602086016153ff565b80840191505092915050565b60008154613dda8161545c565b613de48186615111565b94506001821660008114613dff5760018114613e1057613e43565b60ff19831686528186019350613e43565b613e1985615090565b60005b83811015613e3b57815481890152600182019150602081019050613e1c565b838801955050505b50505092915050565b6000613e59603483615100565b91507f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008301527f526563656976657220696d706c656d656e7465720000000000000000000000006020830152604082019050919050565b6000613ebf600283615111565b91507f7d2c0000000000000000000000000000000000000000000000000000000000006000830152600282019050919050565b6000613eff602083615100565b91507f537472696e67733a20686578206c656e67746820696e73756666696369656e746000830152602082019050919050565b6000613f3f602883615100565b91507f455243313135353a204552433131353552656365697665722072656a6563746560008301527f6420746f6b656e730000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613fa5603983615111565b91507f272076696577426f783d273020302032342032342720786d6c6e733d2768747460008301527f703a2f2f7777772e77332e6f72672f323030302f737667273e000000000000006020830152603982019050919050565b600061400b601583615111565b91507f2274726169745f74797065223a225468656d65222c00000000000000000000006000830152601582019050919050565b600061404b602b83615100565b91507f455243313135353a2062616c616e636520717565727920666f7220746865207a60008301527f65726f20616464726573730000000000000000000000000000000000000000006020830152604082019050919050565b60006140b1600f83615111565b91507f226465736372697074696f6e223a2200000000000000000000000000000000006000830152600f82019050919050565b60006140f1600283615111565b91507f222c0000000000000000000000000000000000000000000000000000000000006000830152600282019050919050565b6000614131602483615100565b91507f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008301527f616e6365000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614197602983615100565b91507f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008301527f20617070726f76656400000000000000000000000000000000000000000000006020830152604082019050919050565b60006141fd601483615111565b91507f2274726169745f74797065223a22536c6f74222c0000000000000000000000006000830152601482019050919050565b600061423d600883615111565b91507f226e616d65223a220000000000000000000000000000000000000000000000006000830152600882019050919050565b600061427d600883615111565b91507f3c2f7376673e222c0000000000000000000000000000000000000000000000006000830152600882019050919050565b60006142bd600183615111565b91507f22000000000000000000000000000000000000000000000000000000000000006000830152600182019050919050565b60006142fd602583615100565b91507f455243313135353a207472616e7366657220746f20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614363603283615100565b91507f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008301527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006020830152604082019050919050565b60006143c9600e83615111565b91507f22696d6167655f64617461223a220000000000000000000000000000000000006000830152600e82019050919050565b6000614409602383615100565b91507f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061446f602a83615100565b91507f455243313135353a20696e73756666696369656e742062616c616e636520666f60008301527f72207472616e73666572000000000000000000000000000000000000000000006020830152604082019050919050565b60006144d5600183615111565b91507f7d000000000000000000000000000000000000000000000000000000000000006000830152600182019050919050565b6000614515600983615111565b91507f2276616c7565223a2200000000000000000000000000000000000000000000006000830152600982019050919050565b6000614555600183615111565b91507f7b000000000000000000000000000000000000000000000000000000000000006000830152600182019050919050565b6000614595600f83615111565b91507f2261747472696275746573223a205b00000000000000000000000000000000006000830152600f82019050919050565b60006145d5601283615111565b91507f3c7376672069643d277765617261626c652d00000000000000000000000000006000830152601282019050919050565b6000614615600183615111565b91507f5d000000000000000000000000000000000000000000000000000000000000006000830152600182019050919050565b6000614655601d83615111565b91507f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c0000006000830152601d82019050919050565b6000614695601783615111565b91507f416363657373436f6e74726f6c3a206163636f756e74200000000000000000006000830152601782019050919050565b60006146d5602983615100565b91507f455243313135353a2073657474696e6720617070726f76616c2073746174757360008301527f20666f722073656c6600000000000000000000000000000000000000000000006020830152604082019050919050565b600061473b602983615100565b91507f455243313135353a206163636f756e747320616e6420696473206c656e67746860008301527f206d69736d6174636800000000000000000000000000000000000000000000006020830152604082019050919050565b60006147a1602883615100565b91507f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008301527f6d69736d617463680000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614807602183615100565b91507f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061486d601683615111565b91507f2274726169745f74797065223a22526172697479222c000000000000000000006000830152601682019050919050565b60006148ad601183615111565b91507f206973206d697373696e6720726f6c65200000000000000000000000000000006000830152601182019050919050565b60006148ed602f83615100565b91507f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008301527f20726f6c657320666f722073656c6600000000000000000000000000000000006020830152604082019050919050565b61494f816152a5565b82525050565b61495e816152a5565b82525050565b600061496f82614548565b915061497a82614230565b9150614986828a613dcd565b9150614991826140e4565b915061499c826140a4565b91506149a88289613dcd565b91506149b3826140e4565b91506149be826143bc565b91506149c9826145c8565b91506149d58288613d9c565b91506149e082613f98565b91506149ec8287613dcd565b91506149f782614270565b9150614a0282614588565b9150614a0d82614548565b9150614a1882614860565b9150614a2382614508565b9150614a2f8286613dcd565b9150614a3a826142b0565b9150614a4582613eb2565b9150614a5082614548565b9150614a5b826141f0565b9150614a6682614508565b9150614a728285613dcd565b9150614a7d826142b0565b9150614a8882613eb2565b9150614a9382614548565b9150614a9e82613ffe565b9150614aa982614508565b9150614ab58284613dcd565b9150614ac0826142b0565b9150614acb826144c8565b9150614ad682614608565b9150614ae1826144c8565b915081905098975050505050505050565b6000614afd82614648565b9150614b098284613d9c565b915081905092915050565b6000614b1f82614688565b9150614b2b8285613d9c565b9150614b36826148a0565b9150614b428284613d9c565b91508190509392505050565b600060a082019050614b636000830188613c9f565b614b706020830187613c9f565b8181036040830152614b828186613cae565b90508181036060830152614b968185613cae565b90508181036080830152614baa8184613d2a565b90509695505050505050565b600060a082019050614bcb6000830188613c9f565b614bd86020830187613c9f565b614be56040830186614955565b614bf26060830185614955565b8181036080830152614c048184613d2a565b90509695505050505050565b60006020820190508181036000830152614c2a8184613cae565b905092915050565b60006040820190508181036000830152614c4c8185613cae565b90508181036020830152614c608184613cae565b90509392505050565b6000602082019050614c7e6000830184613d0c565b92915050565b6000602082019050614c996000830184613d1b565b92915050565b60006020820190508181036000830152614cb98184613d63565b905092915050565b600060c0820190508181036000830152614cdb8189613d63565b90508181036020830152614cef8188613d63565b90508181036040830152614d038187613d63565b90508181036060830152614d178186613d63565b90508181036080830152614d2b8185613d63565b905081810360a0830152614d3f8184613d63565b9050979650505050505050565b60006020820190508181036000830152614d6581613e4c565b9050919050565b60006020820190508181036000830152614d8581613ef2565b9050919050565b60006020820190508181036000830152614da581613f32565b9050919050565b60006020820190508181036000830152614dc58161403e565b9050919050565b60006020820190508181036000830152614de581614124565b9050919050565b60006020820190508181036000830152614e058161418a565b9050919050565b60006020820190508181036000830152614e25816142f0565b9050919050565b60006020820190508181036000830152614e4581614356565b9050919050565b60006020820190508181036000830152614e65816143fc565b9050919050565b60006020820190508181036000830152614e8581614462565b9050919050565b60006020820190508181036000830152614ea5816146c8565b9050919050565b60006020820190508181036000830152614ec58161472e565b9050919050565b60006020820190508181036000830152614ee581614794565b9050919050565b60006020820190508181036000830152614f05816147fa565b9050919050565b60006020820190508181036000830152614f25816148e0565b9050919050565b6000602082019050614f416000830184614955565b92915050565b6000604082019050614f5c6000830185614955565b614f696020830184614955565b9392505050565b60008083356001602003843603038112614f8957600080fd5b80840192508235915067ffffffffffffffff821115614fa757600080fd5b602083019250600182023603831315614fbf57600080fd5b509250929050565b6000604051905081810181811067ffffffffffffffff82111715614fee57614fed6155cf565b5b8060405250919050565b600067ffffffffffffffff821115615013576150126155cf565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561503f5761503e6155cf565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561506b5761506a6155cf565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082905092915050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000615127826152a5565b9150615132836152a5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561516757615166615542565b5b828201905092915050565b600061517d826152a5565b9150615188836152a5565b92508261519857615197615571565b5b828204905092915050565b60006151ae826152a5565b91506151b9836152a5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156151f2576151f1615542565b5b828202905092915050565b6000615208826152a5565b9150615213836152a5565b92508282101561522657615225615542565b5b828203905092915050565b600061523c82615285565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b5b818110156152ce576152c3600082615640565b6001810190506152b0565b5050565b60006152dd826152a5565b9050919050565b6152ee83836150bb565b67ffffffffffffffff811115615307576153066155cf565b5b615311825461545c565b600080601f8411601f8411171561532e5761532b85615090565b90505b601f831115615361576020601f8501048101602085101561534d578190505b61535f6020601f8601048301826152af565b505b601f84116001811461538e576000851561537c578388013590505b615386868261548e565b8755506153e6565b601f1985168260005b828110156153bc57858a01358255600182019150602086019550602081019050615397565b878310156153d957858a01356153d5601f8a16826154f3565b8355505b6001600289020189555050505b5050505050505050565b82818337600083830152505050565b60005b8381101561541d578082015181840152602081019050615402565b8381111561542c576000848401525b50505050565b600061543d826152a5565b9150600082141561545157615450615542565b5b600182039050919050565b6000600282049050600182168061547457607f821691505b60208210811415615488576154876155a0565b5b50919050565b600061549a83836154f3565b9150826002028217905092915050565b60006154b5826152a5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156154e8576154e7615542565b5b600182019050919050565b600061550460001984600802615633565b1980831691505092915050565b600061551c826152a5565b9150615527836152a5565b92508261553757615536615571565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000819050919050565b6000601f19601f8301169050919050565b600082821b905092915050565b60008160e01c9050919050565b600082821c905092915050565b61565261564b6158d0565b8383615838565b5050565b600060443d101561566657615709565b60046000803e615677600051615626565b6308c379a081146156885750615709565b60405160043d036004823e80513d602482011167ffffffffffffffff821117156156b457505050615709565b808201805167ffffffffffffffff8111156156d3575050505050615709565b8060208301013d85018111156156ee57505050505050615709565b6156f782615608565b60208401016040528296505050505050505b90565b60006008830261573c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82615619565b6157468683615619565b95508019841693508086168417925050509392505050565b6157698383836152e4565b505050565b60008101600083016157808185614f70565b61578b81838661575e565b5050505060018101602083016157a18185614f70565b6157ac81838661575e565b5050505060028101604083016157c28185614f70565b6157cd81838661575e565b5050505060038101606083016157e38185614f70565b6157ee81838661575e565b5050505060048101608083016158048185614f70565b61580f81838661575e565b505050506005810160a083016158258185614f70565b61583081838661575e565b505050505050565b615841836152d2565b61585561584d826155fe565b84845461570c565b825550505050565b61586681615231565b811461587157600080fd5b50565b61587d81615243565b811461588857600080fd5b50565b6158948161524f565b811461589f57600080fd5b50565b6158ab81615259565b81146158b657600080fd5b50565b6158c2816152a5565b81146158cd57600080fd5b50565b60009056fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa2646970667358221220d0d284673742930ce05fa5fdadaa248092afb6b98f67a38fd81f6e36485c123164736f6c63430008000033
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061018d5760003560e01c8063731133e9116100de578063bd85b03911610097578063d547741f11610071578063d547741f146104bd578063e985e9c5146104d9578063f242432a14610509578063f5298aca146105255761018d565b8063bd85b0391461043a578063cf35bdd01461046a578063d53913931461049f5761018d565b8063731133e91461037857806391d148541461039457806395d89b41146103c4578063a217fddf146103e2578063a22cb46514610400578063a4b32de81461041c5761018d565b8063248a9ca31161014b57806336568abe1161012557806336568abe146102e05780634e1273f4146102fc5780634f558e791461032c5780636b20c4541461035c5761018d565b8063248a9ca3146102785780632eb2c2d6146102a85780632f2ff15d146102c45761018d565b8062fdd58e1461019257806301ffc9a7146101c2578063026189aa146101f257806306fdde031461020e5780630e89341c1461022c5780631f7fdffa1461025c575b600080fd5b6101ac60048036038101906101a791906139e1565b610541565b6040516101b99190614f2c565b60405180910390f35b6101dc60048036038101906101d79190613bb8565b61060a565b6040516101e99190614c69565b60405180910390f35b61020c60048036038101906102079190613c33565b61061c565b005b610216610676565b6040516102239190614c9f565b60405180910390f35b61024660048036038101906102419190613c0a565b610704565b6040516102539190614c9f565b60405180910390f35b610276600480360381019061027191906138fa565b6107e6565b005b610292600480360381019061028d9190613b53565b61082b565b60405161029f9190614c84565b60405180910390f35b6102c260048036038101906102bd919061372d565b61084b565b005b6102de60048036038101906102d99190613b7c565b6108ec565b005b6102fa60048036038101906102f59190613b7c565b610915565b005b61031660048036038101906103119190613ae7565b610998565b6040516103239190614c10565b60405180910390f35b61034660048036038101906103419190613c0a565b610b49565b6040516103539190614c69565b60405180910390f35b6103766004803603810190610371919061387b565b610b5d565b005b610392600480360381019061038d9190613a6c565b610bfa565b005b6103ae60048036038101906103a99190613b7c565b610c3f565b6040516103bb9190614c69565b60405180910390f35b6103cc610caa565b6040516103d99190614c9f565b60405180910390f35b6103ea610d38565b6040516103f79190614c84565b60405180910390f35b61041a600480360381019061041591906139a5565b610d3f565b005b610424610ec0565b6040516104319190614c84565b60405180910390f35b610454600480360381019061044f9190613c0a565b610ee4565b6040516104619190614f2c565b60405180910390f35b610484600480360381019061047f9190613c0a565b610f01565b60405161049696959493929190614cc1565b60405180910390f35b6104a761126d565b6040516104b49190614c84565b60405180910390f35b6104d760048036038101906104d29190613b7c565b611291565b005b6104f360048036038101906104ee91906136f1565b6112ba565b6040516105009190614c69565b60405180910390f35b610523600480360381019061051e91906137ec565b61134e565b005b61053f600480360381019061053a9190613a1d565b6113ef565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156105b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105a990614dac565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60006106158261148c565b9050919050565b7fb1fadd3142ab2ad7f1337ea4d97112bcc8337fc11ce5b20cb04ad038adf9981961064e81610649611506565b61150e565b8160076000858152602001908152602001600020818161066e919061576e565b905050505050565b600580546106839061545c565b80601f01602080910402602001604051908101604052809291908181526020018280546106af9061545c565b80156106fc5780601f106106d1576101008083540402835291602001916106fc565b820191906000526020600020905b8154815290600101906020018083116106df57829003601f168201915b505050505081565b60606107c0600760008481526020019081526020016000206000016007600085815260200190815260200160002060010161073e856115ab565b600760008781526020019081526020016000206005016007600088815260200190815260200160002060020160076000898152602001908152602001600020600301600760008a81526020019081526020016000206004016040516020016107ac9796959493929190614964565b604051602081830303815290604052611758565b6040516020016107d09190614af2565b6040516020818303038152906040529050919050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a661081881610813611506565b61150e565b61082485858585611916565b5050505050565b600060036000838152602001908152602001600020600101549050919050565b610853611506565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610899575061089885610893611506565b6112ba565b5b6108d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108cf90614e2c565b60405180910390fd5b6108e58585858585611b80565b5050505050565b6108f58261082b565b61090681610901611506565b61150e565b6109108383611ee0565b505050565b61091d611506565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461098a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098190614f0c565b60405180910390fd5b6109948282611fc1565b5050565b606081518351146109de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d590614eac565b60405180910390fd5b6000835167ffffffffffffffff811115610a21577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610a4f5781602001602082028036833780820191505090505b50905060005b8451811015610b3e57610ae8858281518110610a9a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151858381518110610adb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151610541565b828281518110610b21577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080610b37906154aa565b9050610a55565b508091505092915050565b600080610b5583610ee4565b119050919050565b610b65611506565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610bab5750610baa83610ba5611506565b6112ba565b5b610bea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be190614dec565b60405180910390fd5b610bf58383836120a3565b505050565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6610c2c81610c27611506565b61150e565b610c38858585856123a0565b5050505050565b60006003600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60068054610cb79061545c565b80601f0160208091040260200160405190810160405280929190818152602001828054610ce39061545c565b8015610d305780601f10610d0557610100808354040283529160200191610d30565b820191906000526020600020905b815481529060010190602001808311610d1357829003601f168201915b505050505081565b6000801b81565b8173ffffffffffffffffffffffffffffffffffffffff16610d5e611506565b73ffffffffffffffffffffffffffffffffffffffff161415610db5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dac90614e8c565b60405180910390fd5b8060016000610dc2611506565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610e6f611506565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610eb49190614c69565b60405180910390a35050565b7fb1fadd3142ab2ad7f1337ea4d97112bcc8337fc11ce5b20cb04ad038adf9981981565b600060046000838152602001908152602001600020549050919050565b6007602052806000526040600020600091509050806000018054610f249061545c565b80601f0160208091040260200160405190810160405280929190818152602001828054610f509061545c565b8015610f9d5780601f10610f7257610100808354040283529160200191610f9d565b820191906000526020600020905b815481529060010190602001808311610f8057829003601f168201915b505050505090806001018054610fb29061545c565b80601f0160208091040260200160405190810160405280929190818152602001828054610fde9061545c565b801561102b5780601f106110005761010080835404028352916020019161102b565b820191906000526020600020905b81548152906001019060200180831161100e57829003601f168201915b5050505050908060020180546110409061545c565b80601f016020809104026020016040519081016040528092919081815260200182805461106c9061545c565b80156110b95780601f1061108e576101008083540402835291602001916110b9565b820191906000526020600020905b81548152906001019060200180831161109c57829003601f168201915b5050505050908060030180546110ce9061545c565b80601f01602080910402602001604051908101604052809291908181526020018280546110fa9061545c565b80156111475780601f1061111c57610100808354040283529160200191611147565b820191906000526020600020905b81548152906001019060200180831161112a57829003601f168201915b50505050509080600401805461115c9061545c565b80601f01602080910402602001604051908101604052809291908181526020018280546111889061545c565b80156111d55780601f106111aa576101008083540402835291602001916111d5565b820191906000526020600020905b8154815290600101906020018083116111b857829003601f168201915b5050505050908060050180546111ea9061545c565b80601f01602080910402602001604051908101604052809291908181526020018280546112169061545c565b80156112635780601f1061123857610100808354040283529160200191611263565b820191906000526020600020905b81548152906001019060200180831161124657829003601f168201915b5050505050905086565b7f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b61129a8261082b565b6112ab816112a6611506565b61150e565b6112b58383611fc1565b505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611356611506565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061139c575061139b85611396611506565b6112ba565b5b6113db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d290614dec565b60405180910390fd5b6113e88585858585612536565b5050505050565b6113f7611506565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061143d575061143c83611437611506565b6112ba565b5b61147c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147390614dec565b60405180910390fd5b6114878383836127b8565b505050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806114ff57506114fe826129d5565b5b9050919050565b600033905090565b6115188282610c3f565b6115a75761153d8173ffffffffffffffffffffffffffffffffffffffff166014612ab7565b61154b8360001c6020612ab7565b60405160200161155c929190614b14565b6040516020818303038152906040526040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159e9190614c9f565b60405180910390fd5b5050565b606060008214156115f3576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611753565b600082905060005b6000821461162557808061160e906154aa565b915050600a8261161e9190615172565b91506115fb565b60008167ffffffffffffffff811115611667577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156116995781602001600182028036833780820191505090505b5090505b6000851461174c576001826116b291906151fd565b9150600a856116c19190615511565b60306116cd919061511c565b60f81b818381518110611709577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856117459190615172565b945061169d565b8093505050505b919050565b606060008251905060008114156117815760405180602001604052806000815250915050611911565b60006003600283611792919061511c565b61179c9190615172565b60046117a891906151a3565b905060006020826117b9919061511c565b67ffffffffffffffff8111156117f8577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561182a5781602001600182028036833780820191505090505b50905060006040518060600160405280604081526020016158d6604091399050600181016020830160005b868110156118ce5760038101905062ffffff818a015116603f8160121c168401518060081b905060ff603f83600c1c1686015116810190508060081b905060ff603f8360061c1686015116810190508060081b905060ff603f831686015116810190508060e01b90508084526004840193505050611855565b5060038606600181146118e857600281146118f857611903565b613d3d60f01b6002830352611903565b603d60f81b60018303525b508484525050819450505050505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611986576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197d90614eec565b60405180910390fd5b81518351146119ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c190614ecc565b60405180910390fd5b60006119d4611506565b90506119e581600087878787612db1565b60005b8451811015611aea57838181518110611a2a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151600080878481518110611a6e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ad0919061511c565b925050819055508080611ae2906154aa565b9150506119e8565b508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611b62929190614c32565b60405180910390a4611b7981600087878787612dc7565b5050505050565b8151835114611bc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bbb90614ecc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611c34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2b90614e0c565b60405180910390fd5b6000611c3e611506565b9050611c4e818787878787612db1565b60005b8451811015611e4b576000858281518110611c95577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190506000858381518110611cda577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611d7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7290614e6c565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e30919061511c565b9250508190555050505080611e44906154aa565b9050611c51565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611ec2929190614c32565b60405180910390a4611ed8818787878787612dc7565b505050505050565b611eea8282610c3f565b611fbd5760016003600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611f62611506565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b611fcb8282610c3f565b1561209f5760006003600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550612044611506565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612113576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210a90614e4c565b60405180910390fd5b8051825114612157576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214e90614ecc565b60405180910390fd5b6000612161611506565b905061218181856000868660405180602001604052806000815250612db1565b60005b835181101561231a5760008482815181106121c8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600084838151811061220d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600080600084815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156122ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a590614dcc565b60405180910390fd5b81810360008085815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050508080612312906154aa565b915050612184565b50600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051612392929190614c32565b60405180910390a450505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612410576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240790614eec565b60405180910390fd5b600061241a611506565b905061243b8160008761242c88612f97565b61243588612f97565b87612db1565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461249a919061511c565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051612518929190614f47565b60405180910390a461252f8160008787878761305d565b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156125a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259d90614e0c565b60405180910390fd5b60006125b0611506565b90506125d08187876125c188612f97565b6125ca88612f97565b87612db1565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015612667576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265e90614e6c565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461271c919061511c565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628888604051612799929190614f47565b60405180910390a46127af82888888888861305d565b50505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612828576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161281f90614e4c565b60405180910390fd5b6000612832611506565b90506128628185600061284487612f97565b61284d87612f97565b60405180602001604052806000815250612db1565b600080600085815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156128f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f090614dcc565b60405180910390fd5b82810360008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6287876040516129c6929190614f47565b60405180910390a45050505050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612aa057507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612ab05750612aaf8261322d565b5b9050919050565b606060006002836002612aca91906151a3565b612ad4919061511c565b67ffffffffffffffff811115612b13577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612b455781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110612ba3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110612c2d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006001846002612c6d91906151a3565b612c77919061511c565b90505b6001811115612d63577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110612cdf577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b828281518110612d1c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c945080612d5c90615432565b9050612c7a565b5060008414612da7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d9e90614d6c565b60405180910390fd5b8091505092915050565b612dbf868686868686613297565b505050505050565b612de68473ffffffffffffffffffffffffffffffffffffffff166134a9565b15612f8f578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401612e2c959493929190614b4e565b602060405180830381600087803b158015612e4657600080fd5b505af1925050508015612e7757506040513d601f19601f82011682018060405250810190612e749190613be1565b60015b612f0657612e83615656565b80612e8e5750612ecb565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ec29190614c9f565b60405180910390fd5b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612efd90614d4c565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612f8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f8490614d8c565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff811115612fdc577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561300a5781602001602082028036833780820191505090505b5090508281600081518110613048577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080915050919050565b61307c8473ffffffffffffffffffffffffffffffffffffffff166134a9565b15613225578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b81526004016130c2959493929190614bb6565b602060405180830381600087803b1580156130dc57600080fd5b505af192505050801561310d57506040513d601f19601f8201168201806040525081019061310a9190613be1565b60015b61319c57613119615656565b806131245750613161565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131589190614c9f565b60405180910390fd5b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161319390614d4c565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614613223576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161321a90614d8c565b60405180910390fd5b505b505050505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6132a58686868686866134bc565b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156133a35760005b83518110156133a15782818151811061331f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015160046000868481518110613364577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015181526020019081526020016000206000828254613389919061511c565b925050819055508061339a906154aa565b90506132dd565b505b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156134a15760005b835181101561349f5782818151811061341d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015160046000868481518110613462577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101518152602001908152602001600020600082825461348791906151fd565b9250508190555080613498906154aa565b90506133db565b505b505050505050565b600080823b905060008111915050919050565b505050505050565b60006134d76134d284614ff8565b614fc7565b905080838252602082019050828560208602820111156134f657600080fd5b60005b85811015613526578161350c88826135da565b8452602084019350602083019250506001810190506134f9565b5050509392505050565b600061354361353e84615024565b614fc7565b9050808382526020820190508285602086028201111561356257600080fd5b60005b85811015613592578161357888826136dc565b845260208401935060208301925050600181019050613565565b5050509392505050565b60006135af6135aa84615050565b614fc7565b9050828152602081018484840111156135c757600080fd5b6135d28482856153f0565b509392505050565b6000813590506135e98161585d565b92915050565b600082601f83011261360057600080fd5b81356136108482602086016134c4565b91505092915050565b600082601f83011261362a57600080fd5b813561363a848260208601613530565b91505092915050565b60008135905061365281615874565b92915050565b6000813590506136678161588b565b92915050565b60008135905061367c816158a2565b92915050565b600081519050613691816158a2565b92915050565b600082601f8301126136a857600080fd5b81356136b884826020860161359c565b91505092915050565b600060c082840312156136d357600080fd5b81905092915050565b6000813590506136eb816158b9565b92915050565b6000806040838503121561370457600080fd5b6000613712858286016135da565b9250506020613723858286016135da565b9150509250929050565b600080600080600060a0868803121561374557600080fd5b6000613753888289016135da565b9550506020613764888289016135da565b945050604086013567ffffffffffffffff81111561378157600080fd5b61378d88828901613619565b935050606086013567ffffffffffffffff8111156137aa57600080fd5b6137b688828901613619565b925050608086013567ffffffffffffffff8111156137d357600080fd5b6137df88828901613697565b9150509295509295909350565b600080600080600060a0868803121561380457600080fd5b6000613812888289016135da565b9550506020613823888289016135da565b9450506040613834888289016136dc565b9350506060613845888289016136dc565b925050608086013567ffffffffffffffff81111561386257600080fd5b61386e88828901613697565b9150509295509295909350565b60008060006060848603121561389057600080fd5b600061389e868287016135da565b935050602084013567ffffffffffffffff8111156138bb57600080fd5b6138c786828701613619565b925050604084013567ffffffffffffffff8111156138e457600080fd5b6138f086828701613619565b9150509250925092565b6000806000806080858703121561391057600080fd5b600061391e878288016135da565b945050602085013567ffffffffffffffff81111561393b57600080fd5b61394787828801613619565b935050604085013567ffffffffffffffff81111561396457600080fd5b61397087828801613619565b925050606085013567ffffffffffffffff81111561398d57600080fd5b61399987828801613697565b91505092959194509250565b600080604083850312156139b857600080fd5b60006139c6858286016135da565b92505060206139d785828601613643565b9150509250929050565b600080604083850312156139f457600080fd5b6000613a02858286016135da565b9250506020613a13858286016136dc565b9150509250929050565b600080600060608486031215613a3257600080fd5b6000613a40868287016135da565b9350506020613a51868287016136dc565b9250506040613a62868287016136dc565b9150509250925092565b60008060008060808587031215613a8257600080fd5b6000613a90878288016135da565b9450506020613aa1878288016136dc565b9350506040613ab2878288016136dc565b925050606085013567ffffffffffffffff811115613acf57600080fd5b613adb87828801613697565b91505092959194509250565b60008060408385031215613afa57600080fd5b600083013567ffffffffffffffff811115613b1457600080fd5b613b20858286016135ef565b925050602083013567ffffffffffffffff811115613b3d57600080fd5b613b4985828601613619565b9150509250929050565b600060208284031215613b6557600080fd5b6000613b7384828501613658565b91505092915050565b60008060408385031215613b8f57600080fd5b6000613b9d85828601613658565b9250506020613bae858286016135da565b9150509250929050565b600060208284031215613bca57600080fd5b6000613bd88482850161366d565b91505092915050565b600060208284031215613bf357600080fd5b6000613c0184828501613682565b91505092915050565b600060208284031215613c1c57600080fd5b6000613c2a848285016136dc565b91505092915050565b60008060408385031215613c4657600080fd5b6000613c54858286016136dc565b925050602083013567ffffffffffffffff811115613c7157600080fd5b613c7d858286016136c1565b9150509250929050565b6000613c938383614946565b60208301905092915050565b613ca881615231565b82525050565b6000613cb9826150a5565b613cc381856150de565b9350613cce83615080565b8060005b83811015613cff578151613ce68882613c87565b9750613cf1836150d1565b925050600181019050613cd2565b5085935050505092915050565b613d1581615243565b82525050565b613d248161524f565b82525050565b6000613d35826150b0565b613d3f81856150ef565b9350613d4f8185602086016153ff565b613d5881615608565b840191505092915050565b6000613d6e826150c6565b613d788185615100565b9350613d888185602086016153ff565b613d9181615608565b840191505092915050565b6000613da7826150c6565b613db18185615111565b9350613dc18185602086016153ff565b80840191505092915050565b60008154613dda8161545c565b613de48186615111565b94506001821660008114613dff5760018114613e1057613e43565b60ff19831686528186019350613e43565b613e1985615090565b60005b83811015613e3b57815481890152600182019150602081019050613e1c565b838801955050505b50505092915050565b6000613e59603483615100565b91507f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008301527f526563656976657220696d706c656d656e7465720000000000000000000000006020830152604082019050919050565b6000613ebf600283615111565b91507f7d2c0000000000000000000000000000000000000000000000000000000000006000830152600282019050919050565b6000613eff602083615100565b91507f537472696e67733a20686578206c656e67746820696e73756666696369656e746000830152602082019050919050565b6000613f3f602883615100565b91507f455243313135353a204552433131353552656365697665722072656a6563746560008301527f6420746f6b656e730000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613fa5603983615111565b91507f272076696577426f783d273020302032342032342720786d6c6e733d2768747460008301527f703a2f2f7777772e77332e6f72672f323030302f737667273e000000000000006020830152603982019050919050565b600061400b601583615111565b91507f2274726169745f74797065223a225468656d65222c00000000000000000000006000830152601582019050919050565b600061404b602b83615100565b91507f455243313135353a2062616c616e636520717565727920666f7220746865207a60008301527f65726f20616464726573730000000000000000000000000000000000000000006020830152604082019050919050565b60006140b1600f83615111565b91507f226465736372697074696f6e223a2200000000000000000000000000000000006000830152600f82019050919050565b60006140f1600283615111565b91507f222c0000000000000000000000000000000000000000000000000000000000006000830152600282019050919050565b6000614131602483615100565b91507f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008301527f616e6365000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614197602983615100565b91507f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008301527f20617070726f76656400000000000000000000000000000000000000000000006020830152604082019050919050565b60006141fd601483615111565b91507f2274726169745f74797065223a22536c6f74222c0000000000000000000000006000830152601482019050919050565b600061423d600883615111565b91507f226e616d65223a220000000000000000000000000000000000000000000000006000830152600882019050919050565b600061427d600883615111565b91507f3c2f7376673e222c0000000000000000000000000000000000000000000000006000830152600882019050919050565b60006142bd600183615111565b91507f22000000000000000000000000000000000000000000000000000000000000006000830152600182019050919050565b60006142fd602583615100565b91507f455243313135353a207472616e7366657220746f20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614363603283615100565b91507f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008301527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006020830152604082019050919050565b60006143c9600e83615111565b91507f22696d6167655f64617461223a220000000000000000000000000000000000006000830152600e82019050919050565b6000614409602383615100565b91507f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061446f602a83615100565b91507f455243313135353a20696e73756666696369656e742062616c616e636520666f60008301527f72207472616e73666572000000000000000000000000000000000000000000006020830152604082019050919050565b60006144d5600183615111565b91507f7d000000000000000000000000000000000000000000000000000000000000006000830152600182019050919050565b6000614515600983615111565b91507f2276616c7565223a2200000000000000000000000000000000000000000000006000830152600982019050919050565b6000614555600183615111565b91507f7b000000000000000000000000000000000000000000000000000000000000006000830152600182019050919050565b6000614595600f83615111565b91507f2261747472696275746573223a205b00000000000000000000000000000000006000830152600f82019050919050565b60006145d5601283615111565b91507f3c7376672069643d277765617261626c652d00000000000000000000000000006000830152601282019050919050565b6000614615600183615111565b91507f5d000000000000000000000000000000000000000000000000000000000000006000830152600182019050919050565b6000614655601d83615111565b91507f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c0000006000830152601d82019050919050565b6000614695601783615111565b91507f416363657373436f6e74726f6c3a206163636f756e74200000000000000000006000830152601782019050919050565b60006146d5602983615100565b91507f455243313135353a2073657474696e6720617070726f76616c2073746174757360008301527f20666f722073656c6600000000000000000000000000000000000000000000006020830152604082019050919050565b600061473b602983615100565b91507f455243313135353a206163636f756e747320616e6420696473206c656e67746860008301527f206d69736d6174636800000000000000000000000000000000000000000000006020830152604082019050919050565b60006147a1602883615100565b91507f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008301527f6d69736d617463680000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614807602183615100565b91507f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061486d601683615111565b91507f2274726169745f74797065223a22526172697479222c000000000000000000006000830152601682019050919050565b60006148ad601183615111565b91507f206973206d697373696e6720726f6c65200000000000000000000000000000006000830152601182019050919050565b60006148ed602f83615100565b91507f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008301527f20726f6c657320666f722073656c6600000000000000000000000000000000006020830152604082019050919050565b61494f816152a5565b82525050565b61495e816152a5565b82525050565b600061496f82614548565b915061497a82614230565b9150614986828a613dcd565b9150614991826140e4565b915061499c826140a4565b91506149a88289613dcd565b91506149b3826140e4565b91506149be826143bc565b91506149c9826145c8565b91506149d58288613d9c565b91506149e082613f98565b91506149ec8287613dcd565b91506149f782614270565b9150614a0282614588565b9150614a0d82614548565b9150614a1882614860565b9150614a2382614508565b9150614a2f8286613dcd565b9150614a3a826142b0565b9150614a4582613eb2565b9150614a5082614548565b9150614a5b826141f0565b9150614a6682614508565b9150614a728285613dcd565b9150614a7d826142b0565b9150614a8882613eb2565b9150614a9382614548565b9150614a9e82613ffe565b9150614aa982614508565b9150614ab58284613dcd565b9150614ac0826142b0565b9150614acb826144c8565b9150614ad682614608565b9150614ae1826144c8565b915081905098975050505050505050565b6000614afd82614648565b9150614b098284613d9c565b915081905092915050565b6000614b1f82614688565b9150614b2b8285613d9c565b9150614b36826148a0565b9150614b428284613d9c565b91508190509392505050565b600060a082019050614b636000830188613c9f565b614b706020830187613c9f565b8181036040830152614b828186613cae565b90508181036060830152614b968185613cae565b90508181036080830152614baa8184613d2a565b90509695505050505050565b600060a082019050614bcb6000830188613c9f565b614bd86020830187613c9f565b614be56040830186614955565b614bf26060830185614955565b8181036080830152614c048184613d2a565b90509695505050505050565b60006020820190508181036000830152614c2a8184613cae565b905092915050565b60006040820190508181036000830152614c4c8185613cae565b90508181036020830152614c608184613cae565b90509392505050565b6000602082019050614c7e6000830184613d0c565b92915050565b6000602082019050614c996000830184613d1b565b92915050565b60006020820190508181036000830152614cb98184613d63565b905092915050565b600060c0820190508181036000830152614cdb8189613d63565b90508181036020830152614cef8188613d63565b90508181036040830152614d038187613d63565b90508181036060830152614d178186613d63565b90508181036080830152614d2b8185613d63565b905081810360a0830152614d3f8184613d63565b9050979650505050505050565b60006020820190508181036000830152614d6581613e4c565b9050919050565b60006020820190508181036000830152614d8581613ef2565b9050919050565b60006020820190508181036000830152614da581613f32565b9050919050565b60006020820190508181036000830152614dc58161403e565b9050919050565b60006020820190508181036000830152614de581614124565b9050919050565b60006020820190508181036000830152614e058161418a565b9050919050565b60006020820190508181036000830152614e25816142f0565b9050919050565b60006020820190508181036000830152614e4581614356565b9050919050565b60006020820190508181036000830152614e65816143fc565b9050919050565b60006020820190508181036000830152614e8581614462565b9050919050565b60006020820190508181036000830152614ea5816146c8565b9050919050565b60006020820190508181036000830152614ec58161472e565b9050919050565b60006020820190508181036000830152614ee581614794565b9050919050565b60006020820190508181036000830152614f05816147fa565b9050919050565b60006020820190508181036000830152614f25816148e0565b9050919050565b6000602082019050614f416000830184614955565b92915050565b6000604082019050614f5c6000830185614955565b614f696020830184614955565b9392505050565b60008083356001602003843603038112614f8957600080fd5b80840192508235915067ffffffffffffffff821115614fa757600080fd5b602083019250600182023603831315614fbf57600080fd5b509250929050565b6000604051905081810181811067ffffffffffffffff82111715614fee57614fed6155cf565b5b8060405250919050565b600067ffffffffffffffff821115615013576150126155cf565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561503f5761503e6155cf565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561506b5761506a6155cf565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082905092915050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000615127826152a5565b9150615132836152a5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561516757615166615542565b5b828201905092915050565b600061517d826152a5565b9150615188836152a5565b92508261519857615197615571565b5b828204905092915050565b60006151ae826152a5565b91506151b9836152a5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156151f2576151f1615542565b5b828202905092915050565b6000615208826152a5565b9150615213836152a5565b92508282101561522657615225615542565b5b828203905092915050565b600061523c82615285565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b5b818110156152ce576152c3600082615640565b6001810190506152b0565b5050565b60006152dd826152a5565b9050919050565b6152ee83836150bb565b67ffffffffffffffff811115615307576153066155cf565b5b615311825461545c565b600080601f8411601f8411171561532e5761532b85615090565b90505b601f831115615361576020601f8501048101602085101561534d578190505b61535f6020601f8601048301826152af565b505b601f84116001811461538e576000851561537c578388013590505b615386868261548e565b8755506153e6565b601f1985168260005b828110156153bc57858a01358255600182019150602086019550602081019050615397565b878310156153d957858a01356153d5601f8a16826154f3565b8355505b6001600289020189555050505b5050505050505050565b82818337600083830152505050565b60005b8381101561541d578082015181840152602081019050615402565b8381111561542c576000848401525b50505050565b600061543d826152a5565b9150600082141561545157615450615542565b5b600182039050919050565b6000600282049050600182168061547457607f821691505b60208210811415615488576154876155a0565b5b50919050565b600061549a83836154f3565b9150826002028217905092915050565b60006154b5826152a5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156154e8576154e7615542565b5b600182019050919050565b600061550460001984600802615633565b1980831691505092915050565b600061551c826152a5565b9150615527836152a5565b92508261553757615536615571565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000819050919050565b6000601f19601f8301169050919050565b600082821b905092915050565b60008160e01c9050919050565b600082821c905092915050565b61565261564b6158d0565b8383615838565b5050565b600060443d101561566657615709565b60046000803e615677600051615626565b6308c379a081146156885750615709565b60405160043d036004823e80513d602482011167ffffffffffffffff821117156156b457505050615709565b808201805167ffffffffffffffff8111156156d3575050505050615709565b8060208301013d85018111156156ee57505050505050615709565b6156f782615608565b60208401016040528296505050505050505b90565b60006008830261573c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82615619565b6157468683615619565b95508019841693508086168417925050509392505050565b6157698383836152e4565b505050565b60008101600083016157808185614f70565b61578b81838661575e565b5050505060018101602083016157a18185614f70565b6157ac81838661575e565b5050505060028101604083016157c28185614f70565b6157cd81838661575e565b5050505060038101606083016157e38185614f70565b6157ee81838661575e565b5050505060048101608083016158048185614f70565b61580f81838661575e565b505050506005810160a083016158258185614f70565b61583081838661575e565b505050505050565b615841836152d2565b61585561584d826155fe565b84845461570c565b825550505050565b61586681615231565b811461587157600080fd5b50565b61587d81615243565b811461588857600080fd5b50565b6158948161524f565b811461589f57600080fd5b50565b6158ab81615259565b81146158b657600080fd5b50565b6158c2816152a5565b81146158cd57600080fd5b50565b60009056fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa2646970667358221220d0d284673742930ce05fa5fdadaa248092afb6b98f67a38fd81f6e36485c123164736f6c63430008000033
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.