Source Code
Overview
ETH Balance
0 ETH
More Info
ContractCreator
Multichain Info
N/A
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Latest 14 internal transactions
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
5180977 | 63 days ago | 0 ETH | ||||
5180977 | 63 days ago | 0 ETH | ||||
5180977 | 63 days ago | 0 ETH | ||||
5180977 | 63 days ago | 0 ETH | ||||
5180977 | 63 days ago | 0 ETH | ||||
5180977 | 63 days ago | 0 ETH | ||||
5180977 | 63 days ago | 0 ETH | ||||
5180977 | 63 days ago | 0 ETH | ||||
5180977 | 63 days ago | 0 ETH | ||||
5180977 | 63 days ago | 0 ETH | ||||
5180977 | 63 days ago | 0 ETH | ||||
5180977 | 63 days ago | 0 ETH | ||||
5180977 | 63 days ago | 0 ETH | ||||
5180977 | 63 days ago | Contract Creation | 0 ETH |
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Source Code Verified (Exact Match)
Contract Name:
Gold_signed
Compiler Version
v0.8.24+commit.e11b9ed9
ZkSolc Version
v1.5.9
Optimization Enabled:
Yes with Mode 3
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.24; import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol"; import "@openzeppelin/contracts/access/AccessControl.sol"; import "@openzeppelin/contracts/utils/cryptography/draft-EIP712.sol"; import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; contract Gold_signed is ERC1155, EIP712, AccessControl { event Mint(string actionId); event Burn(string actionId); bytes32 private constant ADMIN_ROLE = keccak256("ADMIN_ROLE"); bytes32 private constant MINT_TYPEHASH = keccak256("Mint(address to,uint256 amount,uint256 serverId,string actionId,uint256 nonce)"); bytes32 private constant BURN_TYPEHASH = keccak256("Burn(address from,uint256 amount,uint256 serverId,string actionId,uint256 nonce)"); mapping(address => uint256) private nonces; constructor(string memory _uri, address _admin) ERC1155(_uri) EIP712("Gold_signed", "1") { _grantRole(DEFAULT_ADMIN_ROLE, msg.sender); _grantRole(DEFAULT_ADMIN_ROLE, _admin); _grantRole(ADMIN_ROLE, msg.sender); _grantRole(ADMIN_ROLE, _admin); } /*╔═════════════════════════════╗ ║ Hash & verify ║ ╚═════════════════════════════╝*/ function _hash(address account, uint256 amount, uint256 serverId, string memory actionId, uint256 nonce, bytes32 typeHash) internal view returns (bytes32) { return _hashTypedDataV4(keccak256(abi.encode(typeHash, account, amount, serverId, keccak256(bytes(actionId)), nonce))); } function _verify(bytes32 digest, bytes memory signature) internal view returns (bool) { return hasRole(ADMIN_ROLE, ECDSA.recover(digest, signature)); } /** * @dev Verifies an EIP-712 signature for mint or burn operations. */ function _verifySignature(address account, uint256 amount, uint256 serverId, string memory actionId, uint256 nonce, bytes32 typeHash, bytes memory signature) internal view returns (bool) { bytes32 digest = _hash(account, amount, serverId, actionId, nonce, typeHash); return _verify(digest, signature); } /*╔═════════════════════════════╗ ║ Mint/Burn ║ ╚═════════════════════════════╝*/ /** * @dev Performs a mint operation after validating the signature. */ function mint(uint256 amount, uint256 serverId, string memory actionId, bytes memory signature) external { // Verify the signature require(_verifySignature(msg.sender, amount, serverId, actionId, nonces[msg.sender], MINT_TYPEHASH, signature), "Invalid signature"); nonces[msg.sender]++; // _mint(to, id, amount, data); _mint(msg.sender, serverId, amount, ""); emit Mint(actionId); } /** * @dev Performs a burn operation after validating the signature. */ function burn(uint256 amount, uint256 serverId, string memory actionId, bytes memory signature) external { // Verify the signature require(_verifySignature(msg.sender, amount, serverId, actionId, nonces[msg.sender], BURN_TYPEHASH, signature), "Invalid signature"); nonces[msg.sender]++; // _burn(to, id, amount); _burn(msg.sender, serverId, amount); emit Burn(actionId); } function getNonce(address user) external view onlyRole(ADMIN_ROLE) returns (uint256) { return nonces[user]; } function adminMint(address player, uint256 serverId, uint256 amount) external onlyRole(ADMIN_ROLE) { _mint(player, serverId, amount, ""); } function adminBurn(address player, uint256 serverId, uint256 amount) external onlyRole(ADMIN_ROLE) { _burn(player, serverId, amount); } function addAdmin(address account) external onlyRole(DEFAULT_ADMIN_ROLE) { _grantRole(ADMIN_ROLE, account); } function removeAdmin(address account) external onlyRole(DEFAULT_ADMIN_ROLE) { _revokeRole(ADMIN_ROLE, account); } // Overrides function safeTransferFrom(address, address, uint256, uint256, bytes memory) public override { revert("Token transfers are disabled"); // Reject all transfers } function safeBatchTransferFrom(address, address, uint256[] memory, uint256[] memory, bytes memory) public override { revert("Token transfers are disabled"); // Reject all batch transfers } function supportsInterface(bytes4 interfaceId) public view virtual override(ERC1155, AccessControl) returns (bool) { return super.supportsInterface(interfaceId); } function contractURI() public view returns (string memory) { return uri(0); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (access/AccessControl.sol) pragma solidity ^0.8.0; import "./IAccessControl.sol"; import "../utils/Context.sol"; import "../utils/Strings.sol"; import "../utils/introspection/ERC165.sol"; /** * @dev Contract module that allows children to implement role-based access * control mechanisms. This is a lightweight version that doesn't allow enumerating role * members except through off-chain means by accessing the contract event logs. Some * applications may benefit from on-chain enumerability, for those cases see * {AccessControlEnumerable}. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ``` * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ``` * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. */ abstract contract AccessControl is Context, IAccessControl, ERC165 { struct RoleData { mapping(address => bool) members; bytes32 adminRole; } mapping(bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Modifier that checks that an account has a specific role. Reverts * with a standardized message including the required role. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ * * _Available since v4.1._ */ modifier onlyRole(bytes32 role) { _checkRole(role); _; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view virtual override returns (bool) { return _roles[role].members[account]; } /** * @dev Revert with a standard message if `_msgSender()` is missing `role`. * Overriding this function changes the behavior of the {onlyRole} modifier. * * Format of the revert message is described in {_checkRole}. * * _Available since v4.6._ */ function _checkRole(bytes32 role) internal view virtual { _checkRole(role, _msgSender()); } /** * @dev Revert with a standard message if `account` is missing `role`. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ */ function _checkRole(bytes32 role, address account) internal view virtual { if (!hasRole(role, account)) { revert( string( abi.encodePacked( "AccessControl: account ", Strings.toHexString(uint160(account), 20), " is missing role ", Strings.toHexString(uint256(role), 32) ) ) ); } } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view virtual override returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been revoked `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) public virtual override { require(account == _msgSender(), "AccessControl: can only renounce roles for self"); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== * * NOTE: This function is deprecated in favor of {_grantRole}. */ function _setupRole(bytes32 role, address account) internal virtual { _grantRole(role, account); } /** * @dev Sets `adminRole` as ``role``'s admin role. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { bytes32 previousAdminRole = getRoleAdmin(role); _roles[role].adminRole = adminRole; emit RoleAdminChanged(role, previousAdminRole, adminRole); } /** * @dev Grants `role` to `account`. * * Internal function without access restriction. */ function _grantRole(bytes32 role, address account) internal virtual { if (!hasRole(role, account)) { _roles[role].members[account] = true; emit RoleGranted(role, account, _msgSender()); } } /** * @dev Revokes `role` from `account`. * * Internal function without access restriction. */ function _revokeRole(bytes32 role, address account) internal virtual { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC1155/ERC1155.sol) pragma solidity ^0.8.0; import "./IERC1155.sol"; import "./IERC1155Receiver.sol"; import "./extensions/IERC1155MetadataURI.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of the basic standard multi-token. * See https://eips.ethereum.org/EIPS/eip-1155 * Originally based on code by Enjin: https://github.com/enjin/erc-1155 * * _Available since v3.1._ */ contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI { using Address for address; // Mapping from token ID to account balances mapping(uint256 => mapping(address => uint256)) private _balances; // Mapping from account to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json string private _uri; /** * @dev See {_setURI}. */ constructor(string memory uri_) { _setURI(uri_); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC1155).interfaceId || interfaceId == type(IERC1155MetadataURI).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC1155MetadataURI-uri}. * * This implementation returns the same URI for *all* token types. It relies * on the token type ID substitution mechanism * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP]. * * Clients calling this function must replace the `\{id\}` substring with the * actual token type ID. */ function uri(uint256) public view virtual override returns (string memory) { return _uri; } /** * @dev See {IERC1155-balanceOf}. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) public view virtual override returns (uint256) { require(account != address(0), "ERC1155: balance query for the zero address"); return _balances[id][account]; } /** * @dev See {IERC1155-balanceOfBatch}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch(address[] memory accounts, uint256[] memory ids) public view virtual override returns (uint256[] memory) { require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch"); uint256[] memory batchBalances = new uint256[](accounts.length); for (uint256 i = 0; i < accounts.length; ++i) { batchBalances[i] = balanceOf(accounts[i], ids[i]); } return batchBalances; } /** * @dev See {IERC1155-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC1155-isApprovedForAll}. */ function isApprovedForAll(address account, address operator) public view virtual override returns (bool) { return _operatorApprovals[account][operator]; } /** * @dev See {IERC1155-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes memory data ) public virtual override { require( from == _msgSender() || isApprovedForAll(from, _msgSender()), "ERC1155: caller is not owner nor approved" ); _safeTransferFrom(from, to, id, amount, data); } /** * @dev See {IERC1155-safeBatchTransferFrom}. */ function safeBatchTransferFrom( address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) public virtual override { require( from == _msgSender() || isApprovedForAll(from, _msgSender()), "ERC1155: transfer caller is not owner nor approved" ); _safeBatchTransferFrom(from, to, ids, amounts, data); } /** * @dev Transfers `amount` tokens of token type `id` from `from` to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - `from` must have a balance of tokens of type `id` of at least `amount`. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function _safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: transfer to the zero address"); address operator = _msgSender(); uint256[] memory ids = _asSingletonArray(id); uint256[] memory amounts = _asSingletonArray(amount); _beforeTokenTransfer(operator, from, to, ids, amounts, 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); _afterTokenTransfer(operator, from, to, ids, amounts, data); _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); _afterTokenTransfer(operator, from, to, ids, amounts, data); _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data); } /** * @dev Sets a new URI for all token types, by relying on the token type ID * substitution mechanism * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP]. * * By this mechanism, any occurrence of the `\{id\}` substring in either the * URI or any of the amounts in the JSON file at said URI will be replaced by * clients with the token type ID. * * For example, the `https://token-cdn-domain/\{id\}.json` URI would be * interpreted by clients as * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json` * for token type ID 0x4cce0. * * See {uri}. * * Because these URIs cannot be meaningfully represented by the {URI} event, * this function emits no events. */ function _setURI(string memory newuri) internal virtual { _uri = newuri; } /** * @dev Creates `amount` tokens of token type `id`, and assigns them to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function _mint( address to, uint256 id, uint256 amount, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: mint to the zero address"); address operator = _msgSender(); uint256[] memory ids = _asSingletonArray(id); uint256[] memory amounts = _asSingletonArray(amount); _beforeTokenTransfer(operator, address(0), to, ids, amounts, data); _balances[id][to] += amount; emit TransferSingle(operator, address(0), to, id, amount); _afterTokenTransfer(operator, address(0), to, ids, amounts, data); _doSafeTransferAcceptanceCheck(operator, address(0), to, id, amount, data); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}. * * Requirements: * * - `ids` and `amounts` must have the same length. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function _mintBatch( address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: mint to the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, address(0), to, ids, amounts, data); for (uint256 i = 0; i < ids.length; i++) { _balances[ids[i]][to] += amounts[i]; } emit TransferBatch(operator, address(0), to, ids, amounts); _afterTokenTransfer(operator, address(0), to, ids, amounts, data); _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data); } /** * @dev Destroys `amount` tokens of token type `id` from `from` * * Requirements: * * - `from` cannot be the zero address. * - `from` must have at least `amount` tokens of token type `id`. */ function _burn( address from, uint256 id, uint256 amount ) internal virtual { require(from != address(0), "ERC1155: burn from the zero address"); address operator = _msgSender(); uint256[] memory ids = _asSingletonArray(id); uint256[] memory amounts = _asSingletonArray(amount); _beforeTokenTransfer(operator, from, address(0), ids, amounts, ""); uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][from] = fromBalance - amount; } emit TransferSingle(operator, from, address(0), id, amount); _afterTokenTransfer(operator, from, address(0), ids, amounts, ""); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}. * * Requirements: * * - `ids` and `amounts` must have the same length. */ function _burnBatch( address from, uint256[] memory ids, uint256[] memory amounts ) internal virtual { require(from != address(0), "ERC1155: burn from the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, address(0), ids, amounts, ""); for (uint256 i = 0; i < ids.length; i++) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][from] = fromBalance - amount; } } emit TransferBatch(operator, from, address(0), ids, amounts); _afterTokenTransfer(operator, from, address(0), ids, amounts, ""); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC1155: setting approval status for self"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Hook that is called before any token transfer. This includes minting * and burning, as well as batched variants. * * The same hook is called on both single and batched variants. For single * transfers, the length of the `id` and `amount` arrays will be 1. * * Calling conditions (for each `id` and `amount` pair): * * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens * of token type `id` will be transferred to `to`. * - When `from` is zero, `amount` tokens of token type `id` will be minted * for `to`. * - when `to` is zero, `amount` of ``from``'s tokens of token type `id` * will be burned. * - `from` and `to` are never both zero. * - `ids` and `amounts` have the same, non-zero length. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual {} /** * @dev Hook that is called after 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 _afterTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual {} function _doSafeTransferAcceptanceCheck( address operator, address from, address to, uint256 id, uint256 amount, bytes memory data ) private { if (to.isContract()) { try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) { if (response != IERC1155Receiver.onERC1155Received.selector) { revert("ERC1155: ERC1155Receiver rejected tokens"); } } catch Error(string memory reason) { revert(reason); } catch { revert("ERC1155: transfer to non ERC1155Receiver implementer"); } } } function _doSafeBatchTransferAcceptanceCheck( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) private { if (to.isContract()) { try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns ( bytes4 response ) { if (response != IERC1155Receiver.onERC1155BatchReceived.selector) { revert("ERC1155: ERC1155Receiver rejected tokens"); } } catch Error(string memory reason) { revert(reason); } catch { revert("ERC1155: transfer to non ERC1155Receiver implementer"); } } } function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) { uint256[] memory array = new uint256[](1); array[0] = element; return array; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/cryptography/draft-EIP712.sol) pragma solidity ^0.8.0; import "./ECDSA.sol"; /** * @dev https://eips.ethereum.org/EIPS/eip-712[EIP 712] is a standard for hashing and signing of typed structured data. * * The encoding specified in the EIP is very generic, and such a generic implementation in Solidity is not feasible, * thus this contract does not implement the encoding itself. Protocols need to implement the type-specific encoding * they need in their contracts using a combination of `abi.encode` and `keccak256`. * * This contract implements the EIP 712 domain separator ({_domainSeparatorV4}) that is used as part of the encoding * scheme, and the final step of the encoding to obtain the message digest that is then signed via ECDSA * ({_hashTypedDataV4}). * * The implementation of the domain separator was designed to be as efficient as possible while still properly updating * the chain id to protect against replay attacks on an eventual fork of the chain. * * NOTE: This contract implements the version of the encoding known as "v4", as implemented by the JSON RPC method * https://docs.metamask.io/guide/signing-data.html[`eth_signTypedDataV4` in MetaMask]. * * _Available since v3.4._ */ abstract contract EIP712 { /* solhint-disable var-name-mixedcase */ // Cache the domain separator as an immutable value, but also store the chain id that it corresponds to, in order to // invalidate the cached domain separator if the chain id changes. bytes32 private immutable _CACHED_DOMAIN_SEPARATOR; uint256 private immutable _CACHED_CHAIN_ID; address private immutable _CACHED_THIS; bytes32 private immutable _HASHED_NAME; bytes32 private immutable _HASHED_VERSION; bytes32 private immutable _TYPE_HASH; /* solhint-enable var-name-mixedcase */ /** * @dev Initializes the domain separator and parameter caches. * * The meaning of `name` and `version` is specified in * https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]: * * - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol. * - `version`: the current major version of the signing domain. * * NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart * contract upgrade]. */ constructor(string memory name, string memory version) { bytes32 hashedName = keccak256(bytes(name)); bytes32 hashedVersion = keccak256(bytes(version)); bytes32 typeHash = keccak256( "EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)" ); _HASHED_NAME = hashedName; _HASHED_VERSION = hashedVersion; _CACHED_CHAIN_ID = block.chainid; _CACHED_DOMAIN_SEPARATOR = _buildDomainSeparator(typeHash, hashedName, hashedVersion); _CACHED_THIS = address(this); _TYPE_HASH = typeHash; } /** * @dev Returns the domain separator for the current chain. */ function _domainSeparatorV4() internal view returns (bytes32) { if (address(this) == _CACHED_THIS && block.chainid == _CACHED_CHAIN_ID) { return _CACHED_DOMAIN_SEPARATOR; } else { return _buildDomainSeparator(_TYPE_HASH, _HASHED_NAME, _HASHED_VERSION); } } function _buildDomainSeparator( bytes32 typeHash, bytes32 nameHash, bytes32 versionHash ) private view returns (bytes32) { return keccak256(abi.encode(typeHash, nameHash, versionHash, block.chainid, address(this))); } /** * @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this * function returns the hash of the fully encoded EIP712 message for this domain. * * This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example: * * ```solidity * bytes32 digest = _hashTypedDataV4(keccak256(abi.encode( * keccak256("Mail(address to,string contents)"), * mailTo, * keccak256(bytes(mailContents)) * ))); * address signer = ECDSA.recover(digest, signature); * ``` */ function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) { return ECDSA.toTypedDataHash(_domainSeparatorV4(), structHash); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/ECDSA.sol) pragma solidity ^0.8.0; import "../Strings.sol"; /** * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations. * * These functions can be used to verify that a message was signed by the holder * of the private keys of a given address. */ library ECDSA { enum RecoverError { NoError, InvalidSignature, InvalidSignatureLength, InvalidSignatureS, InvalidSignatureV } function _throwError(RecoverError error) private pure { if (error == RecoverError.NoError) { return; // no error: do nothing } else if (error == RecoverError.InvalidSignature) { revert("ECDSA: invalid signature"); } else if (error == RecoverError.InvalidSignatureLength) { revert("ECDSA: invalid signature length"); } else if (error == RecoverError.InvalidSignatureS) { revert("ECDSA: invalid signature 's' value"); } else if (error == RecoverError.InvalidSignatureV) { revert("ECDSA: invalid signature 'v' value"); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature` or error string. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. * * Documentation for signature generation: * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js] * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) { // Check the signature length // - case 65: r,s,v signature (standard) // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._ if (signature.length == 65) { bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return tryRecover(hash, v, r, s); } else if (signature.length == 64) { bytes32 r; bytes32 vs; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) vs := mload(add(signature, 0x40)) } return tryRecover(hash, r, vs); } else { return (address(0), RecoverError.InvalidSignatureLength); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, signature); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately. * * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures] * * _Available since v4.3._ */ function tryRecover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address, RecoverError) { bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff); uint8 v = uint8((uint256(vs) >> 255) + 27); return tryRecover(hash, v, r, s); } /** * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately. * * _Available since v4.2._ */ function recover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, r, vs); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `v`, * `r` and `s` signature fields separately. * * _Available since v4.3._ */ function tryRecover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address, RecoverError) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) { return (address(0), RecoverError.InvalidSignatureS); } if (v != 27 && v != 28) { return (address(0), RecoverError.InvalidSignatureV); } // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); if (signer == address(0)) { return (address(0), RecoverError.InvalidSignature); } return (signer, RecoverError.NoError); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, * `r` and `s` signature fields separately. */ function recover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, v, r, s); _throwError(error); return recovered; } /** * @dev Returns an Ethereum Signed Message, created from a `hash`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) { // 32 is the length in bytes of hash, // enforced by the type signature above return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)); } /** * @dev Returns an Ethereum Signed Message, created from `s`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s)); } /** * @dev Returns an Ethereum Signed Typed Data, created from a * `domainSeparator` and a `structHash`. This produces hash corresponding * to the one signed with the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] * JSON-RPC method as part of EIP-712. * * See {recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash)); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol) pragma solidity ^0.8.0; /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControl { /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. * * _Available since v3.1._ */ event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {AccessControl-_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) external view returns (bool); /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {AccessControl-_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) external view returns (bytes32); /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) external; /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) external; /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC1155/IERC1155.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC1155 compliant contract, as defined in the * https://eips.ethereum.org/EIPS/eip-1155[EIP]. * * _Available since v3.1._ */ interface IERC1155 is IERC165 { /** * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`. */ event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value); /** * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all * transfers. */ event TransferBatch( address indexed operator, address indexed from, address indexed to, uint256[] ids, uint256[] values ); /** * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to * `approved`. */ event ApprovalForAll(address indexed account, address indexed operator, bool approved); /** * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI. * * If an {URI} event was emitted for `id`, the standard * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value * returned by {IERC1155MetadataURI-uri}. */ event URI(string value, uint256 indexed id); /** * @dev Returns the amount of tokens of token type `id` owned by `account`. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) external view returns (uint256); /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids) external view returns (uint256[] memory); /** * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`, * * Emits an {ApprovalForAll} event. * * Requirements: * * - `operator` cannot be the caller. */ function setApprovalForAll(address operator, bool approved) external; /** * @dev Returns true if `operator` is approved to transfer ``account``'s tokens. * * See {setApprovalForAll}. */ function isApprovedForAll(address account, address operator) external view returns (bool); /** * @dev Transfers `amount` tokens of token type `id` from `from` to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - If the caller is not `from`, it must be have been approved to spend ``from``'s tokens via {setApprovalForAll}. * - `from` must have a balance of tokens of type `id` of at least `amount`. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes calldata data ) external; /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}. * * Emits a {TransferBatch} event. * * Requirements: * * - `ids` and `amounts` must have the same length. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function safeBatchTransferFrom( address from, address to, uint256[] calldata ids, uint256[] calldata amounts, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/IERC1155Receiver.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev _Available since v3.1._ */ interface IERC1155Receiver is IERC165 { /** * @dev Handles the receipt of a single ERC1155 token type. This function is * called at the end of a `safeTransferFrom` after the balance has been updated. * * NOTE: To accept the transfer, this must return * `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` * (i.e. 0xf23a6e61, or its own function selector). * * @param operator The address which initiated the transfer (i.e. msg.sender) * @param from The address which previously owned the token * @param id The ID of the token being transferred * @param value The amount of tokens being transferred * @param data Additional data with no specified format * @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed */ function onERC1155Received( address operator, address from, uint256 id, uint256 value, bytes calldata data ) external returns (bytes4); /** * @dev Handles the receipt of a multiple ERC1155 token types. This function * is called at the end of a `safeBatchTransferFrom` after the balances have * been updated. * * NOTE: To accept the transfer(s), this must return * `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` * (i.e. 0xbc197c81, or its own function selector). * * @param operator The address which initiated the batch transfer (i.e. msg.sender) * @param from The address which previously owned the token * @param ids An array containing ids of each token being transferred (order and length must match values array) * @param values An array containing amounts of each token being transferred (order and length must match ids array) * @param data Additional data with no specified format * @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed */ function onERC1155BatchReceived( address operator, address from, uint256[] calldata ids, uint256[] calldata values, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol) pragma solidity ^0.8.0; import "../IERC1155.sol"; /** * @dev Interface of the optional ERC1155MetadataExtension interface, as defined * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP]. * * _Available since v3.1._ */ interface IERC1155MetadataURI is IERC1155 { /** * @dev Returns the URI for token type `id`. * * If the `\{id\}` substring is present in the URI, it must be replaced by * clients with the actual token type ID. */ function uri(uint256 id) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "evmVersion": "paris", "optimizer": { "enabled": true, "mode": "3" }, "outputSelection": { "*": { "*": [ "abi" ] } }, "detectMissingLibraries": false, "forceEVMLA": false, "enableEraVMExtensions": false, "libraries": {} }
Contract ABI
API[{"inputs":[{"internalType":"string","name":"_uri","type":"string"},{"internalType":"address","name":"_admin","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"actionId","type":"string"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"actionId","type":"string"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"player","type":"address"},{"internalType":"uint256","name":"serverId","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"adminBurn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"player","type":"address"},{"internalType":"uint256","name":"serverId","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"adminMint","outputs":[],"stateMutability":"nonpayable","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":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"serverId","type":"uint256"},{"internalType":"string","name":"actionId","type":"string"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getNonce","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"serverId","type":"uint256"},{"internalType":"string","name":"actionId","type":"string"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256[]","name":"","type":"uint256[]"},{"internalType":"uint256[]","name":"","type":"uint256[]"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bytes","name":"","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":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
9c4d535b00000000000000000000000000000000000000000000000000000000000000000100056fedbebcbde066224119fda4851128f31d50159559ce79b379dd8f3e1c000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000040000000000000000000000000fe966bfb7dfbabf939dae130c69f40609701ac6d000000000000000000000000000000000000000000000000000000000000003468747470733a2f2f6170692e7468656c6173746d6f6e61726368792e696f2f76312f676f6c642d6d657461646174612e6a736f6e000000000000000000000000
Deployed Bytecode
0x0002000000000002000900000000000200000060031002700001000000010355000004ed0030019d000004ed0330019700000001002001900000002e0000c13d0000008007000039000000400070043f000000040030008c0000004f0000413d000000000201043b000000e002200270000004ff0020009c000000510000213d0000050e0020009c0000017d0000a13d0000050f0020009c0000021b0000213d000005130020009c000004f60000613d000005140020009c000003ff0000613d000005150020009c0000004f0000c13d000000240030008c0000004f0000413d0000000002000416000000000002004b0000004f0000c13d0000000401100370000000000101043b000900000001001d000004f20010009c0000004f0000213d13b00fa70000040f0000000901000029000000000010043f0000000401000039000000200010043f0000004002000039000000000100001913b013910000040f000000000101041a000004ef0000013d0000014004000039000000400040043f0000000002000416000000000002004b0000004f0000c13d0000001f02300039000004ee022001970000014002200039000000400020043f0000001f0530018f000004ef063001980000014002600039000000400000613d000000000701034f000000007807043c0000000004840436000000000024004b0000003c0000c13d000000000005004b0000004d0000613d000000000161034f0000000304500210000000000502043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000120435000000400030008c000001640000813d0000000001000019000013b200010430000005000020009c000001f20000a13d000005010020009c000002320000213d000005050020009c000005050000613d000005060020009c000004110000613d000005070020009c0000004f0000c13d000000840030008c0000004f0000413d0000000002000416000000000002004b0000004f0000c13d0000002402100370000000000202043b000900000002001d0000000402100370000000000202043b000800000002001d0000004402100370000000000402043b000004f00040009c0000004f0000213d0000002302400039000000000032004b0000004f0000813d0000000405400039000000000251034f000000000202043b000004f00020009c000001770000213d0000001f0620003900000566066001970000003f066000390000056606600197000005200060009c000001770000213d00000024044000390000008006600039000000400060043f000000800020043f0000000004420019000000000034004b0000004f0000213d0000002004500039000000000541034f00000566062001980000001f0720018f000000a0046000390000008b0000613d000000a008000039000000000905034f000000009a09043c0000000008a80436000000000048004b000000870000c13d000000000007004b000000980000613d000000000565034f0000000306700210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f0000000000540435000000a00220003900000000000204350000006402100370000000000402043b000004f00040009c0000004f0000213d0000002302400039000000000032004b0000004f0000813d0000000405400039000000000251034f000000000202043b000004f00020009c000001770000213d0000001f0620003900000566066001970000003f066000390000056606600197000000400700043d0000000006670019000700000007001d000000000076004b00000000070000390000000107004039000004f00060009c000001770000213d0000000100700190000001770000c13d0000002404400039000000400060043f00000007060000290000000006260436000600000006001d0000000004420019000000000034004b0000004f0000213d0000002003500039000000000331034f00000566042001980000001f0520018f0000000601400029000000c80000613d000000000603034f0000000607000029000000006806043c0000000007870436000000000017004b000000c40000c13d000000000005004b000000d50000613d000000000343034f0000000304500210000000000501043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000310435000000060120002900000000000104350000000001000411000000000010043f0000000401000039000000200010043f0000000001000414000004ed0010009c000004ed01008041000000c00110021000000521011001c7000080100200003913b013ab0000040f00000001002001900000004f0000613d000000000101043b000000000101041a000500000001001d000000800100043d000004ed0010009c000004ed0100804100000060011002100000000002000414000004ed0020009c000004ed02008041000000c002200210000000000121019f00000522011001c7000080100200003913b013ab0000040f00000001002001900000004f0000613d000000000201043b000000400100043d000000c00310003900000005040000290000000000430435000000a0031000390000000000230435000000800210003900000009030000290000000000320435000000600210003900000008030000290000000000320435000000400210003900000000030004110000000000320435000000200210003900000523030000410000000000320435000000c0030000390000000000310435000005240010009c000001770000213d000000e003100039000000400030043f000004ed0020009c000004ed0200804100000040022002100000000001010433000004ed0010009c000004ed010080410000006001100210000000000121019f0000000002000414000004ed0020009c000004ed02008041000000c002200210000000000112019f000004f7011001c7000080100200003913b013ab0000040f00000001002001900000004f0000613d000000000101043b000500000001001d0000052501000041000000000010044300000000010004120000000400100443000000400100003900000024001004430000000001000414000004ed0010009c000004ed01008041000000c00110021000000526011001c7000080050200003913b013ab0000040f000000010020019000000cec0000613d000000000101043b000004f2011001970000000002000410000000000012004b000009200000c13d0000052501000041000000000010044300000000010004120000000400100443000000200100003900000024001004430000000001000414000004ed0010009c000004ed01008041000000c00110021000000526011001c7000080050200003913b013ab0000040f000000010020019000000cec0000613d000000000101043b000400000001001d000004f80100004100000000001004430000000001000414000004ed0010009c000004ed01008041000000c001100210000004f9011001c70000800b0200003913b013ab0000040f000000010020019000000cec0000613d000000000101043b000000040010006c000009200000c13d000005250100004100000000001004430000000001000412000000040010044300000024000004430000000001000414000004ed0010009c000004ed01008041000000c00110021000000526011001c7000080050200003913b013ab0000040f0000000100200190000009880000c13d00000cec0000013d000001400200043d000004f00020009c0000004f0000213d0000001f01200039000000000031004b0000000004000019000004f104008041000004f101100197000000000001004b0000000005000019000004f105004041000004f10010009c000000000504c019000000000005004b0000004f0000c13d00000140012000390000000001010433000004f00010009c0000025d0000a13d000004fd01000041000000000010043f0000004101000039000000040010043f000004fe01000041000013b200010430000005160020009c000002ab0000a13d000005170020009c000003710000613d000005180020009c000003560000613d000005190020009c0000004f0000c13d000000240030008c0000004f0000413d0000000002000416000000000002004b0000004f0000c13d0000000401100370000000000101043b000900000001001d000004f20010009c0000004f0000213d0000000001000411000004f201100197000000000010043f0000054c01000041000000200010043f0000000001000414000004ed0010009c000004ed01008041000000c00110021000000521011001c7000080100200003913b013ab0000040f00000001002001900000004f0000613d000000000101043b000000000101041a000000ff00100190000006800000c13d000000400200043d0000054f0020009c000001770000213d0000006004200039000000400040043f0000002a01000039000000000112043600000000030000310000000103300367000000000503034f0000000006010019000000005705043c0000000006760436000000000046004b000001ac0000c13d0000000004010433000005500440019700000551044001c7000000000041043500000021042000390000000005040433000005500550019700000552055001c700000000005404350000002904000039000000000600041100000000050600190000000006020433000000000046004b0000091a0000a13d0000000006140019000000000706043300000550077001970000000308500210000000780880018f000005530880021f0000055408800197000000000787019f00000000007604350000000406500270000000010440008a000000010040008c000001bb0000213d000000400600043d000000100050008c000007c80000813d000005200060009c000001770000213d0000008005600039000000400050043f0000004204000039000000000806001900000000044604360000000006040019000000003703043c0000000006760436000000000056004b000001d70000c13d0000000003040433000005500330019700000551033001c70000000000340435000000000708001900000021038000390000000005030433000005500550019700000552055001c7000000000053043500000041030000390000000005070433000000000035004b0000091a0000a13d00000000054300190000000006050433000005500660019700000551066001c70000000000650435000000010330008a000000010030008c000001e60000213d0000032d0000013d000005080020009c000002bd0000a13d000005090020009c000003830000613d0000050a0020009c0000036b0000613d0000050b0020009c0000004f0000c13d000000440030008c0000004f0000413d0000000002000416000000000002004b0000004f0000c13d0000000402100370000000000202043b000900000002001d000004f20020009c0000004f0000213d0000002401100370000000000201043b000000000002004b0000000001000039000000010100c039000800000002001d000000000012004b0000004f0000c13d0000000002000411000000090020006c000006c50000c13d0000051d01000041000000800010043f0000002001000039000000840010043f0000002901000039000000a40010043f0000054801000041000000c40010043f0000054901000041000000e40010043f0000054a01000041000013b200010430000005100020009c0000060e0000613d000005110020009c0000042c0000613d000005120020009c0000004f0000c13d000000440030008c0000004f0000413d0000000002000416000000000002004b0000004f0000c13d0000002402100370000000000302043b000004f20030009c0000004f0000213d0000000002000411000000000023004b000006740000c13d0000000401100370000000000101043b13b0127c0000040f0000000001000019000013b10001042e000005020020009c000003580000613d000005030020009c000004d50000613d000005040020009c0000004f0000c13d000000a40030008c0000004f0000413d0000000002000416000000000002004b0000004f0000c13d0000000402100370000000000202043b000004f20020009c0000004f0000213d0000002402100370000000000202043b000004f20020009c0000004f0000213d0000008401100370000000000101043b000004f00010009c0000004f0000213d0000000401100039000000000203001913b00ee00000040f000000400100043d00000044021000390000051c03000041000000000032043500000024021000390000001c0300003900000000003204350000051d020000410000000000210435000000040210003900000020030000390000000000320435000004ed0010009c000004ed0100804100000040011002100000051e011001c7000013b2000104300000001f0410003900000566044001970000003f044000390000056604400197000000400600043d0000000004460019000000000064004b00000000050000390000000105004039000004f00040009c000001770000213d0000000100500190000001770000c13d0000014003300039000000400040043f000900000006001d0000000004160436000800000004001d00000160022000390000000004210019000000000034004b0000004f0000213d000000000001004b00000008060000290000027e0000613d000000000300001900000000043600190000000005230019000000000505043300000000005404350000002003300039000000000013004b000002770000413d000000090110002900000020011000390000000000010435000001600100043d000700000001001d000004f20010009c0000004f0000213d000000400500043d000004f30050009c0000000902000029000001770000213d0000004001500039000000400010043f0000000b010000390000000006150436000004f4010000410000000000160435000000400300043d000004f30030009c000001770000213d0000004001300039000000400010043f00000001010000390000000004130436000004f50100004100000000001404350000000008020433000004f00080009c000001770000213d0000000207000039000000000107041a000000010210019000000001091002700000007f0990618f0000001f0090008c00000000010000390000000101002039000000000012004b000007450000613d000004fd01000041000000000010043f0000002201000039000000040010043f000004fe01000041000013b2000104300000051a0020009c000003920000613d0000051b0020009c0000004f0000c13d000000440030008c0000004f0000413d0000000002000416000000000002004b0000004f0000c13d0000000402100370000000000302043b000004f20030009c0000004f0000213d0000002401100370000000000201043b000000000103001913b00f390000040f000004ef0000013d0000050c0020009c000003a60000613d0000050d0020009c0000004f0000c13d000000240030008c0000004f0000413d0000000002000416000000000002004b0000004f0000c13d0000000401100370000000000101043b000900000001001d000004f20010009c0000004f0000213d0000000001000411000004f201100197000000000010043f0000054c01000041000000200010043f0000000001000414000004ed0010009c000004ed01008041000000c00110021000000521011001c7000080100200003913b013ab0000040f00000001002001900000004f0000613d000000000101043b000000000101041a000000ff00100190000006f90000c13d000000400200043d0000054f0020009c000001770000213d0000006004200039000000400040043f0000002a01000039000000000112043600000000030000310000000103300367000000000503034f0000000006010019000000005705043c0000000006760436000000000046004b000002e80000c13d0000000004010433000005500440019700000551044001c7000000000041043500000021042000390000000005040433000005500550019700000552055001c700000000005404350000002904000039000000000600041100000000050600190000000006020433000000000046004b0000091a0000a13d0000000006140019000000000706043300000550077001970000000308500210000000780880018f000005530880021f0000055408800197000000000787019f00000000007604350000000406500270000000010440008a000000010040008c000002f70000213d000000400600043d000000100050008c000007c80000813d000005200060009c000001770000213d0000008005600039000000400050043f0000004204000039000000000806001900000000044604360000000006040019000000003703043c0000000006760436000000000056004b000003130000c13d0000000003040433000005500330019700000551033001c70000000000340435000000000708001900000021038000390000000005030433000005500550019700000552055001c7000000000053043500000041030000390000000005070433000000000035004b0000091a0000a13d00000000054300190000000006050433000005500660019700000551066001c70000000000650435000000010330008a000000010030008c000003220000213d000000400500043d000900000005001d0000002003500039000005560400004100000000004304350000000003020433000700000003001d0000003702500039000800000007001d13b00e8f0000040f000000070200002900000009012000290000003702100039000005570300004100000000003204350000004802100039000000080100002913b0136f0000040f00000009030000290000000002310049000000200120008a0000000000130435000000000103001913b00ece0000040f0000051d01000041000000400200043d000800000002001d00000000001204350000000401200039000000090200002913b00eae0000040f00000008020000290000000001210049000004ed0010009c000004ed010080410000006001100210000004ed0020009c000004ed020080410000004002200210000000000121019f000013b200010430000000240030008c0000004f0000413d0000000001000416000000000001004b0000004f0000c13d13b00f6d0000040f0000002002000039000000400300043d000900000003001d000000000223043613b00e9c0000040f00000009020000290000000001210049000004ed0010009c000004ed010080410000006001100210000004ed0020009c000004ed020080410000004002200210000000000121019f000013b10001042e0000000001000416000000000001004b0000004f0000c13d000000800000043f0000054b01000041000013b10001042e000000240030008c0000004f0000413d0000000002000416000000000002004b0000004f0000c13d0000000401100370000000000201043b00000534002001980000004f0000c13d00000001010000390000053502200197000005610020009c0000066d0000213d000005640020009c0000040e0000613d000005650020009c0000040e0000613d000006710000013d000000440030008c0000004f0000413d0000000002000416000000000002004b0000004f0000c13d0000002402100370000000000202043b000900000002001d000004f20020009c0000004f0000213d0000000401100370000000000101043b000000000010043f0000000301000039000004e50000013d0000000001000416000000000001004b0000004f0000c13d000000000103001913b00e7f0000040f000900000001001d000800000002001d000700000003001d13b00fa70000040f000000400100043d000600000001001d13b00ec30000040f0000000604000029000000000004043500000009010000290000000802000029000000070300002913b011220000040f0000000001000019000013b10001042e000000440030008c0000004f0000413d0000000002000416000000000002004b0000004f0000c13d0000000402100370000000000202043b000004f00020009c0000004f0000213d0000002304200039000000000034004b0000004f0000813d0000000404200039000000000441034f000000000504043b000004f00050009c000001770000213d00000005045002100000003f064000390000055806600197000005200060009c000001770000213d0000008006600039000000400060043f000000800050043f00000024022000390000000004240019000000000034004b0000004f0000213d000000000005004b000003ce0000613d000000a005000039000000000621034f000000000606043b000004f20060009c0000004f0000213d00000000056504360000002002200039000000000042004b000003c60000413d0000002402100370000000000202043b000004f00020009c0000004f0000213d0000002304200039000000000034004b0000000005000019000004f105008041000004f104400197000000000004004b0000000006000019000004f106004041000004f10040009c000000000605c019000000000006004b0000004f0000c13d0000000404200039000000000441034f000000000404043b000004f00040009c000001770000213d00000005054002100000003f065000390000055806600197000000400700043d0000000006670019000600000007001d000000000076004b00000000070000390000000107004039000004f00060009c000001770000213d0000000100700190000001770000c13d000000400060043f00000006060000290000000006460436000500000006001d00000024022000390000000005250019000000000035004b0000004f0000213d000000000004004b000008890000c13d000000800200043d000000000002004b0000000002000019000008980000613d000008d10000013d000000240030008c0000004f0000413d0000000002000416000000000002004b0000004f0000c13d0000000401100370000000000101043b000000000010043f0000000301000039000000200010043f0000004002000039000000000100001913b013910000040f0000000101100039000000000101041a000000800010043f0000054b01000041000013b10001042e000000440030008c0000004f0000413d0000000002000416000000000002004b0000004f0000c13d0000002402100370000000000202043b000900000002001d000004f20020009c0000004f0000213d0000000401100370000000000101043b000800000001001d000000000010043f0000000301000039000000200010043f0000004002000039000000000100001913b013910000040f0000000101100039000000000101041a13b0105b0000040f0000000801000029000000090200002913b0127c0000040f0000000001000019000013b10001042e000000440030008c0000004f0000413d0000000002000416000000000002004b0000004f0000c13d0000000402100370000000000202043b000900000002001d0000002401100370000000000101043b000800000001001d000004f20010009c0000004f0000213d0000000901000029000000000010043f0000000301000039000000200010043f0000000001000414000004ed0010009c000004ed01008041000000c00110021000000521011001c7000080100200003913b013ab0000040f00000001002001900000004f0000613d000000000101043b0000000101100039000000000101041a000700000001001d000000000010043f0000000301000039000000200010043f0000000001000414000004ed0010009c000004ed01008041000000c00110021000000521011001c7000080100200003913b013ab0000040f00000001002001900000004f0000613d0000000002000411000000000101043b000004f202200197000000000020043f000000200010043f0000000001000414000004ed0010009c000004ed01008041000000c00110021000000521011001c7000080100200003913b013ab0000040f00000001002001900000004f0000613d000000000101043b000000000101041a000000ff00100190000007800000c13d000000400700043d0000054f0070009c000001770000213d0000006002700039000000400020043f0000002a01000039000000000817043600000000010000310000000101100367000000000301034f0000000004080019000000003503043c0000000004540436000000000024004b000004730000c13d0000000002080433000005500220019700000551022001c7000000000028043500000021027000390000000003020433000005500330019700000552033001c700000000003204350000002902000039000000000400041100000000030400190000000004070433000000000024004b0000091a0000a13d0000000004820019000000000504043300000550055001970000000306300210000000780660018f000005530660021f0000055406600197000000000565019f00000000005404350000000404300270000000010220008a000000010020008c000004820000213d000000400900043d000000100030008c0000087a0000813d000005200090009c000001770000213d0000008003900039000000400030043f000000420200003900000000022904360000000004020019000000001501043c0000000004540436000000000034004b0000049d0000c13d0000000001020433000005500110019700000551011001c7000000000012043500000021019000390000000003010433000005500330019700000552033001c700000000003104350000004101000039000000070400002900000000030400190000000004090433000000000014004b0000091a0000a13d0000000004210019000000000504043300000550055001970000000306300210000000780660018f000005530660021f0000055406600197000000000565019f00000000005404350000000404300270000000010110008a000000010010008c000004ac0000213d000000100030008c00000000010000390000000101004039000600000007001d000700000008001d000800000009001d13b0137d0000040f000000400400043d000900000004001d00000020014000390000055602000041000000000021043500000006010000290000000003010433000600000003001d0000003702400039000000070100002913b00e8f0000040f000000060200002900000009012000290000055702000041000000370310003900000000002304350000033c0000013d000000440030008c0000004f0000413d0000000002000416000000000002004b0000004f0000c13d0000000402100370000000000202043b000004f20020009c0000004f0000213d0000002401100370000000000101043b000900000001001d000004f20010009c0000004f0000213d000000000020043f0000000101000039000000200010043f0000004002000039000000000100001913b013910000040f000000090200002913b00f290000040f000000000101041a000000ff001001900000000001000039000000010100c039000000400200043d0000000000120435000004ed0020009c000004ed0200804100000040012002100000051f011001c7000013b10001042e0000000001000416000000000001004b0000004f0000c13d000000000103001913b00e7f0000040f000900000001001d000800000002001d000700000003001d13b00fa70000040f00000009010000290000000802000029000000070300002913b012cd0000040f0000000001000019000013b10001042e000000840030008c0000004f0000413d0000000002000416000000000002004b0000004f0000c13d0000002402100370000000000202043b000900000002001d0000000402100370000000000202043b000800000002001d0000004402100370000000000402043b000004f00040009c0000004f0000213d0000002302400039000000000032004b0000004f0000813d0000000405400039000000000251034f000000000202043b000004f00020009c000001770000213d0000001f0620003900000566066001970000003f066000390000056606600197000005200060009c000001770000213d00000024044000390000008006600039000000400060043f000000800020043f0000000004420019000000000034004b0000004f0000213d0000002004500039000000000541034f00000566062001980000001f0720018f000000a004600039000005350000613d000000a008000039000000000905034f000000009a09043c0000000008a80436000000000048004b000005310000c13d000000000007004b000005420000613d000000000565034f0000000306700210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f0000000000540435000000a00220003900000000000204350000006402100370000000000402043b000004f00040009c0000004f0000213d0000002302400039000000000032004b0000004f0000813d0000000405400039000000000251034f000000000202043b000004f00020009c000001770000213d0000001f0620003900000566066001970000003f066000390000056606600197000000400700043d0000000006670019000700000007001d000000000076004b00000000070000390000000107004039000004f00060009c000001770000213d0000000100700190000001770000c13d0000002404400039000000400060043f00000007060000290000000006260436000600000006001d0000000004420019000000000034004b0000004f0000213d0000002003500039000000000331034f00000566042001980000001f0520018f0000000601400029000005720000613d000000000603034f0000000607000029000000006806043c0000000007870436000000000017004b0000056e0000c13d000000000005004b0000057f0000613d000000000343034f0000000304500210000000000501043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000310435000000060120002900000000000104350000000001000411000000000010043f0000000401000039000000200010043f0000000001000414000004ed0010009c000004ed01008041000000c00110021000000521011001c7000080100200003913b013ab0000040f00000001002001900000004f0000613d000000000101043b000000000101041a000500000001001d000000800100043d000004ed0010009c000004ed0100804100000060011002100000000002000414000004ed0020009c000004ed02008041000000c002200210000000000121019f00000522011001c7000080100200003913b013ab0000040f00000001002001900000004f0000613d000000000201043b000000400100043d000000c00310003900000005040000290000000000430435000000a003100039000000000023043500000080021000390000000903000029000000000032043500000060021000390000000803000029000000000032043500000040021000390000000003000411000000000032043500000020021000390000053d030000410000000000320435000000c0030000390000000000310435000005240010009c000001770000213d000000e003100039000000400030043f000004ed0020009c000004ed0200804100000040022002100000000001010433000004ed0010009c000004ed010080410000006001100210000000000121019f0000000002000414000004ed0020009c000004ed02008041000000c002200210000000000112019f000004f7011001c7000080100200003913b013ab0000040f00000001002001900000004f0000613d000000000101043b000500000001001d0000052501000041000000000010044300000000010004120000000400100443000000400100003900000024001004430000000001000414000004ed0010009c000004ed01008041000000c00110021000000526011001c7000080050200003913b013ab0000040f000000010020019000000cec0000613d000000000101043b000004f2011001970000000002000410000000000012004b000009f80000c13d0000052501000041000000000010044300000000010004120000000400100443000000200100003900000024001004430000000001000414000004ed0010009c000004ed01008041000000c00110021000000526011001c7000080050200003913b013ab0000040f000000010020019000000cec0000613d000000000101043b000400000001001d000004f80100004100000000001004430000000001000414000004ed0010009c000004ed01008041000000c001100210000004f9011001c70000800b0200003913b013ab0000040f000000010020019000000cec0000613d000000000101043b000000040010006c000009f80000c13d000005250100004100000000001004430000000001000412000000040010044300000024000004430000000001000414000004ed0010009c000004ed01008041000000c00110021000000526011001c7000080050200003913b013ab0000040f000000010020019000000cec0000613d00000a600000013d000000a40030008c0000004f0000413d0000000002000416000000000002004b0000004f0000c13d0000000402100370000000000202043b000004f20020009c0000004f0000213d0000002402100370000000000202043b000004f20020009c0000004f0000213d0000004402100370000000000202043b000004f00020009c0000004f0000213d0000002304200039000000000034004b0000004f0000813d0000000404200039000000000441034f000000000504043b000004f00050009c000001770000213d00000005045002100000003f064000390000055806600197000005200060009c000001770000213d0000008006600039000000400060043f000000800050043f00000024022000390000000004240019000000000034004b0000004f0000213d000000000005004b0000063c0000613d000000000521034f000000000505043b000000200770003900000000005704350000002002200039000000000042004b000006350000413d0000006402100370000000000202043b000004f00020009c0000004f0000213d0000002304200039000000000034004b0000000005000019000004f105008041000004f104400197000000000004004b0000000006000019000004f106004041000004f10040009c000000000605c019000000000006004b0000004f0000c13d0000000404200039000000000441034f000000000504043b000004f00050009c000001770000213d00000005065002100000003f046000390000055807400197000000400400043d0000000007740019000000000047004b00000000080000390000000108004039000004f00070009c000001770000213d0000000100800190000001770000c13d000000400070043f000000000054043500000024022000390000000006260019000000000036004b0000004f0000213d000000000005004b000002450000613d000000000521034f000000000505043b000000200440003900000000005404350000002002200039000000000062004b000006650000413d000002450000013d000005620020009c0000040e0000613d000005630020009c0000040e0000613d000000800000043f0000054b01000041000013b10001042e0000051d01000041000000800010043f0000002001000039000000840010043f0000002f01000039000000a40010043f0000055e01000041000000c40010043f0000055f01000041000000e40010043f0000054a01000041000013b2000104300000054d01000041000000000010043f0000000301000039000000200010043f0000000001000414000004ed0010009c000004ed01008041000000c00110021000000521011001c7000080100200003913b013ab0000040f00000001002001900000004f0000613d000000000101043b0000000902000029000000000020043f000000200010043f0000000001000414000004ed0010009c000004ed01008041000000c00110021000000521011001c7000080100200003913b013ab0000040f00000001002001900000004f0000613d000000000101043b000000000101041a000000ff0010019000000cea0000613d0000054d01000041000000000010043f0000000301000039000000200010043f0000000001000414000004ed0010009c000004ed01008041000000c00110021000000521011001c7000080100200003913b013ab0000040f00000001002001900000004f0000613d000000000101043b0000000902000029000000000020043f000000200010043f0000000001000414000004ed0010009c000004ed01008041000000c00110021000000521011001c7000080100200003913b013ab0000040f00000001002001900000004f0000613d000000000101043b000000000201041a0000056702200197000000000021041b0000000001000414000004ed0010009c000004ed01008041000000c001100210000004f7011001c70000800d02000039000000040300003900000560040000410000073e0000013d000004f201200197000000000010043f0000000101000039000000200010043f0000000001000414000004ed0010009c000004ed01008041000000c00110021000000521011001c7000080100200003913b013ab0000040f00000001002001900000004f0000613d000000000101043b0000000902000029000000000020043f000000200010043f0000000001000414000004ed0010009c000004ed01008041000000c00110021000000521011001c7000080100200003913b013ab0000040f00000001002001900000004f0000613d000000000101043b000000000201041a00000567022001970000000803000029000000000232019f000000000021041b000000400100043d0000000000310435000004ed0010009c000004ed0100804100000040011002100000000002000414000004ed0020009c000004ed02008041000000c002200210000000000112019f000004f6011001c70000800d02000039000000030300003900000547040000410000000005000411000000090600002913b013a60000040f00000001002001900000004f0000613d00000cea0000013d0000054d01000041000000000010043f0000000301000039000000200010043f0000000001000414000004ed0010009c000004ed01008041000000c00110021000000521011001c7000080100200003913b013ab0000040f00000001002001900000004f0000613d000000000101043b0000000902000029000000000020043f000000200010043f0000000001000414000004ed0010009c000004ed01008041000000c00110021000000521011001c7000080100200003913b013ab0000040f00000001002001900000004f0000613d000000000101043b000000000101041a000000ff0010019000000cea0000c13d0000054d01000041000000000010043f0000000301000039000000200010043f0000000001000414000004ed0010009c000004ed01008041000000c00110021000000521011001c7000080100200003913b013ab0000040f00000001002001900000004f0000613d000000000101043b0000000902000029000000000020043f000000200010043f0000000001000414000004ed0010009c000004ed01008041000000c00110021000000521011001c7000080100200003913b013ab0000040f00000001002001900000004f0000613d000000000101043b000000000201041a000005670220019700000001022001bf000000000021041b0000000001000414000004ed0010009c000004ed01008041000000c001100210000004f7011001c70000800d0200003900000004030000390000054e040000410000054d050000410000000906000029000000000700041113b013a60000040f00000001002001900000004f0000613d00000cea0000013d000200000004001d000300000003001d000100000009001d000000200090008c0000076b0000413d000600000008001d000400000006001d000500000005001d000000000070043f0000000001000414000004ed0010009c000004ed01008041000000c001100210000004f6011001c7000080100200003913b013ab0000040f00000001002001900000004f0000613d00000006080000290000001f028000390000000502200270000000200080008c0000000002004019000000000301043b00000001010000290000001f01100039000000050110027000000000011300190000000002230019000000000012004b0000000505000029000000040600002900000002070000390000076b0000813d000000000002041b0000000102200039000000000012004b000007670000413d0000001f0080008c000007d70000a13d000600000008001d000400000006001d000500000005001d000000000070043f0000000001000414000004ed0010009c000004ed01008041000000c001100210000004f6011001c7000080100200003913b013ab0000040f00000001002001900000004f0000613d000000200200008a0000000602200180000000000101043b000007e30000c13d0000002003000039000007f00000013d0000000901000029000000000010043f0000000301000039000000200010043f0000000001000414000004ed0010009c000004ed01008041000000c00110021000000521011001c7000080100200003913b013ab0000040f00000001002001900000004f0000613d000000000101043b0000000802000029000000000020043f000000200010043f0000000001000414000004ed0010009c000004ed01008041000000c00110021000000521011001c7000080100200003913b013ab0000040f00000001002001900000004f0000613d000000000101043b000000000101041a000000ff0010019000000cea0000c13d0000000901000029000000000010043f0000000301000039000000200010043f0000000001000414000004ed0010009c000004ed01008041000000c00110021000000521011001c7000080100200003913b013ab0000040f00000001002001900000004f0000613d000000000101043b0000000802000029000000000020043f000000200010043f0000000001000414000004ed0010009c000004ed01008041000000c00110021000000521011001c7000080100200003913b013ab0000040f00000001002001900000004f0000613d000000000101043b000000000201041a000005670220019700000001022001bf000000000021041b0000000001000414000004ed0010009c000004ed01008041000000c001100210000004f7011001c70000800d0200003900000004030000390000054e0400004100000009050000290000000806000029000007400000013d0000004401600039000005550200004100000000002104350000051d01000041000000000016043500000024016000390000002002000039000000000021043500000004016000390000000000210435000004ed0060009c000004ed0600804100000040016002100000051e011001c7000013b200010430000000000008004b0000000001000019000007dc0000613d000000080100002900000000010104330000000302800210000005680220027f0000056802200167000000000121016f0000000102800210000000000121019f000008000000013d000000010320008a0000000503300270000000000431001900000020030000390000000104400039000000090600002900000000056300190000000005050433000000000051041b00000020033000390000000101100039000000000041004b000007e90000c13d0000000605000029000000000052004b000007fb0000813d0000000302500210000000f80220018f000005680220027f000005680220016700000009033000290000000003030433000000000223016f000000000021041b000000010150021000000001011001bf000000050500002900000004060000290000000207000039000000000017041b000004ed0060009c000004ed0600804100000040016002100000000002050433000004ed0020009c000004ed020080410000006002200210000000000112019f0000000002000414000004ed0020009c000004ed02008041000000c002200210000000000112019f000004f7011001c7000080100200003913b013ab0000040f00000001002001900000004f0000613d0000000202000029000004ed0020009c000004ed02008041000000400220021000000003030000290000000003030433000004ed0030009c000004ed030080410000006003300210000000000223019f000000000101043b000900000001001d0000000001000414000004ed0010009c000004ed01008041000000c001100210000000000121019f000004f7011001c7000080100200003913b013ab0000040f00000001002001900000004f0000613d000000000201043b0000000901000029000000e00010043f000800000002001d000001000020043f000004f80100004100000000001004430000000001000414000004ed0010009c000004ed01008041000000c001100210000004f9011001c70000800b0200003913b013ab0000040f000000010020019000000cec0000613d000000000101043b000000a00010043f000000400200043d00000080032000390000000000130435000000600120003900000008030000290000000000310435000000400120003900000009030000290000000000310435000000a0010000390000000001120436000000a00320003900000000040004100000000000430435000004fa030000410000000000310435000004fb0020009c000001770000213d000000c003200039000000400030043f000000000202043313b013910000040f000000800010043f0000000001000410000000c00010043f000004fa01000041000001200010043f000000000100041113b00e130000040f000000070100002913b00e130000040f000000000100041113b00e490000040f000000070100002913b00e490000040f000000800100043d000001400000044300000160001004430000002001000039000000a00200043d0000018000100443000001a0002004430000004002000039000000c00300043d000001c000200443000001e0003004430000006002000039000000e00300043d000002000020044300000220003004430000008002000039000001000300043d00000240002004430000026000300443000001200200043d000000a0030000390000028000300443000002a000200443000001000010044300000006010000390000012000100443000004fc01000041000013b10001042e0000004401900039000005550200004100000000002104350000051d01000041000000000019043500000024019000390000002002000039000000000021043500000004019000390000000000210435000004ed0090009c000004ed0900804100000040019002100000051e011001c7000013b2000104300000000604000029000000000621034f000000000606043b000000200440003900000000006404350000002002200039000000000052004b0000088a0000413d00000006020000290000000002020433000000800400043d000000000024004b000008d10000c13d000004f00020009c000001770000213d00000005042002100000003f054000390000055b06500197000000400500043d000400000005001d0000000005560019000000000065004b00000000060000390000000106004039000004f00050009c000001770000213d0000000100600190000001770000c13d000000400050043f00000004050000290000000002250436000300000002001d0000001f0240018f000000000004004b000008b30000613d000000000131034f00000003034000290000000304000029000000001501043c0000000004540436000000000034004b000008af0000c13d000000000002004b000000800100043d000000000001004b0000000403000029000008e50000c13d000000400100043d00000020020000390000000002210436000000000303043300000000003204350000004002100039000000000003004b000008c80000613d000000000400001900000004060000290000002006600039000000000506043300000000025204360000000104400039000000000034004b000008c20000413d0000000002120049000004ed0020009c000004ed020080410000006002200210000004ed0010009c000004ed010080410000004001100210000000000112019f000013b10001042e000000400100043d00000064021000390000055903000041000000000032043500000044021000390000055a0300004100000000003204350000002402100039000000290300003900000000003204350000051d020000410000000000210435000000040210003900000020030000390000000000320435000004ed0010009c000004ed0100804100000040011002100000052d011001c7000013b200010430000000000400001900000006010000290000000001010433000000000041004b0000091a0000a13d000800000004001d0000000503400210000000a0013000390000000001010433000904f20010019c000080100200003900000ad00000613d000700000003001d00000005013000290000000001010433000000000010043f000000200000043f0000000001000414000004ed0010009c000004ed01008041000000c00110021000000521011001c713b013ab0000040f00000001002001900000004f0000613d000000000101043b0000000902000029000000000020043f000000200010043f0000000001000414000004ed0010009c000004ed01008041000000c00110021000000521011001c7000080100200003913b013ab0000040f00000001002001900000004f0000613d000000040300002900000000020304330000000804000029000000000042004b0000091a0000a13d00000007050000290000000302500029000000000101043b000000000101041a00000000001204350000000104400039000000800100043d000000000014004b000008e60000413d000008b80000013d000004fd01000041000000000010043f0000003201000039000000040010043f000004fe01000041000013b200010430000000400100043d000400000001001d0000052501000041000000000010044300000000010004120000000400100443000000a00100003900000024001004430000000001000414000004ed0010009c000004ed01008041000000c00110021000000526011001c7000080050200003913b013ab0000040f000000010020019000000cec0000613d00000004020000290000002002200039000000000101043b000300000002001d00000000001204350000052501000041000000000010044300000000010004120000000400100443000000600100003900000024001004430000000001000414000004ed0010009c000004ed01008041000000c00110021000000526011001c7000080050200003913b013ab0000040f000000010020019000000cec0000613d000000000101043b0000000402000029000000400220003900000000001204350000052501000041000000000010044300000000010004120000000400100443000000800100003900000024001004430000000001000414000004ed0010009c000004ed01008041000000c00110021000000526011001c7000080050200003913b013ab0000040f000000010020019000000cec0000613d000000000101043b000000040200002900000060022000390000000000120435000004f80100004100000000001004430000000001000414000004ed0010009c000004ed01008041000000c001100210000004f9011001c70000800b0200003913b013ab0000040f000000010020019000000cec0000613d000000000101043b0000000404000029000000a0024000390000000003000410000000000032043500000080024000390000000000120435000000a0010000390000000000140435000004fb0040009c000001770000213d0000000402000029000000c001200039000000400010043f0000000301000029000004ed0010009c000004ed0100804100000040011002100000000002020433000004ed0020009c000004ed020080410000006002200210000000000112019f0000000002000414000004ed0020009c000004ed02008041000000c002200210000000000112019f000004f7011001c7000080100200003913b013ab0000040f00000001002001900000004f0000613d000000000301043b000000400100043d0000004202100039000000050400002900000000004204350000002002100039000005270400004100000000004204350000002204100039000000000034043500000042030000390000000000310435000005200010009c000001770000213d0000008003100039000000400030043f000004ed0020009c000004ed0200804100000040022002100000000001010433000004ed0010009c000004ed010080410000006001100210000000000121019f0000000002000414000004ed0020009c000004ed02008041000000c002200210000000000112019f000004f7011001c7000080100200003913b013ab0000040f00000001002001900000004f0000613d000000000101043b00000007020000290000000002020433000000410020008c00000ae10000613d000000400020008c00000ada0000c13d0000000702000029000000400220003900000000020204330000052803200197000005290030009c00000b600000213d00000006040000290000000004040433000000400500043d0000006006500039000000000036043500000040035000390000000000430435000000ff022002700000001b02200039000000200350003900000000002304350000000000150435000000000000043f000004ed0050009c000004ed0500804100000040015002100000000002000414000004ed0020009c000004ed02008041000000c002200210000000000112019f0000052a011001c7000000010200003913b013ab0000040f0000006003100270000004ed03300197000000200030008c000000200400003900000000040340190000001f0540018f0000002004400190000009dd0000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000047004b000009d90000c13d000000000005004b000009ea0000613d000000000641034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000000010020019000000b200000c13d0000001f0530018f000004ef06300198000000400200043d000000000462001900000bef0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000009f30000c13d00000bef0000013d000000400100043d000400000001001d0000052501000041000000000010044300000000010004120000000400100443000000a00100003900000024001004430000000001000414000004ed0010009c000004ed01008041000000c00110021000000526011001c7000080050200003913b013ab0000040f000000010020019000000cec0000613d00000004020000290000002002200039000000000101043b000300000002001d00000000001204350000052501000041000000000010044300000000010004120000000400100443000000600100003900000024001004430000000001000414000004ed0010009c000004ed01008041000000c00110021000000526011001c7000080050200003913b013ab0000040f000000010020019000000cec0000613d000000000101043b0000000402000029000000400220003900000000001204350000052501000041000000000010044300000000010004120000000400100443000000800100003900000024001004430000000001000414000004ed0010009c000004ed01008041000000c00110021000000526011001c7000080050200003913b013ab0000040f000000010020019000000cec0000613d000000000101043b000000040200002900000060022000390000000000120435000004f80100004100000000001004430000000001000414000004ed0010009c000004ed01008041000000c001100210000004f9011001c70000800b0200003913b013ab0000040f000000010020019000000cec0000613d000000000101043b0000000404000029000000a0024000390000000003000410000000000032043500000080024000390000000000120435000000a0010000390000000000140435000004fb0040009c000001770000213d0000000402000029000000c001200039000000400010043f0000000301000029000004ed0010009c000004ed0100804100000040011002100000000002020433000004ed0020009c000004ed020080410000006002200210000000000112019f0000000002000414000004ed0020009c000004ed02008041000000c002200210000000000112019f000004f7011001c7000080100200003913b013ab0000040f00000001002001900000004f0000613d000000000301043b000000400100043d0000004202100039000000050400002900000000004204350000002002100039000005270400004100000000004204350000002204100039000000000034043500000042030000390000000000310435000005200010009c000001770000213d0000008003100039000000400030043f000004ed0020009c000004ed0200804100000040022002100000000001010433000004ed0010009c000004ed010080410000006001100210000000000121019f0000000002000414000004ed0020009c000004ed02008041000000c002200210000000000112019f000004f7011001c7000080100200003913b013ab0000040f00000001002001900000004f0000613d000000000101043b00000007020000290000000002020433000000410020008c00000b5b0000613d000000400020008c00000ada0000c13d0000000702000029000000400220003900000000020204330000052803200197000005290030009c00000b600000213d00000006040000290000000004040433000000400500043d0000006006500039000000000036043500000040035000390000000000430435000000ff022002700000001b02200039000000200350003900000000002304350000000000150435000000000000043f000004ed0050009c000004ed0500804100000040015002100000000002000414000004ed0020009c000004ed02008041000000c002200210000000000112019f0000052a011001c7000000010200003913b013ab0000040f0000006003100270000004ed03300197000000200030008c000000200400003900000000040340190000001f0540018f000000200440019000000ab50000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000047004b00000ab10000c13d000000000005004b00000ac20000613d000000000641034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000000010020019000000ba40000c13d0000001f0530018f000004ef06300198000000400200043d000000000462001900000bef0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000acb0000c13d00000bef0000013d000000400100043d00000064021000390000055c03000041000000000032043500000044021000390000055d03000041000000000032043500000024021000390000002b03000039000008da0000013d000000400100043d00000044021000390000054603000041000000000032043500000024021000390000001f03000039000002520000013d000000070200002900000040022000390000000003020433000005290030009c00000b600000213d000000070200002900000060022000390000000002020433000000f804200270000000400200043d0000001b0540008a000000010050008c00000bae0000213d000000060500002900000000050504330000006006200039000000000036043500000040032000390000000000530435000000200320003900000000004304350000000000120435000000000000043f000004ed0020009c000004ed0200804100000040012002100000000002000414000004ed0020009c000004ed02008041000000c002200210000000000112019f0000052a011001c7000000010200003913b013ab0000040f0000006003100270000004ed03300197000000200030008c000000200400003900000000040340190000001f0540018f000000200440019000000b110000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000047004b00000b0d0000c13d000000000005004b00000b1e0000613d000000000641034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000000010020019000000bd80000613d000000000100043d000004f20110019800000ba70000613d000000000010043f0000052e01000041000000200010043f0000000001000414000004ed0010009c000004ed01008041000000c00110021000000521011001c7000080100200003913b013ab0000040f00000001002001900000004f0000613d000000000101043b000000000101041a000000ff0010019000000bd10000613d0000000001000411000000000010043f0000000401000039000000200010043f0000000001000414000004ed0010009c000004ed01008041000000c00110021000000521011001c7000080100200003913b013ab0000040f00000001002001900000004f0000613d000000000101043b000000000201041a000000010220003a00000c130000613d000000000021041b000000400100043d000600000001001d0000052f0010009c000001770000213d00000006020000290000002001200039000700000001001d000000400010043f0000000000020435000000400100043d0000000002000411000504f20020019c00000c660000c13d00000064021000390000053b03000041000000000032043500000044021000390000053c03000041000000000032043500000024021000390000002103000039000008da0000013d000000070200002900000040022000390000000003020433000005290030009c00000b6a0000a13d000000400100043d00000064021000390000052b03000041000000000032043500000044021000390000054503000041000000000032043500000024021000390000002203000039000008da0000013d000000070200002900000060022000390000000002020433000000f804200270000000400200043d0000001b0540008a000000010050008c00000bae0000213d000000060500002900000000050504330000006006200039000000000036043500000040032000390000000000530435000000200320003900000000004304350000000000120435000000000000043f000004ed0020009c000004ed0200804100000040012002100000000002000414000004ed0020009c000004ed02008041000000c002200210000000000112019f0000052a011001c7000000010200003913b013ab0000040f0000006003100270000004ed03300197000000200030008c000000200400003900000000040340190000001f0540018f000000200440019000000b950000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000047004b00000b910000c13d000000000005004b00000ba20000613d000000000641034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000000010020019000000be40000613d000000000100043d000004f20110019800000bc10000c13d000000400100043d00000044021000390000054403000041000000000032043500000024021000390000001803000039000002520000013d00000064012000390000052b03000041000000000031043500000044012000390000052c0300004100000000003104350000002401200039000000220300003900000000003104350000051d010000410000000000120435000000040120003900000020030000390000000000310435000004ed0020009c000004ed0200804100000040012002100000052d011001c7000013b200010430000000000010043f0000052e01000041000000200010043f0000000001000414000004ed0010009c000004ed01008041000000c00110021000000521011001c7000080100200003913b013ab0000040f00000001002001900000004f0000613d000000000101043b000000000101041a000000ff0010019000000c020000c13d000000400100043d00000044021000390000054303000041000000000032043500000024021000390000001103000039000002520000013d0000001f0530018f000004ef06300198000000400200043d000000000462001900000bef0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000bdf0000c13d00000bef0000013d0000001f0530018f000004ef06300198000000400200043d000000000462001900000bef0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000beb0000c13d000000000005004b00000bfc0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000004ed0020009c000004ed020080410000004002200210000000000112019f000013b2000104300000000001000411000000000010043f0000000401000039000000200010043f0000000001000414000004ed0010009c000004ed01008041000000c00110021000000521011001c7000080100200003913b013ab0000040f00000001002001900000004f0000613d000000000101043b000000000201041a000000010220003a00000c190000c13d000004fd01000041000000000010043f0000001101000039000000040010043f000004fe01000041000013b200010430000000000021041b000000400100043d0000000002000411000704f20020019c00000c270000c13d00000064021000390000054103000041000000000032043500000044021000390000054203000041000000000032043500000024021000390000002303000039000008da0000013d000004f30010009c000001770000213d0000004002100039000000400020043f00000020021000390000000903000029000000000032043500000001020000390000000000210435000000400100043d000004f30010009c000001770000213d0000004003100039000000400030043f0000002003100039000000080400002900000000004304350000000000210435000000400100043d0000052f0010009c000001770000213d0000002002100039000000400020043f00000000000104350000000901000029000000000010043f000000200000043f0000000001000414000004ed0010009c000004ed01008041000000c00110021000000521011001c7000080100200003913b013ab0000040f00000001002001900000004f0000613d000000000101043b0000000702000029000000000020043f000000200010043f0000000001000414000004ed0010009c000004ed01008041000000c00110021000000521011001c7000080100200003913b013ab0000040f00000001002001900000004f0000613d000000000101043b000000000101041a000600080010007400000ced0000813d000000400100043d00000064021000390000053f03000041000000000032043500000044021000390000054003000041000000000032043500000024021000390000002403000039000008da0000013d000004f30010009c000001770000213d0000004002100039000000400020043f00000020021000390000000903000029000000000032043500000001020000390000000000210435000000400100043d000004f30010009c000001770000213d0000004003100039000000400030043f00000020031000390000000804000029000000000043043500000000002104350000000901000029000000000010043f000000200000043f0000000001000414000004ed0010009c000004ed01008041000000c00110021000000521011001c7000080100200003913b013ab0000040f00000001002001900000004f0000613d000000000101043b0000000502000029000000000020043f000000200010043f0000000001000414000004ed0010009c000004ed01008041000000c00110021000000521011001c7000080100200003913b013ab0000040f00000001002001900000004f0000613d000000000101043b000000000201041a000000080020002a00000c130000413d00000008030000290000000002320019000000000021041b000000400100043d0000002002100039000000000032043500000009020000290000000000210435000004ed0010009c000004ed0100804100000040011002100000000002000414000004ed0020009c000004ed02008041000000c002200210000000000112019f00000521011001c70000800d020000390000000403000039000005300400004100000000050004110000000006000019000000050700002913b013a60000040f00000001002001900000004f0000613d00000531010000410000000000100443000000000100041100000004001004430000000001000414000004ed0010009c000004ed01008041000000c00110021000000532011001c7000080020200003913b013ab0000040f000000010020019000000cec0000613d000000400200043d000400000002001d000000000101043b000000000001004b00000d4d0000c13d000000200100003900000004030000290000000002130436000000800100043d00000000001204350000004002300039000000000001004b00000cd10000613d00000000030000190000000004230019000000a005300039000000000505043300000000005404350000002003300039000000000013004b00000cca0000413d0000001f031000390000056603300197000000000121001900000000000104350000004001300039000004ed0010009c000004ed0100804100000060011002100000000402000029000004ed0020009c000004ed020080410000004002200210000000000121019f0000000002000414000004ed0020009c000004ed02008041000000c002200210000000000112019f000004f7011001c70000800d0200003900000001030000390000053a0400004113b013a60000040f00000001002001900000004f0000613d0000000001000019000013b10001042e000000000001042f0000000901000029000000000010043f000000200000043f0000000001000414000004ed0010009c000004ed01008041000000c00110021000000521011001c7000080100200003913b013ab0000040f00000001002001900000004f0000613d000000000101043b0000000702000029000000000020043f000000200010043f0000000001000414000004ed0010009c000004ed01008041000000c00110021000000521011001c7000080100200003913b013ab0000040f00000001002001900000004f0000613d000000000101043b0000000602000029000000000021041b000000400100043d00000020021000390000000803000029000000000032043500000009020000290000000000210435000004ed0010009c000004ed0100804100000040011002100000000002000414000004ed0020009c000004ed02008041000000c002200210000000000112019f00000521011001c70000800d020000390000000403000039000005300400004100000000050004110000000706000029000000000700001913b013a60000040f00000001002001900000004f0000613d000000400100043d0000052f0010009c000001770000213d0000002002100039000000400020043f00000000000104350000002002000039000000400100043d0000000003210436000000800200043d00000000002304350000004003100039000000000002004b00000d370000613d00000000040000190000000005340019000000a006400039000000000606043300000000006504350000002004400039000000000024004b00000d300000413d0000001f042000390000056604400197000000000232001900000000000204350000004002400039000004ed0020009c000004ed020080410000006002200210000004ed0010009c000004ed010080410000004001100210000000000112019f0000000002000414000004ed0020009c000004ed02008041000000c002200210000000000112019f000004f7011001c70000800d0200003900000001030000390000053e0400004100000ce70000013d00000004030000290000008401300039000000a0020000390000000000210435000000640130003900000008020000290000000000210435000000440130003900000009020000290000000000210435000005330100004100000000001304350000000401300039000000050200002900000000002104350000002401300039000000000001043500000006010000290000000001010433000000a4023000390000000000120435000000c402300039000000000001004b00000d6d0000613d000000000300001900000000042300190000000705300029000000000505043300000000005404350000002003300039000000000013004b00000d660000413d0000001f03100039000005660330019700000000012100190000000000010435000000c401300039000004ed0010009c000004ed0100804100000060011002100000000402000029000004ed0020009c000004ed020080410000004002200210000000000121019f0000000002000414000004ed0020009c000004ed02008041000000c002200210000000000112019f000000050200002913b013a60000040f0000006003100270000004ed03300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000040570002900000d900000613d000000000801034f0000000409000029000000008a08043c0000000009a90436000000000059004b00000d8c0000c13d000000000006004b00000d9d0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000000010020019000000db50000613d0000001f01400039000000600210018f0000000401200029000000000021004b00000000020000390000000102004039000004f00010009c000001770000213d0000000100200190000001770000c13d000000400010043f000000200030008c0000004f0000413d0000000402000029000000000202043300000534002001980000004f0000c13d0000053502200197000005330020009c00000e030000c13d000400000001001d00000cc10000013d000000040430008c00000df90000413d000000000200043d0000053402200197000000000501043b0000053505500197000000000225019f000000000020043f00000535022001970000051d0020009c00000df90000c13d000000440030008c00000df90000413d000000040510037000000566064001980000001f0740018f000000400100043d000000000261001900000dce0000613d000000000805034f0000000009010019000000008a08043c0000000009a90436000000000029004b00000dca0000c13d000000000007004b00000ddb0000613d000000000565034f0000000306700210000000000702043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f00000000005204350000000005010433000004f00050009c00000df90000213d0000002402500039000000000032004b00000df90000213d00000000021500190000000003020433000004f00030009c00000df90000213d000000000441001900000000063200190000002006600039000000000046004b00000df90000213d00000000033500190000003f0330003900000566033001970000000004130019000000000034004b00000000010000390000000101004039000004f00040009c000001770000213d0000000100100190000001770000c13d0000000003040019000000400040043f000000000002004b00000e0c0000c13d000000400100043d00000064021000390000053603000041000000000032043500000044021000390000053703000041000000000032043500000024021000390000003403000039000008da0000013d00000064021000390000053803000041000000000032043500000044021000390000053903000041000000000032043500000024021000390000002803000039000008da0000013d0000051d01000041000900000003001d0000000000130435000000040130003913b00eae0000040f00000009020000290000034d0000013d0001000000000002000004f201100197000100000001001d000000000010043f0000054c01000041000000200010043f0000000001000414000004ed0010009c000004ed01008041000000c00110021000000521011001c7000080100200003913b013ab0000040f000000010020019000000e470000613d000000000101043b000000000101041a000000ff0010019000000e460000c13d0000000101000029000000000010043f0000054c01000041000000200010043f0000000001000414000004ed0010009c000004ed01008041000000c00110021000000521011001c7000080100200003913b013ab0000040f000000010020019000000e470000613d000000000101043b000000000201041a000005670220019700000001022001bf000000000021041b0000000001000414000004ed0010009c000004ed01008041000000c001100210000004f7011001c70000800d02000039000000040300003900000000070004110000054e040000410000000005000019000000010600002913b013a60000040f000000010020019000000e470000613d000000000001042d0000000001000019000013b2000104300001000000000002000004f201100197000100000001001d000000000010043f0000052e01000041000000200010043f0000000001000414000004ed0010009c000004ed01008041000000c00110021000000521011001c7000080100200003913b013ab0000040f000000010020019000000e7d0000613d000000000101043b000000000101041a000000ff0010019000000e7c0000c13d0000000101000029000000000010043f0000052e01000041000000200010043f0000000001000414000004ed0010009c000004ed01008041000000c00110021000000521011001c7000080100200003913b013ab0000040f000000010020019000000e7d0000613d000000000101043b000000000201041a000005670220019700000001022001bf000000000021041b0000000001000414000004ed0010009c000004ed01008041000000c001100210000004f7011001c70000800d02000039000000040300003900000000070004110000054e040000410000054d05000041000000010600002913b013a60000040f000000010020019000000e7d0000613d000000000001042d0000000001000019000013b200010430000005280010009c00000e8d0000213d000000630010008c00000e8d0000a13d00000001030003670000000401300370000000000101043b000004f20010009c00000e8d0000213d0000002402300370000000000202043b0000004403300370000000000303043b000000000001042d0000000001000019000013b200010430000000000003004b00000e990000613d000000000400001900000000052400190000000006140019000000000606043300000000006504350000002004400039000000000034004b00000e920000413d00000000012300190000000000010435000000000001042d00000000430104340000000001320436000000000003004b00000ea80000613d000000000200001900000000051200190000000006240019000000000606043300000000006504350000002002200039000000000032004b00000ea10000413d000000000213001900000000000204350000001f0230003900000566022001970000000001210019000000000001042d00000020030000390000000004310436000000003202043400000000002404350000004001100039000000000002004b00000ebd0000613d000000000400001900000000051400190000000006430019000000000606043300000000006504350000002004400039000000000024004b00000eb60000413d000000000312001900000000000304350000001f0220003900000566022001970000000001120019000000000001042d000005690010009c00000ec80000813d0000002001100039000000400010043f000000000001042d000004fd01000041000000000010043f0000004101000039000000040010043f000004fe01000041000013b2000104300000001f0220003900000566022001970000000001120019000000000021004b00000000020000390000000102004039000004f00010009c00000eda0000213d000000010020019000000eda0000c13d000000400010043f000000000001042d000004fd01000041000000000010043f0000004101000039000000040010043f000004fe01000041000013b2000104300000001f03100039000000000023004b0000000004000019000004f104004041000004f105200197000004f103300197000000000653013f000000000053004b0000000003000019000004f103002041000004f10060009c000000000304c019000000000003004b00000f270000613d0000000104000367000000000314034f000000000303043b0000056a0030009c00000f210000813d0000001f0630003900000566066001970000003f066000390000056607600197000000400600043d0000000007760019000000000067004b00000000080000390000000108004039000004f00070009c00000f210000213d000000010080019000000f210000c13d0000002008100039000000400070043f00000000013604360000000006830019000000000026004b00000f270000213d000000000484034f00000566053001980000001f0630018f000000000251001900000f110000613d000000000704034f0000000008010019000000007907043c0000000008980436000000000028004b00000f0d0000c13d000000000006004b00000f1e0000613d000000000454034f0000000305600210000000000602043300000000065601cf000000000656022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000464019f000000000042043500000000013100190000000000010435000000000001042d000004fd01000041000000000010043f0000004101000039000000040010043f000004fe01000041000013b2000104300000000001000019000013b200010430000004f202200197000000000020043f000000200010043f0000000001000414000004ed0010009c000004ed01008041000000c00110021000000521011001c7000080100200003913b013ab0000040f000000010020019000000f370000613d000000000101043b000000000001042d0000000001000019000013b2000104300001000000000002000104f20010019c00000f590000613d000000000020043f000000200000043f0000000001000414000004ed0010009c000004ed01008041000000c00110021000000521011001c7000080100200003913b013ab0000040f000000010020019000000f570000613d000000000101043b0000000102000029000000000020043f000000200010043f0000000001000414000004ed0010009c000004ed01008041000000c00110021000000521011001c7000080100200003913b013ab0000040f000000010020019000000f570000613d000000000101043b000000000101041a000000000001042d0000000001000019000013b200010430000000400100043d00000064021000390000055c03000041000000000032043500000044021000390000055d03000041000000000032043500000024021000390000002b0300003900000000003204350000051d020000410000000000210435000000040210003900000020030000390000000000320435000004ed0010009c000004ed0100804100000040011002100000052d011001c7000013b2000104300000000205000039000000000405041a000000010640019000000001024002700000007f0220618f0000001f0020008c00000000010000390000000101002039000000000016004b00000f9b0000c13d000000400100043d0000000003210436000000000006004b00000f880000613d000000000050043f000000000002004b00000f8e0000613d0000056b0500004100000000040000190000000006340019000000000705041a000000000076043500000001055000390000002004400039000000000024004b00000f800000413d00000f8f0000013d00000567044001970000000000430435000000000002004b0000002004000039000000000400603900000f8f0000013d00000000040000190000003f0240003900000566032001970000000002130019000000000032004b00000000030000390000000103004039000004f00020009c00000fa10000213d000000010030019000000fa10000c13d000000400020043f000000000001042d000004fd01000041000000000010043f0000002201000039000000040010043f000004fe01000041000013b200010430000004fd01000041000000000010043f0000004101000039000000040010043f000004fe01000041000013b20001043000030000000000020000000001000411000004f201100197000000000010043f0000052e01000041000000200010043f0000000001000414000004ed0010009c000004ed01008041000000c00110021000000521011001c7000080100200003913b013ab0000040f000000010020019000000fbb0000613d000000000101043b000000000101041a000000ff0010019000000fbd0000613d000000000001042d0000000001000019000013b200010430000000400200043d0000056c0020009c00000fc60000413d000004fd01000041000000000010043f0000004101000039000000040010043f000004fe01000041000013b2000104300000006004200039000000400040043f0000002a01000039000000000112043600000000030000310000000103300367000000000503034f0000000006010019000000005705043c0000000006760436000000000046004b00000fce0000c13d0000000004010433000005500440019700000551044001c7000000000041043500000021042000390000000005040433000005500550019700000552055001c700000000005404350000002904000039000000000600041100000000050600190000000006020433000000000046004b000010450000a13d0000000006140019000000000706043300000550077001970000000308500210000000780880018f000005530880021f0000055408800197000000000787019f00000000007604350000000406500270000000010440008a000000010040008c00000fdd0000213d000000100050008c0000104b0000813d000000400400043d000300000004001d000005200040009c00000fc00000213d00000003060000290000008005600039000000400050043f000000420400003900000000044604360000000006040019000000003703043c0000000006760436000000000056004b00000ffa0000c13d0000000003040433000005500330019700000551033001c70000000000340435000000030900002900000021039000390000000005030433000005500550019700000552055001c700000000005304350000054d06000041000000410300003900000000050600190000000006090433000000000036004b000010450000a13d0000000006430019000000000706043300000550077001970000000308500210000000780880018f000005530880021f0000055408800197000000000787019f00000000007604350000000406500270000000010330008a000000010030008c0000100a0000213d0000000f0050008c0000104b0000213d000000400500043d000200000005001d0000002003500039000005560400004100000000004304350000000003020433000100000003001d000000370250003913b00e8f0000040f000000010200002900000002012000290000003702100039000005570300004100000000003204350000004802100039000000030100002913b0136f0000040f00000002030000290000000002310049000000200120008a0000000000130435000000000103001913b00ece0000040f0000051d01000041000000400200043d000300000002001d00000000001204350000000401200039000000020200002913b00eae0000040f00000003020000290000000001210049000004ed0010009c000004ed010080410000006001100210000004ed0020009c000004ed020080410000004002200210000000000121019f000013b200010430000004fd01000041000000000010043f0000003201000039000000040010043f000004fe01000041000013b200010430000000400100043d0000004402100039000005550300004100000000003204350000051d02000041000000000021043500000024021000390000002003000039000000000032043500000004021000390000000000320435000004ed0010009c000004ed0100804100000040011002100000051e011001c7000013b2000104300004000000000002000400000001001d000000000010043f0000000301000039000000200010043f0000000001000414000004ed0010009c000004ed01008041000000c00110021000000521011001c7000080100200003913b013ab0000040f00000001002001900000107c0000613d0000000002000411000000000101043b000004f202200197000000000020043f000000200010043f0000000001000414000004ed0010009c000004ed01008041000000c00110021000000521011001c7000080100200003913b013ab0000040f00000001002001900000107c0000613d000000000101043b000000000101041a000000ff001001900000107e0000613d000000000001042d0000000001000019000013b200010430000000400100043d0000056c0010009c000010870000413d000004fd01000041000000000010043f0000004101000039000000040010043f000004fe01000041000013b20001043000000000070100190000006002700039000000400020043f0000002a01000039000000000417043600000000010000310000000101100367000000000301034f0000000009040019000000003503043c0000000004540436000000000024004b000010900000c13d000000000a0900190000000002090433000005500220019700000551022001c70000000000290435000000000807001900000021027000390000000003020433000005500330019700000552033001c700000000003204350000002902000039000000000400041100000000030400190000000004080433000000000024004b0000110d0000a13d0000000004a20019000000000504043300000550055001970000000306300210000000780660018f000005530660021f0000055406600197000000000565019f00000000005404350000000404300270000000010220008a000000010020008c000010a10000213d000000400800043d000000100030008c000011130000813d000005200080009c000010810000213d0000008003800039000000400030043f000000420200003900000000022804360000000004020019000000001501043c0000000004540436000000000034004b000010bc0000c13d0000000001020433000005500110019700000551011001c7000000000012043500000021018000390000000003010433000005500330019700000552033001c700000000003104350000004101000039000000040400002900000000030400190000000004080433000000000014004b0000110d0000a13d0000000004210019000000000504043300000550055001970000000306300210000000780660018f000005530660021f0000055406600197000000000556019f00000000005404350000000404300270000000010110008a000000010010008c000010cb0000213d000000100030008c00000000010000390000000101004039000100000007001d000200000009001d000300000008001d13b0137d0000040f000000400400043d000400000004001d00000020014000390000055602000041000000000021043500000001010000290000000003010433000100000003001d0000003702400039000000020100002913b00e8f0000040f000000010200002900000004012000290000055702000041000000370310003900000000002304350000004802100039000000030100002913b0136f0000040f00000004030000290000000002310049000000200120008a0000000000130435000000000103001913b00ece0000040f0000051d01000041000000400200043d000300000002001d00000000001204350000000401200039000000040200002913b00eae0000040f00000003020000290000000001210049000004ed0010009c000004ed010080410000006001100210000004ed0020009c000004ed020080410000004002200210000000000121019f000013b200010430000004fd01000041000000000010043f0000003201000039000000040010043f000004fe01000041000013b2000104300000004401800039000005550200004100000000002104350000051d01000041000000000018043500000024018000390000002002000039000000000021043500000004018000390000000000210435000004ed0080009c000004ed0800804100000040018002100000051e011001c7000013b2000104300005000000000002000100000004001d0000000004020019000000400500043d000504f20010019c000011ec0000613d000200000001001d0000056d0050009c0000124e0000813d0000004002500039000000400020043f0000002002500039000000000042043500000001020000390000000000250435000000400100043d000004f30010009c0000124e0000213d0000004005100039000000400050043f0000002005100039000300000003001d00000000003504350000000000210435000400000004001d000000000040043f000000200000043f0000000001000414000004ed0010009c000004ed01008041000000c00110021000000521011001c7000080100200003913b013ab0000040f0000000100200190000011ea0000613d000000000101043b0000000502000029000000000020043f000000200010043f0000000001000414000004ed0010009c000004ed01008041000000c00110021000000521011001c7000080100200003913b013ab0000040f0000000100200190000011ea0000613d000000000101043b000000000201041a0000000303000029000000000032001a000012760000413d0000000002320019000000000021041b000000400100043d0000002002100039000000000032043500000004020000290000000000210435000004ed0010009c000004ed0100804100000040011002100000000002000414000004ed0020009c000004ed02008041000000c002200210000000000112019f00000521011001c70000800d020000390000000403000039000000000500041100000530040000410000000006000019000000050700002913b013a60000040f0000000100200190000011ea0000613d00000531010000410000000000100443000000020100002900000004001004430000000001000414000004ed0010009c000004ed01008041000000c00110021000000532011001c7000080020200003913b013ab0000040f0000000100200190000011ff0000613d000000000101043b000000000001004b00000004030000290000000304000029000011e90000613d000000400700043d0000008401700039000000a00200003900000000002104350000006401700039000000000041043500000044017000390000000000310435000005330100004100000000001704350000000001000411000004f2011001970000000402700039000000000012043500000024017000390000000000010435000000a402700039000000010100002900000000310104340000000000120435000000c402700039000000000001004b000011a20000613d000000000400001900000000052400190000000006430019000000000606043300000000006504350000002004400039000000000014004b0000119b0000413d0000001f03100039000005660330019700000000012100190000000000010435000000c401300039000004ed0010009c000004ed010080410000006001100210000004ed0070009c000004ed0200004100000000020740190000004002200210000000000121019f0000000002000414000004ed0020009c000004ed02008041000000c002200210000000000112019f0000000502000029000500000007001d13b013a60000040f000000050b0000290000006003100270000004ed03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000011c70000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000011c30000c13d000000000006004b000011d40000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f00000000006504350000000100200190000012000000613d0000001f01400039000000600210018f0000000001b20019000000000021004b00000000020000390000000102004039000004f00010009c0000124e0000213d00000001002001900000124e0000c13d000000400010043f000000200030008c000011ea0000413d00000000020b04330000053400200198000011ea0000c13d0000053502200197000005330020009c000012540000c13d000000000001042d0000000001000019000013b20001043000000064025000390000053b03000041000000000032043500000044025000390000053c0300004100000000003204350000002402500039000000210300003900000000003204350000051d020000410000000000250435000000040250003900000020030000390000000000320435000004ed0050009c000004ed0500804100000040015002100000052d011001c7000013b200010430000000000001042f000000040430008c000012440000413d000000000200043d0000053402200197000000000501043b0000053505500197000000000225019f000000000020043f00000535022001970000051d0020009c000012440000c13d000000440030008c000012440000413d000000040510037000000566064001980000001f0740018f000000400100043d0000000002610019000012190000613d000000000805034f0000000009010019000000008a08043c0000000009a90436000000000029004b000012150000c13d000000000007004b000012260000613d000000000565034f0000000306700210000000000702043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f00000000005204350000000005010433000004f00050009c000012440000213d0000002402500039000000000032004b000012440000213d00000000021500190000000003020433000004f00030009c000012440000213d000000000441001900000000063200190000002006600039000000000046004b000012440000213d00000000033500190000003f0330003900000566033001970000000004130019000000000034004b00000000010000390000000101004039000004f00040009c0000124e0000213d00000001001001900000124e0000c13d0000000003040019000000400040043f000000000002004b000012670000c13d000000400100043d000000640210003900000536030000410000000000320435000000440210003900000537030000410000000000320435000000240210003900000034030000390000125c0000013d000004fd01000041000000000010043f0000004101000039000000040010043f000004fe01000041000013b2000104300000006402100039000005380300004100000000003204350000004402100039000005390300004100000000003204350000002402100039000000280300003900000000003204350000051d020000410000000000210435000000040210003900000020030000390000000000320435000004ed0010009c000004ed0100804100000040011002100000052d011001c7000013b2000104300000051d01000041000500000003001d0000000000130435000000040130003913b00eae0000040f00000005020000290000000001210049000004ed0010009c000004ed010080410000006001100210000004ed0020009c000004ed020080410000004002200210000000000121019f000013b200010430000004fd01000041000000000010043f0000001101000039000000040010043f000004fe01000041000013b2000104300002000000000002000100000002001d000200000001001d000000000010043f0000000301000039000000200010043f0000000001000414000004ed0010009c000004ed01008041000000c00110021000000521011001c7000080100200003913b013ab0000040f0000000100200190000012cb0000613d000000000101043b0000000102000029000004f202200197000100000002001d000000000020043f000000200010043f0000000001000414000004ed0010009c000004ed01008041000000c00110021000000521011001c7000080100200003913b013ab0000040f0000000100200190000012cb0000613d000000000101043b000000000101041a000000ff00100190000012ca0000613d0000000201000029000000000010043f0000000301000039000000200010043f0000000001000414000004ed0010009c000004ed01008041000000c00110021000000521011001c7000080100200003913b013ab0000040f0000000100200190000012cb0000613d000000000101043b0000000102000029000000000020043f000000200010043f0000000001000414000004ed0010009c000004ed01008041000000c00110021000000521011001c7000080100200003913b013ab0000040f0000000100200190000012cb0000613d000000000101043b000000000201041a0000056702200197000000000021041b0000000001000414000004ed0010009c000004ed01008041000000c001100210000004f7011001c70000800d020000390000000403000039000000000700041100000560040000410000000205000029000000010600002913b013a60000040f0000000100200190000012cb0000613d000000000001042d0000000001000019000013b2000104300004000000000002000000400400043d000404f20010019c000013480000613d0000056d0040009c000013420000813d0000004001400039000000400010043f0000002001400039000000000021043500000001010000390000000000140435000000400400043d000004f30040009c000013420000213d0000004005400039000000400050043f000000200540003900000000003504350000000000140435000000400100043d0000052f0010009c000013420000213d000300000003001d0000002003100039000000400030043f0000000000010435000200000002001d000000000020043f000000200000043f0000000001000414000004ed0010009c000004ed01008041000000c00110021000000521011001c7000080100200003913b013ab0000040f0000000100200190000013400000613d000000000101043b0000000402000029000000000020043f000000200010043f0000000001000414000004ed0010009c000004ed01008041000000c00110021000000521011001c7000080100200003913b013ab0000040f0000000100200190000013400000613d000000000101043b000000000101041a00010003001000740000135b0000413d0000000201000029000000000010043f000000200000043f0000000001000414000004ed0010009c000004ed01008041000000c00110021000000521011001c7000080100200003913b013ab0000040f0000000100200190000013400000613d000000000101043b0000000402000029000000000020043f000000200010043f0000000001000414000004ed0010009c000004ed01008041000000c00110021000000521011001c7000080100200003913b013ab0000040f0000000100200190000013400000613d000000000101043b0000000102000029000000000021041b000000400100043d00000020021000390000000303000029000000000032043500000002020000290000000000210435000004ed0010009c000004ed0100804100000040011002100000000002000414000004ed0020009c000004ed02008041000000c002200210000000000112019f00000521011001c70000800d020000390000000403000039000000000500041100000530040000410000000406000029000000000700001913b013a60000040f0000000100200190000013400000613d000000400100043d0000052f0010009c000013420000213d0000002002100039000000400020043f0000000000010435000000000001042d0000000001000019000013b200010430000004fd01000041000000000010043f0000004101000039000000040010043f000004fe01000041000013b2000104300000006401400039000005410300004100000000003104350000004401400039000005420300004100000000003104350000002401400039000000230300003900000000003104350000051d010000410000000000140435000000040140003900000020030000390000000000310435000004ed0040009c000004ed0400804100000040014002100000052d011001c7000013b200010430000000400100043d00000064021000390000053f0300004100000000003204350000004402100039000005400300004100000000003204350000002402100039000000240300003900000000003204350000051d020000410000000000210435000000040210003900000020030000390000000000320435000004ed0010009c000004ed0100804100000040011002100000052d011001c7000013b2000104300000000031010434000000000001004b0000137a0000613d000000000400001900000000052400190000000006430019000000000606043300000000006504350000002004400039000000000014004b000013730000413d00000000012100190000000000010435000000000001042d000000000001004b000013800000613d000000000001042d000000400100043d0000004402100039000005550300004100000000003204350000051d02000041000000000021043500000024021000390000002003000039000000000032043500000004021000390000000000320435000004ed0010009c000004ed0100804100000040011002100000051e011001c7000013b200010430000000000001042f000004ed0010009c000004ed010080410000004001100210000004ed0020009c000004ed020080410000006002200210000000000112019f0000000002000414000004ed0020009c000004ed02008041000000c002200210000000000112019f000004f7011001c7000080100200003913b013ab0000040f0000000100200190000013a40000613d000000000101043b000000000001042d0000000001000019000013b200010430000013a9002104210000000102000039000000000001042d0000000002000019000000000001042d000013ae002104230000000102000039000000000001042d0000000002000019000000000001042d000013b000000432000013b10001042e000013b200010430000000000000000000000000000000000000000000000000000000000000000000000000ffffffff00000000000000000000000000000000000000000000000000000001ffffffe000000000000000000000000000000000000000000000000000000000ffffffe0000000000000000000000000000000000000000000000000ffffffffffffffff8000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000ffffffffffffffbf476f6c645f7369676e65640000000000000000000000000000000000000000003100000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000002000000000000000000000000002000000000000000000000000000000000000000000000000000000000000009a8a0592ac89c5ad3bc6df8224c17b485976f597df104ee20d0df415241f670b02000002000000000000000000000000000000040000000000000000000000008b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f000000000000000000000000000000000000000000000000ffffffffffffff3f00000002000000000000000000000000000001c00000010000000000000000004e487b71000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024000000000000000000000000000000000000000000000000000000000000000000000000000000004e1273f300000000000000000000000000000000000000000000000000000000aed4b3ea00000000000000000000000000000000000000000000000000000000e8a3d48400000000000000000000000000000000000000000000000000000000e8a3d48500000000000000000000000000000000000000000000000000000000e985e9c500000000000000000000000000000000000000000000000000000000f242432a00000000000000000000000000000000000000000000000000000000aed4b3eb00000000000000000000000000000000000000000000000000000000d547741f00000000000000000000000000000000000000000000000000000000dc2140550000000000000000000000000000000000000000000000000000000091d148530000000000000000000000000000000000000000000000000000000091d1485400000000000000000000000000000000000000000000000000000000a217fddf00000000000000000000000000000000000000000000000000000000a22cb465000000000000000000000000000000000000000000000000000000004e1273f40000000000000000000000000000000000000000000000000000000070480275000000000000000000000000000000000000000000000000000000001b56a5bd000000000000000000000000000000000000000000000000000000002eb2c2d5000000000000000000000000000000000000000000000000000000002eb2c2d6000000000000000000000000000000000000000000000000000000002f2ff15d0000000000000000000000000000000000000000000000000000000036568abe000000000000000000000000000000000000000000000000000000001b56a5be00000000000000000000000000000000000000000000000000000000248a9ca3000000000000000000000000000000000000000000000000000000002d0335ab0000000000000000000000000000000000000000000000000000000001ffc9a60000000000000000000000000000000000000000000000000000000001ffc9a7000000000000000000000000000000000000000000000000000000000e89341c000000000000000000000000000000000000000000000000000000001785f53c00000000000000000000000000000000000000000000000000000000004a84cb0000000000000000000000000000000000000000000000000000000000fdd58e546f6b656e207472616e7366657273206172652064697361626c65640000000008c379a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffff7f02000000000000000000000000000000000000400000000000000000000000000200000000000000000000000000000000000000000000a000000000000000001fc9dcfd0aa39eefa179f379ce3b75042bdbe14f2413e32afaf1ed5d290f7a96000000000000000000000000000000000000000000000000ffffffffffffff1f310ab089e4439a4c15d089f94afb7896ff553aecb10793d0ab882de59d99a32e020000020000000000000000000000000000004400000000000000000000000019010000000000000000000000000000000000000000000000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a00000000000000000000000000000000000000080000000000000000000000000756500000000000000000000000000000000000000000000000000000000000045434453413a20696e76616c6964207369676e6174757265202776272076616c0000000000000000000000000000000000000084000000000000000000000000a665d3385c074a5fa4bcec2a570c94dbdb08d6b09bca4e08f8c3951c94a3d998000000000000000000000000000000000000000000000000ffffffffffffffdfc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f621806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b830200000200000000000000000000000000000024000000000000000000000000f23a6e610000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00000000000000000000000000000000000000000000000000000000526563656976657220696d706c656d656e746572000000000000000000000000455243313135353a207472616e7366657220746f206e6f6e20455243313135356420746f6b656e73000000000000000000000000000000000000000000000000455243313135353a204552433131353552656365697665722072656a65637465c5e1d731c47dbd6a8c38e6ee9137792904eae9d20174034d1dc9a5781a0f855b7300000000000000000000000000000000000000000000000000000000000000455243313135353a206d696e7420746f20746865207a65726f2061646472657354414f33f1da18fc976cb824668a8806362ab48e9dbb1fd95766db634dc87a6737214d27fd302ce6f8478f95b7598e447fefc1b3029242f09cb34db2c5833155616e636500000000000000000000000000000000000000000000000000000000455243313135353a206275726e20616d6f756e7420657863656564732062616c6573730000000000000000000000000000000000000000000000000000000000455243313135353a206275726e2066726f6d20746865207a65726f2061646472496e76616c6964207369676e617475726500000000000000000000000000000045434453413a20696e76616c6964207369676e6174757265000000000000000045434453413a20696e76616c6964207369676e6174757265202773272076616c45434453413a20696e76616c6964207369676e6174757265206c656e6774680017307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31455243313135353a2073657474696e6720617070726f76616c2073746174757320666f722073656c660000000000000000000000000000000000000000000000000000000000000000000000000000000000008400000080000000000000000000000000000000000000000000000000000000200000008000000000000000003617319a054d772f909f7c479a2cebe5066e836a939412e32403c99029b92effa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c217752f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d000000000000000000000000000000000000000000000000ffffffffffffff9f00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff3000000000000000000000000000000000000000000000000000000000000000780000000000000000000000000000000000000000000000000000000000000030313233343536373839616263646566000000000000000000000000000000007f00000000000000000000000000000000000000000000000000000000000000537472696e67733a20686578206c656e67746820696e73756666696369656e74416363657373436f6e74726f6c3a206163636f756e7420000000000000000000206973206d697373696e6720726f6c65200000000000000000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0206d69736d617463680000000000000000000000000000000000000000000000455243313135353a206163636f756e747320616e6420696473206c656e67746800000000000000000000000000000000000000000000003fffffffffffffffe065726f2061646472657373000000000000000000000000000000000000000000455243313135353a2062616c616e636520717565727920666f7220746865207a416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636520726f6c657320666f722073656c660000000000000000000000000000000000f6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b7965db0affffffffffffffffffffffffffffffffffffffffffffffffffffffffd9b67a26000000000000000000000000000000000000000000000000000000007965db0b0000000000000000000000000000000000000000000000000000000001ffc9a7000000000000000000000000000000000000000000000000000000000e89341c00000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000ffffffffffffffe00000000000000000000000000000000000000000000000010000000000000000405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace000000000000000000000000000000000000000000000000ffffffffffffffa0000000000000000000000000000000000000000000000000ffffffffffffffc002da0944ffec01142b7d44e591a4e92b598349e8d9840f3b1894629674b9e2c5
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000fe966bfb7dfbabf939dae130c69f40609701ac6d000000000000000000000000000000000000000000000000000000000000003468747470733a2f2f6170692e7468656c6173746d6f6e61726368792e696f2f76312f676f6c642d6d657461646174612e6a736f6e000000000000000000000000
-----Decoded View---------------
Arg [0] : _uri (string): https://api.thelastmonarchy.io/v1/gold-metadata.json
Arg [1] : _admin (address): 0xFe966BfB7DfbaBf939Dae130C69f40609701AC6d
-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 000000000000000000000000fe966bfb7dfbabf939dae130c69f40609701ac6d
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000034
Arg [3] : 68747470733a2f2f6170692e7468656c6173746d6f6e61726368792e696f2f76
Arg [4] : 312f676f6c642d6d657461646174612e6a736f6e000000000000000000000000
Loading...
Loading
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.