Overview
ETH Balance
0 ETH
ETH Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 91 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Set Paused | 1569099 | 10 days ago | IN | 0 ETH | 0.00000578 | ||||
Mint | 1565807 | 10 days ago | IN | 0 ETH | 0.00001167 | ||||
Set Uri | 1563166 | 10 days ago | IN | 0 ETH | 0.00000864 | ||||
Set Contract URI | 1563068 | 10 days ago | IN | 0 ETH | 0.00000832 | ||||
Set Type And Nam... | 1559308 | 10 days ago | IN | 0 ETH | 0.00000764 | ||||
Set Type And Nam... | 1559302 | 10 days ago | IN | 0 ETH | 0.00000764 | ||||
Set Type And Nam... | 1559295 | 10 days ago | IN | 0 ETH | 0.00000764 | ||||
Set Type And Nam... | 1559289 | 10 days ago | IN | 0 ETH | 0.00000764 | ||||
Set Type And Nam... | 1559282 | 10 days ago | IN | 0 ETH | 0.00000764 | ||||
Set Type And Nam... | 1559276 | 10 days ago | IN | 0 ETH | 0.00000764 | ||||
Set Type And Nam... | 1559270 | 10 days ago | IN | 0 ETH | 0.00000764 | ||||
Set Type And Nam... | 1559263 | 10 days ago | IN | 0 ETH | 0.00000764 | ||||
Set Type And Nam... | 1559257 | 10 days ago | IN | 0 ETH | 0.00000764 | ||||
Set Type And Nam... | 1559251 | 10 days ago | IN | 0 ETH | 0.00000764 | ||||
Set Type And Nam... | 1559244 | 10 days ago | IN | 0 ETH | 0.00000765 | ||||
Set Type And Nam... | 1559238 | 10 days ago | IN | 0 ETH | 0.00000765 | ||||
Set Type And Nam... | 1559231 | 10 days ago | IN | 0 ETH | 0.00000764 | ||||
Set Type And Nam... | 1559225 | 10 days ago | IN | 0 ETH | 0.00000764 | ||||
Set Soul Bound | 1559223 | 10 days ago | IN | 0 ETH | 0.00000508 | ||||
Set Type And Nam... | 1559221 | 10 days ago | IN | 0 ETH | 0.00000764 | ||||
Set Type And Nam... | 1559215 | 10 days ago | IN | 0 ETH | 0.00000764 | ||||
Set Type And Nam... | 1559209 | 10 days ago | IN | 0 ETH | 0.00000764 | ||||
Set Type And Nam... | 1559203 | 10 days ago | IN | 0 ETH | 0.00000764 | ||||
Set Type And Nam... | 1559200 | 10 days ago | IN | 0 ETH | 0.00000764 | ||||
Set Type And Nam... | 1559194 | 10 days ago | IN | 0 ETH | 0.00000764 |
Latest 1 internal transaction
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
1304377 | 13 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:
GameItems
Compiler Version
v0.8.28+commit.7893614a
ZkSolc Version
v1.5.7
Optimization Enabled:
Yes with Mode 3
Other Settings:
cancun EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT LICENSE pragma solidity ^0.8.9; import "@openzeppelin/contracts/access/Ownable.sol"; import {MANAGER_ROLE, MINTER_ROLE, GAME_LOGIC_CONTRACT_ROLE, DEPLOYER_ROLE} from "../constants/RoleConstants.sol"; import {IS_SOULBOUND_CID, NAME_CID, PLAYER_CID, ID_CID, BALANCE_CID, CONTRACT_URI_CID, BASE_URI_CID, BASE_NAME_CID, MAX_SUPPLY_CID, BURN_COUNT_CID, MINT_COUNT_CID, OWNER_CID} from "../constants/ColumnConstants.sol"; import {IGameItems, ID} from "./IGameItems.sol"; import {GameRegistryConsumer} from "../core/GameRegistryConsumer.sol"; import {IERC1155UpdateHandler} from "./IERC1155UpdateHandler.sol"; import {IERC165} from "@openzeppelin/contracts/utils/introspection/IERC165.sol"; import {DataTable} from "../db/DataTable.sol"; import {ERC1155C} from "@creator-token-standards/erc1155c/ERC1155C.sol"; import {OwnableBasic} from "@creator-token-standards/access/OwnableBasic.sol"; import {BasicRoyalties} from "@creator-token-standards/programmable-royalties/BasicRoyalties.sol"; import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol"; import {ERC2981} from "@openzeppelin/contracts/token/common/ERC2981.sol"; import {ERC1155} from "@openzeppelin/contracts/token/ERC1155/ERC1155.sol"; import {IERC1155} from "@openzeppelin/contracts/token/ERC1155/IERC1155.sol"; import {ERC1155OpenZeppelin} from "@creator-token-standards/token/erc1155/ERC1155OpenZeppelin.sol"; /** @title ERC1155 contract for Game Items */ contract GameItems is DataTable, IGameItems, ERC1155C, OwnableBasic, BasicRoyalties { /** TYPES **/ struct TypeInfo { uint256 mints; uint256 burns; uint256 maxSupply; } /** MEMBERS **/ /// @notice Handler for before update events address public updateHandler; /** EVENTS **/ /// @notice Emitted when contractURI has changed event ContractURIUpdated(string uri); /** ERRORS **/ /// @notice maxSupply needs to be higher than minted error MaxSupplyTooLow(uint256 needed, uint256 actual); /// @notice Token type has not been defined error NonExistentTokenId(uint256); /// @notice Amount to mint exceeds max supply error NotEnoughSupply(uint256 needed, uint256 actual); /** * Initializer function for upgradeable contract */ constructor(address gameRegistryAddress, address royaltiesAddress, uint96 feeNumerator) DataTable(gameRegistryAddress, ID) ERC1155OpenZeppelin("") BasicRoyalties(royaltiesAddress, feeNumerator) {} function initialize() external override onlyRole(DEPLOYER_ROLE) { initializeTable("Gigaverse - Items", ID); } /** EXTERNAL **/ /** * Sets the current contractURI for the contract * * @param _uri New contract URI */ function setContractURI(string calldata _uri) public onlyRole(MANAGER_ROLE) { _setTableStringValue(CONTRACT_URI_CID, _uri); emit ContractURIUpdated(_uri); } function owner() public view override(DataTable, Ownable) returns (address) { return getTableAddressValue(OWNER_CID); } /** * @return Contract metadata URI for the NFT contract, used by NFT marketplaces to display collection inf */ function contractURI() public view returns (string memory) { return getTableStringValue(CONTRACT_URI_CID); } function setBaseTokenName(string memory baseTokenName) external onlyRole(MANAGER_ROLE) { _setTableStringValue(BASE_NAME_CID, baseTokenName); } function getType(uint256 id) public view returns (TypeInfo memory) { uint256 maxSupply = getDocUint256Value(id, MAX_SUPPLY_CID); uint256 mints = getDocUint256Value(id, MINT_COUNT_CID); uint256 burns = getDocUint256Value(id, BURN_COUNT_CID); return TypeInfo(mints, burns, maxSupply); } /** * Sets a mintable token type up * * @param id Id of the token type to setup * @param maxSupply Max Supply of the stoken */ function setType( uint256 id, uint256 maxSupply ) public onlyRole(MANAGER_ROLE) { TypeInfo memory typeData = getType(id); if (typeData.mints > maxSupply) { revert MaxSupplyTooLow(typeData.mints, maxSupply); } _setDocUint256Value(id, MAX_SUPPLY_CID, maxSupply); } function setTokenName(uint256 id, string memory name) public onlyRole(MANAGER_ROLE) { _setDocStringValue(id, NAME_CID, name); } function setSoulBound(uint256 id, bool soulBound) public onlyRole(MANAGER_ROLE) { _setDocBoolValue(id, IS_SOULBOUND_CID, soulBound); } function setTypeAndName( uint256 id, uint256 maxSupply, string memory name ) external onlyRole(MANAGER_ROLE) { setType(id, maxSupply); setTokenName(id, name); } /** * Mints a ERC1155 token * * @param to Recipient of the token * @param id Id of token to mint * @param amount Quantity of token to mint */ function mint( address to, uint256 id, uint256 amount ) external override onlyRole(MINTER_ROLE) whenNotPaused { _safeMint(to, id, amount); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}. * * 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 mintBatch( address to, uint256[] memory ids, uint256[] memory amounts, bytes memory /*data*/ ) external onlyRole(MINTER_ROLE) whenNotPaused { _confirmMintBatch(to, ids, amounts); } function mintBatch( address to, uint256[] memory ids, uint256[] memory amounts ) external onlyRole(MINTER_ROLE) whenNotPaused { _confirmMintBatch(to, ids, amounts); } /** * Burn a token - any payment / game logic should be handled in the game contract. * * @param from Account to burn from * @param id Id of the token to burn * @param amount Quantity to burn */ function burn( address from, uint256 id, uint256 amount ) external override onlyRole(GAME_LOGIC_CONTRACT_ROLE) whenNotPaused { _confirmBurn(from, id, amount); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}. * * Emits a {TransferBatch} event. * * Requirements: * * - `ids` and `amounts` must have the same length. */ function burnBatch( address from, uint256[] memory ids, uint256[] memory amounts ) external onlyRole(GAME_LOGIC_CONTRACT_ROLE) whenNotPaused { require(ids.length == amounts.length, "Ids and amounts must have the same length"); for (uint256 i = 0; i < ids.length; i++) { _confirmBurn(from, ids[i], amounts[i]); } } function setUri(string memory newUri) external onlyRole(MANAGER_ROLE) { _setTableStringValue(BASE_URI_CID, newUri); } function uri(uint256 /*id*/) public view override returns (string memory) { return getTableStringValue(BASE_URI_CID); } /** * @param id Id of the type to get data for * * @return How many of the given token id have been minted */ function minted( uint256 id ) external view virtual override(IGameItems) returns (uint256) { return getDocUint256Value(id, MINT_COUNT_CID); } /** * Sets the before token transfer handler * * @param handlerAddress Address to the transfer hook handler contract */ function setUpdateHandler( address handlerAddress ) external onlyRole(MANAGER_ROLE) { updateHandler = handlerAddress; } function supportsInterface( bytes4 interfaceId ) public view virtual override( ERC1155C, IERC165, ERC2981 ) returns (bool) { return super.supportsInterface(interfaceId) || interfaceId == type(IGameItems).interfaceId; } /** @return Token name for the given tokenId */ function tokenName( uint256 tokenId ) public view virtual returns (string memory) { if (hasDocStringValue(tokenId, NAME_CID)) { // If token has a name trait set, use that return getDocStringValue(tokenId, NAME_CID); } else { return string(abi.encodePacked(getTableStringValue(BASE_NAME_CID), tokenId)); } } function getAccountTokenKey(address account, uint256 id) public pure returns (uint256) { return uint256(keccak256(abi.encodePacked(account, id))); } function balanceOf(address account, uint256 id) public view override(IERC1155, ERC1155) returns (uint256) { return getDocUint256Value(getAccountTokenKey(account, id), BALANCE_CID); } /*** INTERNAL ***/ function _confirmMintBatch(address to, uint256[] memory ids, uint256[] memory amounts) internal { require(ids.length == amounts.length, "Ids and amounts must have the same length"); for (uint256 i = 0; i < ids.length; i++) { _safeMint(to, ids[i], amounts[i]); } } // Executes the mint with appropriate checks and locking function _safeMint(address to, uint256 id, uint256 amount) internal { uint256 maxSupply = getDocUint256Value(id, MAX_SUPPLY_CID); uint256 needed = getDocUint256Value(id, MINT_COUNT_CID) + amount; if (needed > maxSupply) { revert NotEnoughSupply(needed, maxSupply); } _incrementAmount(id, MINT_COUNT_CID, amount); _mint(to, id, amount, ""); } function _confirmBurn(address from, uint256 id, uint256 amount) internal { require(balanceOf(from, id) >= amount, "Not enough balance"); _incrementAmount(id, BURN_COUNT_CID, amount); _burn(from, id, amount); } /** * @notice Additional checks to prevent transfer of soulbound items, locked tokems, etc. */ function _beforeTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual override( ERC1155C ) { super._beforeTokenTransfer(operator, from, to, ids, amounts, data); if (updateHandler != address(0)) { IERC1155UpdateHandler handlerRef = IERC1155UpdateHandler( updateHandler ); handlerRef.update( address(this), from, to, ids, amounts ); } for (uint256 i = 0; i < ids.length; ++i) { uint256 id = ids[i]; if (getDocBoolValue(id, IS_SOULBOUND_CID) && from != address(0) && to != address(0)) { revert("Soulbound token cannot be transferred"); } uint256 amount = amounts[i]; if (from != address(0)) { _decrementAmount(getAccountTokenKey(from, id), BALANCE_CID, amount); } if (to != address(0)) { uint256 accountKey = getAccountTokenKey(to, id); _incrementAmount(accountKey, BALANCE_CID, amount); if (getDocAddressValue(accountKey, PLAYER_CID) == address(0)) { _setDocAddressValue(accountKey, PLAYER_CID, to); _setDocUint256Value(accountKey, ID_CID, id); } } } if (ids.length == 1) { emit TransferSingle(operator, from, to, ids[0], amounts[0]); } else { emit TransferBatch(operator, from, to, ids, amounts); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT LICENSE pragma solidity ^0.8.9; // Pauser Role - Can pause the game bytes32 constant PAUSER_ROLE = keccak256("PAUSER_ROLE"); // Minter Role - Can mint items, NFTs, and ERC20 currency bytes32 constant MINTER_ROLE = keccak256("MINTER_ROLE"); // Manager Role - Can manage the shop, loot tables, and other game data bytes32 constant MANAGER_ROLE = keccak256("MANAGER_ROLE"); // Depoloyer Role - Can Deploy new Systems bytes32 constant DEPLOYER_ROLE = keccak256("DEPLOYER_ROLE"); // Game Logic Contract - Contract that executes game logic and accesses other systems bytes32 constant GAME_LOGIC_CONTRACT_ROLE = keccak256("GAME_LOGIC_CONTRACT_ROLE"); // For functions callable from game server bytes32 constant SERVER_JUDGE_ROLE = keccak256("SERVER_JUDGE_ROLE");
// SPDX-License-Identifier: MIT LICENSE pragma solidity ^0.8.9; uint256 constant NAME_CID = uint256(keccak256("name")); uint256 constant DESCRIPTION_CID = uint256(keccak256("description")); uint256 constant LEVEL_CID = uint256(keccak256("level")); uint256 constant IS_NOOB_CID = uint256(keccak256("is_noob")); uint256 constant NOOB_TOKEN_CID = uint256(keccak256("noob_tokend_id")); uint256 constant GIGA_NAME_TOKENDID_CID = uint256(keccak256("giganame_tokend_id")); uint256 constant IS_GIGA_NAME_CID = uint256(keccak256("is_giga_name")); uint256 constant GAME_ITEM_ID_CID = uint256(keccak256("game_item_id")); uint256 constant UINT256_CID = uint256(keccak256("int256")); uint256 constant ETH_MINT_PRICE_CID = uint256(keccak256("eth_mint_price")); uint256 constant NEXT_DOCID_CID = uint256(keccak256("next_token_id")); uint256 constant ID_CID = uint256(keccak256("id")); uint256 constant BASE_NAME_CID = uint256(keccak256("base_name")); uint256 constant BASE_URI_CID = uint256(keccak256("base_uri")); uint256 constant LAST_TRANSFER_TIME_CID = uint256(keccak256("last_transfer_time")); uint256 constant OWNER_CID = uint256(keccak256("owner")); uint256 constant INITIALIZED_CID = uint256(keccak256("initialized")); uint256 constant MAX_SUPPLY_CID = uint256(keccak256("max_supply")); uint256 constant ADDRESS_CID = uint256(keccak256("address")); uint256 constant IS_SOULBOUND_CID = uint256(keccak256("soulbound")); uint256 constant TIME_BETWEEN_CID = uint256(keccak256("time_between")); uint256 constant TIMESTAMP_CID = uint256(keccak256("timestamp")); uint256 constant IMG_URL_CID = uint256(keccak256("img_url")); uint256 constant PLAYER_CID = uint256(keccak256("player")); uint256 constant MINT_COUNT_CID = uint256(keccak256("mint_count")); uint256 constant CONTRACT_URI_CID = uint256(keccak256("contract_uri")); uint256 constant IS_RECYCLABLE_CID = uint256(keccak256("is_recyclable")); uint256 constant BURN_COUNT_CID = uint256(keccak256("burn_count")); uint256 constant BALANCE_CID = uint256(keccak256("balance")); uint256 constant ICON_URL_CID = uint256(keccak256("icon_url")); uint256 constant DUNGEON_ID_CID = uint256(keccak256("dungeon_id")); uint256 constant ENERGY_CID = uint256(keccak256("energy")); uint256 constant IS_CANCELLED_CID = uint256(keccak256("is_cancelled")); uint256 constant SPRITE_SHEET_URL_CID = uint256(keccak256("sprite_sheet_url")); uint256 constant IMPORT_AMOUNT_CID = uint256(keccak256("import_amount")); uint256 constant EXPORT_AMOUNT_CID = uint256(keccak256("export_amount")); uint256 constant EXPORT_LICENSE_CID = uint256(keccak256("export_license")); uint256 constant UNLOCKED_CID = uint256(keccak256("unlocked"));
// SPDX-License-Identifier: MIT LICENSE pragma solidity ^0.8.9; import {IERC1155} from "@openzeppelin/contracts/token/ERC1155/IERC1155.sol"; uint256 constant ID = uint256(keccak256("game.gigaverse.gameitems")); interface IGameItems is IERC1155 { /** * Mints a ERC1155 token * * @param to Recipient of the token * @param id Id of token to mint * @param amount Quantity of token to mint */ function mint(address to, uint256 id, uint256 amount) external; /** * Burn a token - any payment / game logic should be handled in the game contract. * * @param from Account to burn from * @param id Id of the token to burn * @param amount Quantity to burn */ function burn(address from, uint256 id, uint256 amount) external; /** * @param id Id of the type to get data for * * @return How many of the given token id have been minted */ function minted(uint256 id) external view returns (uint256); function burnBatch(address from, uint256[] memory ids, uint256[] memory amounts) external; }
// SPDX-License-Identifier: MIT LICENSE pragma solidity ^0.8.13; import {ReentrancyGuard} from "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import {PAUSER_ROLE, MANAGER_ROLE} from "../constants/RoleConstants.sol"; import {ISystem} from "./ISystem.sol"; import {IGameRegistry, IERC165} from "./IGameRegistry.sol"; import {IDataStore, ID as DATA_STORE_ID} from "../db/IDataStore.sol"; import {DEPLOYER_ROLE} from "../constants/RoleConstants.sol"; /** @title Contract that lets a child contract access the GameRegistry contract */ abstract contract GameRegistryConsumer is ReentrancyGuard, ISystem { /// @notice Whether or not the contract is paused bool private _paused; /// @notice Reference to the game registry that this contract belongs to IGameRegistry internal _gameRegistry; /// @notice Id for the system/component uint256 private _id; /** EVENTS **/ /// @dev Emitted when the pause is triggered by `account`. event Paused(address account); /// @dev Emitted when the pause is lifted by `account`. event Unpaused(address account); /** ERRORS **/ /// @notice Not authorized to perform action error MissingRole(address account, bytes32 expectedRole); /** MODIFIERS **/ /// @notice Modifier to verify a user has the appropriate role to call a given function modifier onlyRole(bytes32 role) { _checkRole(role, msg.sender); _; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { _requireNotPaused(); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { _requirePaused(); _; } /** ERRORS **/ /// @notice Error if the game registry specified is invalid error InvalidGameRegistry(); /** SETUP **/ /** @return ID for this system */ function getId() public view override returns (uint256) { return _id; } /** * Pause/Unpause the contract * * @param shouldPause Whether or pause or unpause */ function setPaused(bool shouldPause) external onlyRole(PAUSER_ROLE) { if (shouldPause) { _pause(); } else { _unpause(); } } /** * @dev Returns true if the contract OR the GameRegistry is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused || _gameRegistry.paused(); } /** * Sets the GameRegistry contract address for this contract * * @param gameRegistryAddress Address for the GameRegistry contract */ function setGameRegistry( address gameRegistryAddress ) external onlyRole(MANAGER_ROLE) { _gameRegistry = IGameRegistry(gameRegistryAddress); if (gameRegistryAddress == address(0)) { revert InvalidGameRegistry(); } } /** @return GameRegistry contract for this contract */ function getGameRegistry() external view returns (IGameRegistry) { return _gameRegistry; } /** INTERNAL **/ /** * @dev Returns `true` if `account` has been granted `role`. */ function _hasAccessRole( bytes32 role, address account ) internal view returns (bool) { return _gameRegistry.hasAccessRole(role, account); } /** * @dev Revert with a standard message if `account` is missing `role`. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ */ function _checkRole(bytes32 role, address account) internal view virtual { if (!_gameRegistry.hasAccessRole(role, account)) { revert MissingRole(account, role); } } /** @return Returns the dataStore for this contract */ function _dataStore() internal view returns (IDataStore) { return IDataStore(_getSystem(DATA_STORE_ID)); } /** @return Address for a given system */ function _getSystem(uint256 systemId) internal view returns (address) { return _gameRegistry.getSystem(systemId); } /** PAUSABLE **/ /** * @dev Throws if the contract is paused. */ function _requireNotPaused() internal view virtual { require(!paused(), "Pausable: paused"); } /** * @dev Throws if the contract is not paused. */ function _requirePaused() internal view virtual { require(paused(), "Pausable: not paused"); } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual { require(_paused == false, "Pausable: not paused"); _paused = true; emit Paused(msg.sender); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual { require(_paused == true, "Pausable: not paused"); _paused = false; emit Unpaused(msg.sender); } function initialize() external virtual onlyRole(DEPLOYER_ROLE) { } /** * Constructor for this contract * * @param gameRegistryAddress Address of the GameRegistry contract * @param id Id of the system/component */ constructor( address gameRegistryAddress, uint256 id ) { _gameRegistry = IGameRegistry(gameRegistryAddress); if (gameRegistryAddress == address(0)) { revert InvalidGameRegistry(); } _paused = true; _id = id; } }
// SPDX-License-Identifier: MIT LICENSE pragma solidity ^0.8.9; interface IERC1155UpdateHandler { /** @dev Emitted when a transfer is updated * Update hook for GameItems. Performs any trait checks needed before transfer * * @param tokenContract Token contract address * @param from From address * @param to To address * @param ids Ids to transfer * @param values Values to transfer */ function update( address tokenContract, address from, address to, uint256[] memory ids, uint256[] memory values ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT LICENSE pragma solidity ^0.8.9; import {DataStore, ID as DATA_STORE_ID} from "./DataStore.sol"; import {DEPLOYER_ROLE} from "../constants/RoleConstants.sol"; import {NAME_CID, ADDRESS_CID, ID_CID, NEXT_DOCID_CID, OWNER_CID} from "../constants/ColumnConstants.sol"; import {GameRegistryConsumer} from "../core/GameRegistryConsumer.sol"; contract DataTable is GameRegistryConsumer { error AlreadyInitialized(); bool private _initialized; constructor(address gameRegistryAddress, uint256 ID) GameRegistryConsumer(gameRegistryAddress, ID) {} function owner() public view virtual returns (address) { return getTableAddressValue(OWNER_CID); } function name() public view virtual returns (string memory) { return getTableStringValue(NAME_CID); } function initializeTable(string memory nameToSet, uint256 id) internal { if (_initialized) { revert AlreadyInitialized(); } _setTableAddressValue(ADDRESS_CID, address(this)); _setTableAddressValue(OWNER_CID, msg.sender); _setTableStringValue(NAME_CID, nameToSet); _setTableUint256Value(ID_CID, id); _initialized = true; } function getTableId() public virtual view returns (uint256) { return getId(); } function _getAndIncrementAutoIncId() internal returns (uint256) { uint256 currentId = getTableUint256Value(NEXT_DOCID_CID); _setTableUint256Value(NEXT_DOCID_CID, currentId + 1); return currentId + 1; } function _incrementAmount(uint256 docId, uint256 columnId, uint256 amount) internal { uint256 currentAmount = getDocUint256Value(docId, columnId); _setDocUint256Value(docId, columnId, currentAmount + amount); } function _decrementAmount(uint256 docId, uint256 columnId, uint256 amount) internal { uint256 currentAmount = getDocUint256Value(docId, columnId); _setDocUint256Value(docId, columnId, currentAmount - amount); } function _setTableStringValue(uint256 columnId, string memory value) internal { DataStore(_gameRegistry.getSystem(DATA_STORE_ID)).setString(getTableId(), 0, columnId, value); } function _setTableUint256Value(uint256 columnId, uint256 value) internal { DataStore(_gameRegistry.getSystem(DATA_STORE_ID)).setUint256(getTableId(), 0, columnId, value); } function _setTableAddressValue(uint256 columnId, address value) internal { DataStore(_gameRegistry.getSystem(DATA_STORE_ID)).setAddress(getTableId(), 0, columnId, value); } function _setTableBoolValue(uint256 columnId, bool value) internal { DataStore(_gameRegistry.getSystem(DATA_STORE_ID)).setBool(getTableId(), 0, columnId, value); } function _setTableAdddressValue(uint256 columnId, address value) internal { DataStore(_gameRegistry.getSystem(DATA_STORE_ID)).setAddress(getTableId(), 0, columnId, value); } function _setTableUint256ArrayValue(uint256 columnId, uint256[] memory value) internal { DataStore(_gameRegistry.getSystem(DATA_STORE_ID)).setUint256ArrayValue(getTableId(), 0, columnId, value); } function _setTableBoolArrayValue(uint256 columnId, bool[] memory value) internal { DataStore(_gameRegistry.getSystem(DATA_STORE_ID)).setBoolArrayValue(getTableId(), 0, columnId, value); } function _setTableAddressArrayValue(uint256 columnId, address[] memory value) internal { DataStore(_gameRegistry.getSystem(DATA_STORE_ID)).setAddressArrayValue(getTableId(), 0, columnId, value); } function _setDocAddressArrayValue(uint256 docId, uint256 columnId, address[] memory value) internal { DataStore(_gameRegistry.getSystem(DATA_STORE_ID)).setAddressArrayValue(getTableId(), docId, columnId, value); } function _setDocBoolArrayValue(uint256 docId, uint256 columnId, bool[] memory value) internal { DataStore(_gameRegistry.getSystem(DATA_STORE_ID)).setBoolArrayValue(getTableId(), docId, columnId, value); } function _setDocStringValue(uint256 docId, uint256 columnId, string memory value) internal { DataStore(_gameRegistry.getSystem(DATA_STORE_ID)).setString(getTableId(), docId, columnId, value); } function _setDocUint256Value(uint256 docId, uint256 columnId, uint256 value) internal { DataStore(_gameRegistry.getSystem(DATA_STORE_ID)).setUint256(getTableId(), docId, columnId, value); } function _setDocUint256ArrayValue(uint256 docId, uint256 columnId, uint256[] memory value) internal { DataStore(_gameRegistry.getSystem(DATA_STORE_ID)).setUint256ArrayValue(getTableId(), docId, columnId, value); } function _setDocBoolValue(uint256 docId, uint256 columnId, bool value) internal { DataStore(_gameRegistry.getSystem(DATA_STORE_ID)).setBool(getTableId(), docId, columnId, value); } function _setDocAddressValue(uint256 docId, uint256 columnId, address value) internal { DataStore(_gameRegistry.getSystem(DATA_STORE_ID)).setAddress(getTableId(), docId, columnId, value); } function getTableBoolValue(uint256 columnId) public view returns (bool) { return DataStore(_gameRegistry.getSystem(DATA_STORE_ID)).getBool(getTableId(), 0, columnId); } function getTableUint256Value(uint256 columnId) public view returns (uint256) { return DataStore(_gameRegistry.getSystem(DATA_STORE_ID)).getUint256(getTableId(), 0, columnId); } function getTableStringValue(uint256 columnId) public view returns (string memory) { return DataStore(_gameRegistry.getSystem(DATA_STORE_ID)).getString(getTableId(), 0, columnId); } function getTableAddressValue(uint256 columnId) public view returns (address) { return DataStore(_gameRegistry.getSystem(DATA_STORE_ID)).getAddress(getTableId(), 0, columnId); } function getTableUint256ArrayValue(uint256 columnId) public view returns (uint256[] memory) { return DataStore(_gameRegistry.getSystem(DATA_STORE_ID)).getUint256Array(getTableId(), 0, columnId); } function getDocUint256ArrayValue(uint256 docId, uint256 columnId) public view returns (uint256[] memory) { return DataStore(_gameRegistry.getSystem(DATA_STORE_ID)).getUint256Array(getTableId(), docId, columnId); } function getDocStringValue(uint256 docId, uint256 columnId) public view returns (string memory) { return DataStore(_gameRegistry.getSystem(DATA_STORE_ID)).getString(getTableId(), docId, columnId); } function getDocUint256Value(uint256 docId, uint256 columnId) public view returns (uint256) { return DataStore(_gameRegistry.getSystem(DATA_STORE_ID)).getUint256(getTableId(), docId, columnId); } function getDocBoolValue(uint256 docId, uint256 columnId) public view returns (bool) { return DataStore(_gameRegistry.getSystem(DATA_STORE_ID)).getBool(getTableId(), docId, columnId); } function getDocAddressValue(uint256 docId, uint256 columnId) public view returns (address) { return DataStore(_gameRegistry.getSystem(DATA_STORE_ID)).getAddress(getTableId(), docId, columnId); } function hasDocStringValue(uint256 docId, uint256 columnId) public view returns (bool) { return DataStore(_gameRegistry.getSystem(DATA_STORE_ID)).hasStringValue(getTableId(), docId, columnId); } function hasDocValue(uint256 docId, uint256 columnId) public view returns (bool) { return DataStore(_gameRegistry.getSystem(DATA_STORE_ID)).hasValue(getTableId(), docId, columnId); } function getPlayerDocId(address player) public pure returns (uint256) { return uint256(uint160(player)); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "../utils/AutomaticValidatorTransferApproval.sol"; import "../utils/CreatorTokenBase.sol"; import "../token/erc1155/ERC1155OpenZeppelin.sol"; import {TOKEN_TYPE_ERC1155} from "@limitbreak/permit-c/Constants.sol"; /** * @title ERC1155C * @author Limit Break, Inc. * @notice Extends OpenZeppelin's ERC1155 implementation with Creator Token functionality, which * allows the contract owner to update the transfer validation logic by managing a security policy in * an external transfer validation security policy registry. See {CreatorTokenTransferValidator}. */ abstract contract ERC1155C is ERC1155OpenZeppelin, CreatorTokenBase, AutomaticValidatorTransferApproval { /** * @notice Overrides behavior of isApprovedFor all such that if an operator is not explicitly approved * for all, the contract owner can optionally auto-approve the 721-C transfer validator for transfers. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool isApproved) { isApproved = super.isApprovedForAll(owner, operator); if (!isApproved) { if (autoApproveTransfersFromValidator) { isApproved = operator == address(getTransferValidator()); } } } /** * @notice Indicates whether the contract implements the specified interface. * @dev Overrides supportsInterface in ERC165. * @param interfaceId The interface id * @return true if the contract implements the specified interface, false otherwise */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(ICreatorToken).interfaceId || interfaceId == type(ICreatorTokenLegacy).interfaceId || super.supportsInterface(interfaceId); } /** * @notice Returns the function selector for the transfer validator's validation function to be called * @notice for transaction simulation. */ function getTransferValidationFunction() external pure returns (bytes4 functionSignature, bool isViewFunction) { functionSignature = bytes4(keccak256("validateTransfer(address,address,address,uint256,uint256)")); isViewFunction = false; } /// @dev Ties the open-zeppelin _beforeTokenTransfer hook to more granular transfer validation logic function _beforeTokenTransfer( address /*operator*/, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory /*data*/ ) internal virtual override { uint256 idsArrayLength = ids.length; for (uint256 i = 0; i < idsArrayLength;) { _validateBeforeTransfer(from, to, ids[i], amounts[i]); unchecked { ++i; } } } /// @dev Ties the open-zeppelin _afterTokenTransfer hook to more granular transfer validation logic function _afterTokenTransfer( address /*operator*/, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory /*data*/ ) internal virtual override { uint256 idsArrayLength = ids.length; for (uint256 i = 0; i < idsArrayLength;) { _validateAfterTransfer(from, to, ids[i], amounts[i]); unchecked { ++i; } } } function _tokenType() internal pure override returns(uint16) { return uint16(TOKEN_TYPE_ERC1155); } } /** * @title ERC1155CInitializable * @author Limit Break, Inc. * @notice Initializable implementation of ERC1155C to allow for EIP-1167 proxy clones. */ abstract contract ERC1155CInitializable is ERC1155OpenZeppelinInitializable, CreatorTokenBase, AutomaticValidatorTransferApproval { function initializeERC1155(string memory uri_) public override { super.initializeERC1155(uri_); _emitDefaultTransferValidator(); _registerTokenType(getTransferValidator()); } /** * @notice Overrides behavior of isApprovedFor all such that if an operator is not explicitly approved * for all, the contract owner can optionally auto-approve the 721-C transfer validator for transfers. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool isApproved) { isApproved = super.isApprovedForAll(owner, operator); if (!isApproved) { if (autoApproveTransfersFromValidator) { isApproved = operator == address(getTransferValidator()); } } } /** * @notice Indicates whether the contract implements the specified interface. * @dev Overrides supportsInterface in ERC165. * @param interfaceId The interface id * @return true if the contract implements the specified interface, false otherwise */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(ICreatorToken).interfaceId || interfaceId == type(ICreatorTokenLegacy).interfaceId || super.supportsInterface(interfaceId); } /** * @notice Returns the function selector for the transfer validator's validation function to be called * @notice for transaction simulation. */ function getTransferValidationFunction() external pure returns (bytes4 functionSignature, bool isViewFunction) { functionSignature = bytes4(keccak256("validateTransfer(address,address,address,uint256,uint256)")); isViewFunction = false; } /// @dev Ties the open-zeppelin _beforeTokenTransfer hook to more granular transfer validation logic function _beforeTokenTransfer( address /*operator*/, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory /*data*/ ) internal virtual override { uint256 idsArrayLength = ids.length; for (uint256 i = 0; i < idsArrayLength;) { _validateBeforeTransfer(from, to, ids[i], amounts[i]); unchecked { ++i; } } } /// @dev Ties the open-zeppelin _afterTokenTransfer hook to more granular transfer validation logic function _afterTokenTransfer( address /*operator*/, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory /*data*/ ) internal virtual override { uint256 idsArrayLength = ids.length; for (uint256 i = 0; i < idsArrayLength;) { _validateAfterTransfer(from, to, ids[i], amounts[i]); unchecked { ++i; } } } function _tokenType() internal pure override returns(uint16) { return uint16(TOKEN_TYPE_ERC1155); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "./OwnablePermissions.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; abstract contract OwnableBasic is OwnablePermissions, Ownable { function _requireCallerIsContractOwner() internal view virtual override { _checkOwner(); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/token/common/ERC2981.sol"; /** * @title BasicRoyaltiesBase * @author Limit Break, Inc. * @dev Base functionality of an NFT mix-in contract implementing the most basic form of programmable royalties. */ abstract contract BasicRoyaltiesBase is ERC2981 { event DefaultRoyaltySet(address indexed receiver, uint96 feeNumerator); event TokenRoyaltySet(uint256 indexed tokenId, address indexed receiver, uint96 feeNumerator); function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual override { super._setDefaultRoyalty(receiver, feeNumerator); emit DefaultRoyaltySet(receiver, feeNumerator); } function _setTokenRoyalty(uint256 tokenId, address receiver, uint96 feeNumerator) internal virtual override { super._setTokenRoyalty(tokenId, receiver, feeNumerator); emit TokenRoyaltySet(tokenId, receiver, feeNumerator); } } /** * @title BasicRoyalties * @author Limit Break, Inc. * @notice Constructable BasicRoyalties Contract implementation. */ abstract contract BasicRoyalties is BasicRoyaltiesBase { constructor(address receiver, uint96 feeNumerator) { _setDefaultRoyalty(receiver, feeNumerator); } } /** * @title BasicRoyaltiesInitializable * @author Limit Break, Inc. * @notice Initializable BasicRoyalties Contract implementation to allow for EIP-1167 clones. */ abstract contract BasicRoyaltiesInitializable is BasicRoyaltiesBase {}
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/common/ERC2981.sol) pragma solidity ^0.8.0; import "../../interfaces/IERC2981.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information. * * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first. * * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the * fee is specified in basis points by default. * * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported. * * _Available since v4.5._ */ abstract contract ERC2981 is IERC2981, ERC165 { struct RoyaltyInfo { address receiver; uint96 royaltyFraction; } RoyaltyInfo private _defaultRoyaltyInfo; mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC165) returns (bool) { return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId); } /** * @inheritdoc IERC2981 */ function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual override returns (address, uint256) { RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId]; if (royalty.receiver == address(0)) { royalty = _defaultRoyaltyInfo; } uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator(); return (royalty.receiver, royaltyAmount); } /** * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an * override. */ function _feeDenominator() internal pure virtual returns (uint96) { return 10000; } /** * @dev Sets the royalty information that all ids in this contract will default to. * * Requirements: * * - `receiver` cannot be the zero address. * - `feeNumerator` cannot be greater than the fee denominator. */ function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual { require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice"); require(receiver != address(0), "ERC2981: invalid receiver"); _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator); } /** * @dev Removes default royalty information. */ function _deleteDefaultRoyalty() internal virtual { delete _defaultRoyaltyInfo; } /** * @dev Sets the royalty information for a specific token id, overriding the global default. * * Requirements: * * - `receiver` cannot be the zero address. * - `feeNumerator` cannot be greater than the fee denominator. */ function _setTokenRoyalty( uint256 tokenId, address receiver, uint96 feeNumerator ) internal virtual { require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice"); require(receiver != address(0), "ERC2981: Invalid parameters"); _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator); } /** * @dev Resets royalty information for the token id back to the global default. */ function _resetTokenRoyalty(uint256 tokenId) internal virtual { delete _tokenRoyaltyInfo[tokenId]; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.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: address zero is not a valid owner"); 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 token owner or 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: caller is not token owner or 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}. * * 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 _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` * * Emits a {TransferSingle} event. * * 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}. * * Emits a {TransferBatch} event. * * 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 an {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 `ids` and `amounts` 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 (last updated v4.7.0) (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 have been approved to spend ``from``'s tokens via {setApprovalForAll}. * - `from` must have a balance of tokens of type `id` of at least `amount`. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes calldata data ) external; /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}. * * Emits a {TransferBatch} event. * * Requirements: * * - `ids` and `amounts` must have the same length. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function safeBatchTransferFrom( address from, address to, uint256[] calldata ids, uint256[] calldata amounts, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "../../access/OwnablePermissions.sol"; import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol"; abstract contract ERC1155OpenZeppelinBase is ERC1155 { } abstract contract ERC1155OpenZeppelin is ERC1155OpenZeppelinBase { constructor(string memory uri_) ERC1155(uri_) {} } abstract contract ERC1155OpenZeppelinInitializable is OwnablePermissions, ERC1155OpenZeppelinBase { error ERC1155OpenZeppelinInitializable__AlreadyInitializedERC1155(); bool private _erc1155Initialized; function initializeERC1155(string memory uri_) public virtual { _requireCallerIsContractOwner(); if(_erc1155Initialized) { revert ERC1155OpenZeppelinInitializable__AlreadyInitializedERC1155(); } _erc1155Initialized = true; _setURI(uri_); } }
// 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 (last updated v4.8.0) (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { _nonReentrantBefore(); _; _nonReentrantAfter(); } function _nonReentrantBefore() private { // On the first call to nonReentrant, _status will be _NOT_ENTERED require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; } function _nonReentrantAfter() private { // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: MIT LICENSE pragma solidity ^0.8.9; import "@openzeppelin/contracts/utils/introspection/IERC165.sol"; /** * Defines a system the game engine */ interface ISystem { /** @return The ID for the system. Ex: a uint256 casted keccak256 hash */ function getId() external view returns (uint256); function initialize() external; }
// SPDX-License-Identifier: MIT LICENSE pragma solidity ^0.8.9; import "@openzeppelin/contracts/utils/introspection/IERC165.sol"; // @title Interface the game's ACL / Management Layer interface IGameRegistry is IERC165 { /** * @dev Returns `true` if `account` has been granted `role`. * @param role The role to query * @param account The address to query */ function hasAccessRole( bytes32 role, address account ) external view returns (bool); /** * @return Whether or not the registry is paused */ function paused() external view returns (bool); /** * Registers a system by id * * @param systemId Id of the system * @param systemAddress Address of the system contract */ function registerSystem(uint256 systemId, address systemAddress, bool isGameLogicContract) external; /** * @param systemId Id of the system * @return System based on an id */ function getSystem(uint256 systemId) external view returns (address); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; uint256 constant ID = uint256(keccak256("game.gigaverse.datastore")); interface IDataStore { enum ColumnType { NONE, UINT256, INT256, BOOL, ADDRESS, BYTES32, STRING, UINT256_ARRAY } event ValueSet(uint256 indexed tableId, uint256 indexed docId, uint256 indexed colId, bytes32 value); event StringValueSet(uint256 indexed tableId, uint256 indexed docId, uint256 indexed colId, string value); event ArrayValueSet(uint256 indexed tableId, uint256 indexed docId, uint256 indexed colId, bytes32[] value); event ColumnTypeSet(uint256 indexed colId, ColumnType columnType); function setValue(uint256 tableId, uint256 docId, uint256 colId, bytes32 value) external; function getValue(uint256 tableId, uint256 docId, uint256 colId) external view returns (bytes32); function setColumnType(uint256 colId, ColumnType columnType) external; function getColumnType(uint256 colId) external view returns (ColumnType); // Type-specific setters function setUint256(uint256 tableId, uint256 docId, uint256 colId, uint256 value) external; function setInt256(uint256 tableId, uint256 docId, uint256 colId, int256 value) external; function setBool(uint256 tableId, uint256 docId, uint256 colId, bool value) external; function setAddress(uint256 tableId, uint256 docId, uint256 colId, address value) external; function setBytes32(uint256 tableId, uint256 docId, uint256 colId, bytes32 value) external; function setString(uint256 tableId, uint256 docId, uint256 colId, string memory value) external; // Type-specific getters function getUint256(uint256 tableId, uint256 docId, uint256 colId) external view returns (uint256); function getInt256(uint256 tableId, uint256 docId, uint256 colId) external view returns (int256); function getBool(uint256 tableId, uint256 docId, uint256 colId) external view returns (bool); function getAddress(uint256 tableId, uint256 docId, uint256 colId) external view returns (address); function getBytes32(uint256 tableId, uint256 docId, uint256 colId) external view returns (bytes32); function getString(uint256 tableId, uint256 docId, uint256 colId) external view returns (string memory); function deleteValue(uint256 tableId, uint256 docId, uint256 colId) external; function hasValue(uint256 tableId, uint256 docId, uint256 colId) external view returns (bool); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./DataTypes.sol"; import {IDataStore, ID} from "./IDataStore.sol"; import {GameRegistryConsumer} from "../core/GameRegistryConsumer.sol"; import {GAME_LOGIC_CONTRACT_ROLE} from "../constants/RoleConstants.sol"; contract DataStore is IDataStore, GameRegistryConsumer { using DataTypes for *; mapping(uint256 => mapping(uint256 => bytes32)) public datastore; mapping(uint256 => mapping(uint256 => bytes32[])) public arrayStore; mapping(uint256 => mapping(uint256 => string)) private stringStore; mapping(uint256 => bytes32) public columnTypes; constructor(address gameRegistryAddress) GameRegistryConsumer(gameRegistryAddress, ID) {} function generateKey(uint256 docId, uint256 colId) public pure returns (uint256) { return uint256(keccak256(abi.encodePacked(docId, colId))); } function generateArrayKey (uint256 docId, uint256 colId) public pure returns (uint256) { return uint256(keccak256(abi.encodePacked(docId, colId, "__array"))); } function setValue(uint256 tableId, uint256 docId, uint256 colId, bytes32 value) public onlyRole(GAME_LOGIC_CONTRACT_ROLE) { datastore[tableId][uint256(keccak256(abi.encodePacked(docId, colId)))] = value; emit ValueSet(tableId, docId, colId, value); } function setArrayValue(uint256 tableId, uint256 docId, uint256 colId, bytes32[] memory value) public onlyRole(GAME_LOGIC_CONTRACT_ROLE) { arrayStore[tableId][generateArrayKey(docId, colId)] = value; emit ArrayValueSet(tableId, docId, colId, value); } function setUint256ArrayValue(uint256 tableId, uint256 docId, uint256 colId, uint256[] memory value) public onlyRole(GAME_LOGIC_CONTRACT_ROLE) { require (getColumnType(colId) == IDataStore.ColumnType.UINT256, "Column is not UINT256ARRAY"); bytes32[] memory packedValues = new bytes32[](value.length); for (uint256 i = 0; i < value.length; i++) { packedValues[i] = value[i].packUint256(); } setArrayValue(tableId, docId, colId, packedValues); } function setBoolArrayValue(uint256 tableId, uint256 docId, uint256 colId, bool[] memory value) public onlyRole(GAME_LOGIC_CONTRACT_ROLE) { require (getColumnType(colId) == IDataStore.ColumnType.BOOL, "Column is not BOOLARRAY"); bytes32[] memory packedValues = new bytes32[](value.length); for (uint256 i = 0; i < value.length; i++) { packedValues[i] = value[i].packBool(); } setArrayValue(tableId, docId, colId, packedValues); } function setAddressArrayValue(uint256 tableId, uint256 docId, uint256 colId, address[] memory value) public onlyRole(GAME_LOGIC_CONTRACT_ROLE) { require (getColumnType(colId) == IDataStore.ColumnType.ADDRESS, "Column is not ADDRESSARRAY"); bytes32[] memory packedValues = new bytes32[](value.length); for (uint256 i = 0; i < value.length; i++) { packedValues[i] = value[i].packAddress(); } setArrayValue(tableId, docId, colId, packedValues); } function getUint256Array(uint256 tableId, uint256 docId, uint256 colId) public view returns (uint256[] memory) { require (getColumnType(colId) == IDataStore.ColumnType.UINT256, "Column is not UINT256"); bytes32[] memory byteArray = arrayStore[tableId][generateArrayKey(docId, colId)]; uint256[] memory uintArray = new uint256[](byteArray.length); for (uint256 i = 0; i < byteArray.length; i++) { uintArray[i] = byteArray[i].unpackUint256(); } return uintArray; } function getBoolArray(uint256 tableId, uint256 docId, uint256 colId) public view returns (bool[] memory) { require (getColumnType(colId) == IDataStore.ColumnType.BOOL, "Column is not BOOL"); bytes32[] memory byteArray = arrayStore[tableId][generateArrayKey(docId, colId)]; bool[] memory boolArray = new bool[](byteArray.length); for (uint256 i = 0; i < byteArray.length; i++) { boolArray[i] = byteArray[i].unpackBool(); } return boolArray; } function getAddressArray(uint256 tableId, uint256 docId, uint256 colId) public view returns (address[] memory) { require (getColumnType(colId) == IDataStore.ColumnType.ADDRESS, "Column is not ADDRESS"); bytes32[] memory byteArray = arrayStore[tableId][generateArrayKey(docId, colId)]; address[] memory addressArray = new address[](byteArray.length); for (uint256 i = 0; i < byteArray.length; i++) { addressArray[i] = byteArray[i].unpackAddress(); } return addressArray; } function getValue(uint256 tableId, uint256 docId, uint256 colId) public view returns (bytes32) { return datastore[tableId][uint256(keccak256(abi.encodePacked(docId, colId)))]; } function setColumnType(uint256 colId, IDataStore.ColumnType columnType) public onlyRole(GAME_LOGIC_CONTRACT_ROLE) { require(!isColumnTypeSet(colId), "Column type already set"); columnTypes[colId] = bytes32(uint256(columnType)); emit ColumnTypeSet(colId, columnType); } function isColumnTypeSet(uint256 colId) public view returns (bool) { return columnTypes[colId] != bytes32(0); } function getColumnType(uint256 colId) public view returns (IDataStore.ColumnType) { bytes32 typeValue = columnTypes[colId]; require(typeValue != bytes32(0), "Column type not set"); return IDataStore.ColumnType(uint8(uint256(typeValue))); } // Type-specific setters function setUint256(uint256 tableId, uint256 docId, uint256 colId, uint256 value) public onlyRole(GAME_LOGIC_CONTRACT_ROLE){ require(getColumnType(colId) == IDataStore.ColumnType.UINT256, "Column is not UINT256"); setValue(tableId, docId, colId, value.packUint256()); } function setInt256(uint256 tableId, uint256 docId, uint256 colId, int256 value) public onlyRole(GAME_LOGIC_CONTRACT_ROLE){ require(getColumnType(colId) == IDataStore.ColumnType.INT256, "Column is not INT256"); setValue(tableId, docId, colId, value.packInt256()); } function setBool(uint256 tableId, uint256 docId, uint256 colId, bool value) public onlyRole(GAME_LOGIC_CONTRACT_ROLE){ require(getColumnType(colId) == IDataStore.ColumnType.BOOL, "Column is not BOOL"); setValue(tableId, docId, colId, value.packBool()); } function setAddress(uint256 tableId, uint256 docId, uint256 colId, address value) public onlyRole(GAME_LOGIC_CONTRACT_ROLE){ require(getColumnType(colId) == IDataStore.ColumnType.ADDRESS, "Column is not ADDRESS"); setValue(tableId, docId, colId, value.packAddress()); } function setBytes32(uint256 tableId, uint256 docId, uint256 colId, bytes32 value) public onlyRole(GAME_LOGIC_CONTRACT_ROLE){ require(getColumnType(colId) == IDataStore.ColumnType.BYTES32, "Column is not BYTES32"); setValue(tableId, docId, colId, value); } function setString(uint256 tableId, uint256 docId, uint256 colId, string memory value) public onlyRole(GAME_LOGIC_CONTRACT_ROLE){ require(getColumnType(colId) == IDataStore.ColumnType.STRING, "Column is not STRING"); uint256 key = generateKey(docId, colId); stringStore[tableId][key] = value; emit StringValueSet(tableId, docId, colId, value); } function deleteValue(uint256 tableId, uint256 docId, uint256 colId) public onlyRole(GAME_LOGIC_CONTRACT_ROLE){ uint256 key = generateKey(docId, colId); delete datastore[tableId][key]; } // Type-specific getters function getUint256(uint256 tableId, uint256 docId, uint256 colId) public view returns (uint256) { require(getColumnType(colId) == IDataStore.ColumnType.UINT256, "Column is not UINT256"); return getValue(tableId, docId, colId).unpackUint256(); } function getInt256(uint256 tableId, uint256 docId, uint256 colId) public view returns (int256) { require(getColumnType(colId) == IDataStore.ColumnType.INT256, "Column is not INT256"); return getValue(tableId, docId, colId).unpackInt256(); } function getBool(uint256 tableId, uint256 docId, uint256 colId) public view returns (bool) { require(getColumnType(colId) == IDataStore.ColumnType.BOOL, "Column is not BOOL"); return getValue(tableId, docId, colId).unpackBool(); } function getAddress(uint256 tableId, uint256 docId, uint256 colId) public view returns (address) { require(getColumnType(colId) == IDataStore.ColumnType.ADDRESS, "Column is not ADDRESS"); return getValue(tableId, docId, colId).unpackAddress(); } function getBytes32(uint256 tableId, uint256 docId, uint256 colId) public view returns (bytes32) { require(getColumnType(colId) == IDataStore.ColumnType.BYTES32, "Column is not BYTES32"); return getValue(tableId, docId, colId); } function getString(uint256 tableId, uint256 docId, uint256 colId) public view returns (string memory) { require(getColumnType(colId) == IDataStore.ColumnType.STRING, "Column is not STRING"); uint256 key = generateKey(docId, colId); return stringStore[tableId][key]; } function hasValue(uint256 tableId, uint256 docId, uint256 colId) public view returns (bool) { uint256 key = generateKey(docId, colId); return datastore[tableId][key] != bytes32(0); } function hasStringValue(uint256 tableId, uint256 docId, uint256 colId) public view returns (bool) { uint256 key = generateKey(docId, colId); return keccak256(bytes(stringStore[tableId][key])) != keccak256(bytes("")); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "../access/OwnablePermissions.sol"; /** * @title AutomaticValidatorTransferApproval * @author Limit Break, Inc. * @notice Base contract mix-in that provides boilerplate code giving the contract owner the * option to automatically approve a 721-C transfer validator implementation for transfers. */ abstract contract AutomaticValidatorTransferApproval is OwnablePermissions { /// @dev Emitted when the automatic approval flag is modified by the creator. event AutomaticApprovalOfTransferValidatorSet(bool autoApproved); /// @dev If true, the collection's transfer validator is automatically approved to transfer holder's tokens. bool public autoApproveTransfersFromValidator; /** * @notice Sets if the transfer validator is automatically approved as an operator for all token owners. * * @dev Throws when the caller is not the contract owner. * * @param autoApprove If true, the collection's transfer validator will be automatically approved to * transfer holder's tokens. */ function setAutomaticApprovalOfTransfersFromValidator(bool autoApprove) external { _requireCallerIsContractOwner(); autoApproveTransfersFromValidator = autoApprove; emit AutomaticApprovalOfTransferValidatorSet(autoApprove); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "../access/OwnablePermissions.sol"; import "../interfaces/ICreatorToken.sol"; import "../interfaces/ICreatorTokenLegacy.sol"; import "../interfaces/ITransferValidator.sol"; import "./TransferValidation.sol"; import "../interfaces/ITransferValidatorSetTokenType.sol"; /** * @title CreatorTokenBase * @author Limit Break, Inc. * @notice CreatorTokenBaseV3 is an abstract contract that provides basic functionality for managing token * transfer policies through an implementation of ICreatorTokenTransferValidator/ICreatorTokenTransferValidatorV2/ICreatorTokenTransferValidatorV3. * This contract is intended to be used as a base for creator-specific token contracts, enabling customizable transfer * restrictions and security policies. * * <h4>Features:</h4> * <ul>Ownable: This contract can have an owner who can set and update the transfer validator.</ul> * <ul>TransferValidation: Implements the basic token transfer validation interface.</ul> * * <h4>Benefits:</h4> * <ul>Provides a flexible and modular way to implement custom token transfer restrictions and security policies.</ul> * <ul>Allows creators to enforce policies such as account and codehash blacklists, whitelists, and graylists.</ul> * <ul>Can be easily integrated into other token contracts as a base contract.</ul> * * <h4>Intended Usage:</h4> * <ul>Use as a base contract for creator token implementations that require advanced transfer restrictions and * security policies.</ul> * <ul>Set and update the ICreatorTokenTransferValidator implementation contract to enforce desired policies for the * creator token.</ul> * * <h4>Compatibility:</h4> * <ul>Backward and Forward Compatible - V1/V2/V3 Creator Token Base will work with V1/V2/V3 Transfer Validators.</ul> */ abstract contract CreatorTokenBase is OwnablePermissions, TransferValidation, ICreatorToken { /// @dev Thrown when setting a transfer validator address that has no deployed code. error CreatorTokenBase__InvalidTransferValidatorContract(); /// @dev The default transfer validator that will be used if no transfer validator has been set by the creator. address public constant DEFAULT_TRANSFER_VALIDATOR = address(0x721C002B0059009a671D00aD1700c9748146cd1B); /// @dev Used to determine if the default transfer validator is applied. /// @dev Set to true when the creator sets a transfer validator address. bool private isValidatorInitialized; /// @dev Address of the transfer validator to apply to transactions. address private transferValidator; constructor() { _emitDefaultTransferValidator(); _registerTokenType(DEFAULT_TRANSFER_VALIDATOR); } /** * @notice Sets the transfer validator for the token contract. * * @dev Throws when provided validator contract is not the zero address and does not have code. * @dev Throws when the caller is not the contract owner. * * @dev <h4>Postconditions:</h4> * 1. The transferValidator address is updated. * 2. The `TransferValidatorUpdated` event is emitted. * * @param transferValidator_ The address of the transfer validator contract. */ function setTransferValidator(address transferValidator_) public { _requireCallerIsContractOwner(); bool isValidTransferValidator = transferValidator_.code.length > 0; if(transferValidator_ != address(0) && !isValidTransferValidator) { revert CreatorTokenBase__InvalidTransferValidatorContract(); } emit TransferValidatorUpdated(address(getTransferValidator()), transferValidator_); isValidatorInitialized = true; transferValidator = transferValidator_; _registerTokenType(transferValidator_); } /** * @notice Returns the transfer validator contract address for this token contract. */ function getTransferValidator() public view override returns (address validator) { validator = transferValidator; if (validator == address(0)) { if (!isValidatorInitialized) { validator = DEFAULT_TRANSFER_VALIDATOR; } } } /** * @dev Pre-validates a token transfer, reverting if the transfer is not allowed by this token's security policy. * Inheriting contracts are responsible for overriding the _beforeTokenTransfer function, or its equivalent * and calling _validateBeforeTransfer so that checks can be properly applied during token transfers. * * @dev Be aware that if the msg.sender is the transfer validator, the transfer is automatically permitted, as the * transfer validator is expected to pre-validate the transfer. * * @dev Throws when the transfer doesn't comply with the collection's transfer policy, if the transferValidator is * set to a non-zero address. * * @param caller The address of the caller. * @param from The address of the sender. * @param to The address of the receiver. * @param tokenId The token id being transferred. */ function _preValidateTransfer( address caller, address from, address to, uint256 tokenId, uint256 /*value*/) internal virtual override { address validator = getTransferValidator(); if (validator != address(0)) { if (msg.sender == validator) { return; } ITransferValidator(validator).validateTransfer(caller, from, to, tokenId); } } /** * @dev Pre-validates a token transfer, reverting if the transfer is not allowed by this token's security policy. * Inheriting contracts are responsible for overriding the _beforeTokenTransfer function, or its equivalent * and calling _validateBeforeTransfer so that checks can be properly applied during token transfers. * * @dev Be aware that if the msg.sender is the transfer validator, the transfer is automatically permitted, as the * transfer validator is expected to pre-validate the transfer. * * @dev Used for ERC20 and ERC1155 token transfers which have an amount value to validate in the transfer validator. * @dev The `tokenId` for ERC20 tokens should be set to `0`. * * @dev Throws when the transfer doesn't comply with the collection's transfer policy, if the transferValidator is * set to a non-zero address. * * @param caller The address of the caller. * @param from The address of the sender. * @param to The address of the receiver. * @param tokenId The token id being transferred. * @param amount The amount of token being transferred. */ function _preValidateTransfer( address caller, address from, address to, uint256 tokenId, uint256 amount, uint256 /*value*/) internal virtual override { address validator = getTransferValidator(); if (validator != address(0)) { if (msg.sender == validator) { return; } ITransferValidator(validator).validateTransfer(caller, from, to, tokenId, amount); } } function _tokenType() internal virtual pure returns(uint16); function _registerTokenType(address validator) internal { if (validator != address(0)) { uint256 validatorCodeSize; assembly { validatorCodeSize := extcodesize(validator) } if(validatorCodeSize > 0) { try ITransferValidatorSetTokenType(validator).setTokenTypeOfCollection(address(this), _tokenType()) { } catch { } } } } /** * @dev Used during contract deployment for constructable and cloneable creator tokens * @dev to emit the `TransferValidatorUpdated` event signaling the validator for the contract * @dev is the default transfer validator. */ function _emitDefaultTransferValidator() internal { emit TransferValidatorUpdated(address(0), DEFAULT_TRANSFER_VALIDATOR); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; /// @dev Constant bytes32 value of 0x000...000 bytes32 constant ZERO_BYTES32 = bytes32(0); /// @dev Constant value of 0 uint256 constant ZERO = 0; /// @dev Constant value of 1 uint256 constant ONE = 1; /// @dev Constant value representing an open order in storage uint8 constant ORDER_STATE_OPEN = 0; /// @dev Constant value representing a filled order in storage uint8 constant ORDER_STATE_FILLED = 1; /// @dev Constant value representing a cancelled order in storage uint8 constant ORDER_STATE_CANCELLED = 2; /// @dev Constant value representing the ERC721 token type for signatures and transfer hooks uint256 constant TOKEN_TYPE_ERC721 = 721; /// @dev Constant value representing the ERC1155 token type for signatures and transfer hooks uint256 constant TOKEN_TYPE_ERC1155 = 1155; /// @dev Constant value representing the ERC20 token type for signatures and transfer hooks uint256 constant TOKEN_TYPE_ERC20 = 20; /// @dev Constant value to mask the upper bits of a signature that uses a packed `vs` value to extract `s` bytes32 constant UPPER_BIT_MASK = 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff; /// @dev EIP-712 typehash used for validating signature based stored approvals bytes32 constant UPDATE_APPROVAL_TYPEHASH = keccak256("UpdateApprovalBySignature(uint256 tokenType,address token,uint256 id,uint256 amount,uint256 nonce,address operator,uint256 approvalExpiration,uint256 sigDeadline,uint256 masterNonce)"); /// @dev EIP-712 typehash used for validating a single use permit without additional data bytes32 constant SINGLE_USE_PERMIT_TYPEHASH = keccak256("PermitTransferFrom(uint256 tokenType,address token,uint256 id,uint256 amount,uint256 nonce,address operator,uint256 expiration,uint256 masterNonce)"); /// @dev EIP-712 typehash used for validating a single use permit with additional data string constant SINGLE_USE_PERMIT_TRANSFER_ADVANCED_TYPEHASH_STUB = "PermitTransferFromWithAdditionalData(uint256 tokenType,address token,uint256 id,uint256 amount,uint256 nonce,address operator,uint256 expiration,uint256 masterNonce,"; /// @dev EIP-712 typehash used for validating an order permit that updates storage as it fills string constant PERMIT_ORDER_ADVANCED_TYPEHASH_STUB = "PermitOrderWithAdditionalData(uint256 tokenType,address token,uint256 id,uint256 amount,uint256 salt,address operator,uint256 expiration,uint256 masterNonce,"; /// @dev Pausable flag for stored approval transfers of ERC721 assets uint256 constant PAUSABLE_APPROVAL_TRANSFER_FROM_ERC721 = 1 << 0; /// @dev Pausable flag for stored approval transfers of ERC1155 assets uint256 constant PAUSABLE_APPROVAL_TRANSFER_FROM_ERC1155 = 1 << 1; /// @dev Pausable flag for stored approval transfers of ERC20 assets uint256 constant PAUSABLE_APPROVAL_TRANSFER_FROM_ERC20 = 1 << 2; /// @dev Pausable flag for single use permit transfers of ERC721 assets uint256 constant PAUSABLE_PERMITTED_TRANSFER_FROM_ERC721 = 1 << 3; /// @dev Pausable flag for single use permit transfers of ERC1155 assets uint256 constant PAUSABLE_PERMITTED_TRANSFER_FROM_ERC1155 = 1 << 4; /// @dev Pausable flag for single use permit transfers of ERC20 assets uint256 constant PAUSABLE_PERMITTED_TRANSFER_FROM_ERC20 = 1 << 5; /// @dev Pausable flag for order fill transfers of ERC1155 assets uint256 constant PAUSABLE_ORDER_TRANSFER_FROM_ERC1155 = 1 << 6; /// @dev Pausable flag for order fill transfers of ERC20 assets uint256 constant PAUSABLE_ORDER_TRANSFER_FROM_ERC20 = 1 << 7;
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/utils/Context.sol"; abstract contract OwnablePermissions is Context { function _requireCallerIsContractOwner() internal view virtual; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol) pragma solidity ^0.8.0; import "../utils/introspection/IERC165.sol"; /** * @dev Interface for the NFT Royalty Standard. * * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal * support for royalty payments across all NFT marketplaces and ecosystem participants. * * _Available since v4.5._ */ interface IERC2981 is IERC165 { /** * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of * exchange. The royalty amount is denominated and should be paid in that same unit of exchange. */ function royaltyInfo(uint256 tokenId, uint256 salePrice) external view returns (address receiver, uint256 royaltyAmount); }
// 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 (last updated v4.5.0) (token/ERC1155/IERC1155Receiver.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev _Available since v3.1._ */ interface IERC1155Receiver is IERC165 { /** * @dev Handles the receipt of a single ERC1155 token type. This function is * called at the end of a `safeTransferFrom` after the balance has been updated. * * NOTE: To accept the transfer, this must return * `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` * (i.e. 0xf23a6e61, or its own function selector). * * @param operator The address which initiated the transfer (i.e. msg.sender) * @param from The address which previously owned the token * @param id The ID of the token being transferred * @param value The amount of tokens being transferred * @param data Additional data with no specified format * @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed */ function onERC1155Received( address operator, address from, uint256 id, uint256 value, bytes calldata data ) external returns (bytes4); /** * @dev Handles the receipt of a multiple ERC1155 token types. This function * is called at the end of a `safeBatchTransferFrom` after the balances have * been updated. * * NOTE: To accept the transfer(s), this must return * `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` * (i.e. 0xbc197c81, or its own function selector). * * @param operator The address which initiated the batch transfer (i.e. msg.sender) * @param from The address which previously owned the token * @param ids An array containing ids of each token being transferred (order and length must match values array) * @param values An array containing amounts of each token being transferred (order and length must match ids array) * @param data Additional data with no specified format * @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed */ function onERC1155BatchReceived( address operator, address from, uint256[] calldata ids, uint256[] calldata values, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol) pragma solidity ^0.8.0; import "../IERC1155.sol"; /** * @dev Interface of the optional ERC1155MetadataExtension interface, as defined * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP]. * * _Available since v3.1._ */ interface IERC1155MetadataURI is IERC1155 { /** * @dev Returns the URI for token type `id`. * * If the `\{id\}` substring is present in the URI, it must be replaced by * clients with the actual token type ID. */ function uri(uint256 id) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.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 functionCallWithValue(target, data, 0, "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"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, 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) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, 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) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or 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 { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // 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 /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; library DataTypes { // Pack and unpack uint256 function packUint256(uint256 value) internal pure returns (bytes32) { return bytes32(value); } function unpackUint256(bytes32 packed) internal pure returns (uint256) { return uint256(packed); } // Pack and unpack int256 function packInt256(int256 value) internal pure returns (bytes32) { return bytes32(uint256(value)); } function unpackInt256(bytes32 packed) internal pure returns (int256) { return int256(uint256(packed)); } // Pack and unpack address function packAddress(address value) internal pure returns (bytes32) { return bytes32(uint256(uint160(value))); } function unpackAddress(bytes32 packed) internal pure returns (address) { return address(uint160(uint256(packed))); } // Pack and unpack bool function packBool(bool value) internal pure returns (bytes32) { return bytes32(uint256(value ? 1 : 0)); } function unpackBool(bytes32 packed) internal pure returns (bool) { return uint256(packed) == 1; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; interface ICreatorToken { event TransferValidatorUpdated(address oldValidator, address newValidator); function getTransferValidator() external view returns (address validator); function setTransferValidator(address validator) external; function getTransferValidationFunction() external view returns (bytes4 functionSignature, bool isViewFunction); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; interface ICreatorTokenLegacy { event TransferValidatorUpdated(address oldValidator, address newValidator); function getTransferValidator() external view returns (address validator); function setTransferValidator(address validator) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; interface ITransferValidator { function applyCollectionTransferPolicy(address caller, address from, address to) external view; function validateTransfer(address caller, address from, address to) external view; function validateTransfer(address caller, address from, address to, uint256 tokenId) external view; function validateTransfer(address caller, address from, address to, uint256 tokenId, uint256 amount) external; function beforeAuthorizedTransfer(address operator, address token, uint256 tokenId) external; function afterAuthorizedTransfer(address token, uint256 tokenId) external; function beforeAuthorizedTransfer(address operator, address token) external; function afterAuthorizedTransfer(address token) external; function beforeAuthorizedTransfer(address token, uint256 tokenId) external; function beforeAuthorizedTransferWithAmount(address token, uint256 tokenId, uint256 amount) external; function afterAuthorizedTransferWithAmount(address token, uint256 tokenId) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/utils/Context.sol"; /** * @title TransferValidation * @author Limit Break, Inc. * @notice A mix-in that can be combined with ERC-721 contracts to provide more granular hooks. * Openzeppelin's ERC721 contract only provides hooks for before and after transfer. This allows * developers to validate or customize transfers within the context of a mint, a burn, or a transfer. */ abstract contract TransferValidation is Context { /// @dev Thrown when the from and to address are both the zero address. error ShouldNotMintToBurnAddress(); /*************************************************************************/ /* Transfers Without Amounts */ /*************************************************************************/ /// @dev Inheriting contracts should call this function in the _beforeTokenTransfer function to get more granular hooks. function _validateBeforeTransfer(address from, address to, uint256 tokenId) internal virtual { bool fromZeroAddress = from == address(0); bool toZeroAddress = to == address(0); if(fromZeroAddress && toZeroAddress) { revert ShouldNotMintToBurnAddress(); } else if(fromZeroAddress) { _preValidateMint(_msgSender(), to, tokenId, msg.value); } else if(toZeroAddress) { _preValidateBurn(_msgSender(), from, tokenId, msg.value); } else { _preValidateTransfer(_msgSender(), from, to, tokenId, msg.value); } } /// @dev Inheriting contracts should call this function in the _afterTokenTransfer function to get more granular hooks. function _validateAfterTransfer(address from, address to, uint256 tokenId) internal virtual { bool fromZeroAddress = from == address(0); bool toZeroAddress = to == address(0); if(fromZeroAddress && toZeroAddress) { revert ShouldNotMintToBurnAddress(); } else if(fromZeroAddress) { _postValidateMint(_msgSender(), to, tokenId, msg.value); } else if(toZeroAddress) { _postValidateBurn(_msgSender(), from, tokenId, msg.value); } else { _postValidateTransfer(_msgSender(), from, to, tokenId, msg.value); } } /// @dev Optional validation hook that fires before a mint function _preValidateMint(address caller, address to, uint256 tokenId, uint256 value) internal virtual {} /// @dev Optional validation hook that fires after a mint function _postValidateMint(address caller, address to, uint256 tokenId, uint256 value) internal virtual {} /// @dev Optional validation hook that fires before a burn function _preValidateBurn(address caller, address from, uint256 tokenId, uint256 value) internal virtual {} /// @dev Optional validation hook that fires after a burn function _postValidateBurn(address caller, address from, uint256 tokenId, uint256 value) internal virtual {} /// @dev Optional validation hook that fires before a transfer function _preValidateTransfer(address caller, address from, address to, uint256 tokenId, uint256 value) internal virtual {} /// @dev Optional validation hook that fires after a transfer function _postValidateTransfer(address caller, address from, address to, uint256 tokenId, uint256 value) internal virtual {} /*************************************************************************/ /* Transfers With Amounts */ /*************************************************************************/ /// @dev Inheriting contracts should call this function in the _beforeTokenTransfer function to get more granular hooks. function _validateBeforeTransfer(address from, address to, uint256 tokenId, uint256 amount) internal virtual { bool fromZeroAddress = from == address(0); bool toZeroAddress = to == address(0); if(fromZeroAddress && toZeroAddress) { revert ShouldNotMintToBurnAddress(); } else if(fromZeroAddress) { _preValidateMint(_msgSender(), to, tokenId, amount, msg.value); } else if(toZeroAddress) { _preValidateBurn(_msgSender(), from, tokenId, amount, msg.value); } else { _preValidateTransfer(_msgSender(), from, to, tokenId, amount, msg.value); } } /// @dev Inheriting contracts should call this function in the _afterTokenTransfer function to get more granular hooks. function _validateAfterTransfer(address from, address to, uint256 tokenId, uint256 amount) internal virtual { bool fromZeroAddress = from == address(0); bool toZeroAddress = to == address(0); if(fromZeroAddress && toZeroAddress) { revert ShouldNotMintToBurnAddress(); } else if(fromZeroAddress) { _postValidateMint(_msgSender(), to, tokenId, amount, msg.value); } else if(toZeroAddress) { _postValidateBurn(_msgSender(), from, tokenId, amount, msg.value); } else { _postValidateTransfer(_msgSender(), from, to, tokenId, amount, msg.value); } } /// @dev Optional validation hook that fires before a mint function _preValidateMint(address caller, address to, uint256 tokenId, uint256 amount, uint256 value) internal virtual {} /// @dev Optional validation hook that fires after a mint function _postValidateMint(address caller, address to, uint256 tokenId, uint256 amount, uint256 value) internal virtual {} /// @dev Optional validation hook that fires before a burn function _preValidateBurn(address caller, address from, uint256 tokenId, uint256 amount, uint256 value) internal virtual {} /// @dev Optional validation hook that fires after a burn function _postValidateBurn(address caller, address from, uint256 tokenId, uint256 amount, uint256 value) internal virtual {} /// @dev Optional validation hook that fires before a transfer function _preValidateTransfer(address caller, address from, address to, uint256 tokenId, uint256 amount, uint256 value) internal virtual {} /// @dev Optional validation hook that fires after a transfer function _postValidateTransfer(address caller, address from, address to, uint256 tokenId, uint256 amount, uint256 value) internal virtual {} }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; interface ITransferValidatorSetTokenType { function setTokenTypeOfCollection(address collection, uint16 tokenType) external; }
{ "viaIR": false, "codegen": "yul", "remappings": [ "@limitbreak/creator-token-standards/=lib/creator-token-standards/", "@openzeppelin/=lib/openzeppelin-contracts/", "ds-test/=lib/forge-std/lib/ds-test/src/", "forge-std/=lib/forge-std/src/", "murky/=lib/murky/src/", "erc721a/=lib/ERC721A/", "@creator-token-standards/=lib/creator-token-standards/src/", "@limitbreak/permit-c/=lib/creator-token-standards/lib/PermitC/src/", "@opensea/tstorish/=lib/creator-token-standards/lib/tstorish/src/", "@rari-capital/solmate/=lib/creator-token-standards/lib/PermitC/lib/solmate/", "ERC721A/=lib/ERC721A/contracts/", "PermitC/=lib/creator-token-standards/lib/PermitC/", "creator-token-standards/=lib/creator-token-standards/", "erc4626-tests/=lib/murky/lib/openzeppelin-contracts/lib/erc4626-tests/", "forge-gas-metering/=lib/creator-token-standards/lib/PermitC/lib/forge-gas-metering/", "forge-zksync-std/=lib/forge-zksync-std/src/", "openzeppelin-contracts/=lib/openzeppelin-contracts/", "openzeppelin/=lib/creator-token-standards/lib/PermitC/lib/openzeppelin-contracts/contracts/", "solady/=lib/creator-token-standards/lib/PermitC/lib/forge-gas-metering/lib/solady/", "solmate/=lib/creator-token-standards/lib/PermitC/lib/solmate/src/", "tstorish/=lib/creator-token-standards/lib/tstorish/src/" ], "evmVersion": "cancun", "outputSelection": { "*": { "*": [ "abi", "metadata" ], "": [ "ast" ] } }, "optimizer": { "enabled": true, "mode": "3", "fallback_to_optimizing_for_size": false, "disable_system_request_memoization": true }, "metadata": {}, "libraries": {}, "enableEraVMExtensions": false, "forceEVMLA": false }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"gameRegistryAddress","type":"address"},{"internalType":"address","name":"royaltiesAddress","type":"address"},{"internalType":"uint96","name":"feeNumerator","type":"uint96"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AlreadyInitialized","type":"error"},{"inputs":[],"name":"CreatorTokenBase__InvalidTransferValidatorContract","type":"error"},{"inputs":[],"name":"InvalidGameRegistry","type":"error"},{"inputs":[{"internalType":"uint256","name":"needed","type":"uint256"},{"internalType":"uint256","name":"actual","type":"uint256"}],"name":"MaxSupplyTooLow","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bytes32","name":"expectedRole","type":"bytes32"}],"name":"MissingRole","type":"error"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"NonExistentTokenId","type":"error"},{"inputs":[{"internalType":"uint256","name":"needed","type":"uint256"},{"internalType":"uint256","name":"actual","type":"uint256"}],"name":"NotEnoughSupply","type":"error"},{"inputs":[],"name":"ShouldNotMintToBurnAddress","type":"error"},{"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":"bool","name":"autoApproved","type":"bool"}],"name":"AutomaticApprovalOfTransferValidatorSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"uri","type":"string"}],"name":"ContractURIUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"receiver","type":"address"},{"indexed":false,"internalType":"uint96","name":"feeNumerator","type":"uint96"}],"name":"DefaultRoyaltySet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"receiver","type":"address"},{"indexed":false,"internalType":"uint96","name":"feeNumerator","type":"uint96"}],"name":"TokenRoyaltySet","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":"address","name":"oldValidator","type":"address"},{"indexed":false,"internalType":"address","name":"newValidator","type":"address"}],"name":"TransferValidatorUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"DEFAULT_TRANSFER_VALIDATOR","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"autoApproveTransfersFromValidator","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"burnBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"getAccountTokenKey","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"docId","type":"uint256"},{"internalType":"uint256","name":"columnId","type":"uint256"}],"name":"getDocAddressValue","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"docId","type":"uint256"},{"internalType":"uint256","name":"columnId","type":"uint256"}],"name":"getDocBoolValue","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"docId","type":"uint256"},{"internalType":"uint256","name":"columnId","type":"uint256"}],"name":"getDocStringValue","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"docId","type":"uint256"},{"internalType":"uint256","name":"columnId","type":"uint256"}],"name":"getDocUint256ArrayValue","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"docId","type":"uint256"},{"internalType":"uint256","name":"columnId","type":"uint256"}],"name":"getDocUint256Value","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getGameRegistry","outputs":[{"internalType":"contract IGameRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"player","type":"address"}],"name":"getPlayerDocId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"columnId","type":"uint256"}],"name":"getTableAddressValue","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"columnId","type":"uint256"}],"name":"getTableBoolValue","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTableId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"columnId","type":"uint256"}],"name":"getTableStringValue","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"columnId","type":"uint256"}],"name":"getTableUint256ArrayValue","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"columnId","type":"uint256"}],"name":"getTableUint256Value","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTransferValidationFunction","outputs":[{"internalType":"bytes4","name":"functionSignature","type":"bytes4"},{"internalType":"bool","name":"isViewFunction","type":"bool"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"getTransferValidator","outputs":[{"internalType":"address","name":"validator","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"getType","outputs":[{"components":[{"internalType":"uint256","name":"mints","type":"uint256"},{"internalType":"uint256","name":"burns","type":"uint256"},{"internalType":"uint256","name":"maxSupply","type":"uint256"}],"internalType":"struct GameItems.TypeInfo","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"docId","type":"uint256"},{"internalType":"uint256","name":"columnId","type":"uint256"}],"name":"hasDocStringValue","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"docId","type":"uint256"},{"internalType":"uint256","name":"columnId","type":"uint256"}],"name":"hasDocValue","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"isApproved","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"mintBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"mintBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"autoApprove","type":"bool"}],"name":"setAutomaticApprovalOfTransfersFromValidator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseTokenName","type":"string"}],"name":"setBaseTokenName","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"gameRegistryAddress","type":"address"}],"name":"setGameRegistry","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"shouldPause","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"bool","name":"soulBound","type":"bool"}],"name":"setSoulBound","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"string","name":"name","type":"string"}],"name":"setTokenName","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"transferValidator_","type":"address"}],"name":"setTransferValidator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"maxSupply","type":"uint256"}],"name":"setType","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"maxSupply","type":"uint256"},{"internalType":"string","name":"name","type":"string"}],"name":"setTypeAndName","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"handlerAddress","type":"address"}],"name":"setUpdateHandler","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newUri","type":"string"}],"name":"setUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenName","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"updateHandler","outputs":[{"internalType":"address","name":"","type":"address"}],"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
9c4d535b000000000000000000000000000000000000000000000000000000000000000001001325a51bb16a9d71ad0e9782e2ae885a33d0dad3b201c6b4eb62e2ec0d870000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000006000000000000000000000000074eb92b33f2400eb14f6d6725b14f76078d5e731000000000000000000000000f62dceddd3a9aa9239f068a6dcd7a08c95d903d000000000000000000000000000000000000000000000000000000000000001f4
Deployed Bytecode
0x0003000000000002000f000000000002000000000401034f00020000000103550000006003100270000012350030019d0000008001000039000000400010043f00001235033001970000000100200190000000260000c13d000000040030008c000027af0000413d000000000134034f000000000204043b000000e002200270000012570020009c000000590000213d000012810020009c000000780000a13d000012820020009c000000a00000a13d000012830020009c0000011d0000213d000012890020009c0000034d0000213d0000128c0020009c000008370000613d0000128d0020009c000027af0000c13d0000000001000416000000000001004b000027af0000c13d48ce2b6a0000040f000000000001004b0000000001000039000000010100c039000008f40000013d0000000002000416000000000002004b000027af0000c13d0000001f0230003900001236022001970000008002200039000000400020043f0000001f0530018f00001237063001980000008002600039000000360000613d000000000704034f000000007807043c0000000001810436000000000021004b000000320000c13d000000000005004b000000430000613d000000000164034f0000000304500210000000000502043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000120435000000600030008c000027af0000413d000000800100043d000012380010009c000027af0000213d000000a00200043d000b00000002001d000012380020009c000027af0000213d000000c00200043d000a00000002001d000012390020009c000027af0000213d000000400200043d0000123a0020009c000003db0000a13d0000125501000041000000000010043f0000004101000039000000040010043f0000125601000041000048d000010430000012580020009c000000950000a13d000012590020009c000000be0000a13d0000125a0020009c000001390000213d000012600020009c0000035c0000213d000012630020009c000008580000613d000012640020009c000027af0000c13d0000000002000416000000000002004b000027af0000c13d0000000102000039000000000202041a000012b603000041000000800030043f000012b703000041000000840030043f000000000300041400000008022002700000123802200197000000040020008c00000c390000c13d0000000103000031000000200030008c0000002004000039000000000403401900000c5d0000013d000012970020009c000000d90000213d000012a10020009c0000020e0000a13d000012a20020009c000002f00000213d000012a50020009c0000048a0000613d000012a60020009c000027af0000c13d0000000002000416000000000002004b000027af0000c13d0000000102000039000000000202041a000012b603000041000000800030043f000012b703000041000000840030043f000000000300041400000008022002700000123802200197000000040020008c000009b70000c13d0000000103000031000000200030008c00000020040000390000000004034019000009db0000013d0000126e0020009c000001000000213d000012780020009c0000021b0000a13d000012790020009c000002fc0000213d0000127c0020009c0000049f0000613d0000127d0020009c000003d30000613d000027af0000013d0000128e0020009c000001970000a13d0000128f0020009c000002740000213d000012920020009c000003e60000613d000012930020009c000027af0000c13d000000240030008c000027af0000413d0000000001000416000000000001004b000027af0000c13d0000000401400370000000000101043b48ce29500000040f0000000032010434000000400400043d0000000002240436000000000303043300000000003204350000004001100039000000000101043300000040024000390000000000120435000012350040009c00001235040080410000004001400210000012ef011001c7000048cf0001042e000012650020009c000001b80000a13d000012660020009c000002ce0000213d000012690020009c000004050000613d0000126a0020009c000027af0000c13d000000240030008c000027af0000413d0000000001000416000000000001004b000027af0000c13d0000000401400370000000000101043b000b00000001001d000012380010009c000027af0000213d000000000100041148ce2f490000040f0000000b01000039000000000201041a00001248022001970000000b022001af000000000021041b0000000001000019000048cf0001042e000012980020009c0000023c0000a13d000012990020009c0000032a0000213d0000129c0020009c000004b40000613d0000129d0020009c000027af0000c13d000000240030008c000027af0000413d0000000001000416000000000001004b000027af0000c13d0000000401400370000000000201043b000000000002004b0000000001000039000000010100c039000b00000002001d000000000012004b000027af0000c13d0000000101000039000000000201041a000012c001000041000000800010043f000012fb01000041000000840010043f0000000001000411000000a40010043f000000000100041400000008022002700000123802200197000000040020008c000011bd0000c13d0000000103000031000000200030008c00000020040000390000000004034019000011e10000013d0000126f0020009c000002530000a13d000012700020009c000003430000213d000012730020009c000004be0000613d000012740020009c000027af0000c13d000000240030008c000027af0000413d0000000001000416000000000001004b000027af0000c13d0000000101000039000000000201041a000012b601000041000000800010043f000012b701000041000000840010043f000000000100041400000008022002700000123802200197000000040020008c00000a5b0000c13d0000000103000031000000200030008c0000002004000039000000000403401900000a7f0000013d000012840020009c0000036a0000213d000012870020009c000008700000613d000012880020009c000027af0000c13d0000000001000416000000000001004b000027af0000c13d48ce40d00000040f0000000801000039000000000201041a0000124803200197000000000031041b00000000010004140000123805200197000012350010009c0000123501008041000000c00110021000001249011001c70000800d0200003900000003030000390000124a04000041000000000600001948ce48c40000040f0000000100200190000027af0000613d000013d20000013d0000125b0020009c000003be0000213d0000125e0020009c000008e80000613d0000125f0020009c000027af0000c13d000000a40030008c000027af0000413d0000000001000416000000000001004b000027af0000c13d0000000401400370000000000101043b000b00000001001d000012380010009c000027af0000213d0000002401400370000000000101043b000a00000001001d000012380010009c000027af0000213d0000006401400370000000000101043b000800000001001d0000004401400370000000000101043b000900000001001d0000008401400370000000000201043b000012470020009c000027af0000213d0000002301200039000000000031004b000027af0000813d0000000405200039000000000154034f000000000101043b000012470010009c000000530000213d0000001f061000390000130a066001970000003f066000390000130a06600197000012ac0060009c000000530000213d00000024022000390000008006600039000000400060043f000000800010043f0000000002210019000000000032004b000027af0000213d0000002002500039000000000324034f0000130a041001980000001f0510018f000000a002400039000001790000613d000000a006000039000000000703034f000000007807043c0000000006860436000000000026004b000001750000c13d000000000005004b000001860000613d000000000343034f0000000304500210000000000502043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000320435000000a001100039000000000001043500000000020004110000000b0020006b00001b140000c13d0000000a0000006b00001b620000c13d000000400100043d0000006402100039000012f80300004100000000003204350000004402100039000012f903000041000000000032043500000024021000390000002503000039000009360000013d000012940020009c0000057d0000613d000012950020009c000006610000613d000012960020009c000027af0000c13d000000440030008c000027af0000413d0000000001000416000000000001004b000027af0000c13d0000002401400370000000000101043b000a00000001001d0000000401400370000000000101043b000b00000001001d0000000101000039000000000201041a000012b601000041000000800010043f000012b701000041000000840010043f000000000100041400000008022002700000123802200197000000040020008c00000b440000c13d0000000103000031000000200030008c0000002004000039000000000403401900000b680000013d0000126b0020009c000005bd0000613d0000126c0020009c000007bb0000613d0000126d0020009c000027af0000c13d000000440030008c000027af0000413d0000000001000416000000000001004b000027af0000c13d0000002401400370000000000201043b000012470020009c000027af0000213d0000002301200039000000000031004b000027af0000813d0000000405200039000000000154034f000000000101043b000012470010009c000000530000213d0000001f061000390000130a066001970000003f066000390000130a06600197000012ac0060009c000000530000213d00000024022000390000008006600039000000400060043f000000800010043f0000000002210019000000000032004b000027af0000213d0000002002500039000000000324034f0000130a041001980000001f0510018f000000a002400039000001e80000613d000000a006000039000000000703034f000000007807043c0000000006860436000000000026004b000001e40000c13d000000000005004b000001f50000613d000000000343034f0000000304500210000000000502043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000320435000000a00110003900000000000104350000000101000039000000000201041a000000400500043d000012c00100004100000000001504350000000401500039000012c1030000410000000000310435000000000100041100001238031001970000002401500039000a00000003001d0000000000310435000000000100041400000008022002700000123802200197000000040020008c000018070000c13d0000000103000031000000200030008c00000020040000390000000004034019000018330000013d000012a70020009c000005d80000613d000012a80020009c000007d60000613d000012a90020009c000027af0000c13d0000000001000416000000000001004b000027af0000c13d0000124001000041000000800010043f000012b501000041000048cf0001042e0000127e0020009c000005f30000613d0000127f0020009c000007e40000613d000012800020009c000027af0000c13d000000440030008c000027af0000413d0000000001000416000000000001004b000027af0000c13d0000002401400370000000000101043b000a00000001001d0000000401400370000000000101043b000b00000001001d0000000101000039000000000201041a000012b601000041000000800010043f000012b701000041000000840010043f000000000100041400000008022002700000123802200197000000040020008c00000b860000c13d0000000103000031000000200030008c0000002004000039000000000403401900000baa0000013d0000129e0020009c000005fc0000613d0000129f0020009c000007f90000613d000012a00020009c000027af0000c13d0000000001000416000000000001004b000027af0000c13d000000000103001948ce28600000040f000b00000001001d000a00000002001d000900000003001d000000000100041148ce2ec30000040f48ce30550000040f0000000b010000290000000a02000029000000090300002948ce30df0000040f0000000001000019000048cf0001042e000012750020009c000006110000613d000012760020009c0000080e0000613d000012770020009c000027af0000c13d000000440030008c000027af0000413d0000000001000416000000000001004b000027af0000c13d0000002401400370000000000101043b000a00000001001d0000000401400370000000000101043b000b00000001001d0000000101000039000000000201041a000012b601000041000000800010043f000012b701000041000000840010043f000000000100041400000008022002700000123802200197000000040020008c00000bc80000c13d0000000103000031000000200030008c0000002004000039000000000403401900000bec0000013d000012900020009c000004200000613d000012910020009c000027af0000c13d000000640030008c000027af0000413d0000000001000416000000000001004b000027af0000c13d0000002401400370000000000101043b000b00000001001d0000000401400370000000000101043b000a00000001001d0000004401400370000000000201043b000012470020009c000027af0000213d0000002301200039000000000031004b000027af0000813d0000000405200039000000000154034f000000000101043b000012470010009c000000530000213d0000001f061000390000130a066001970000003f066000390000130a06600197000012ac0060009c000000530000213d00000024022000390000008006600039000000400060043f000000800010043f0000000002210019000000000032004b000027af0000213d0000002002500039000000000324034f0000130a041001980000001f0510018f000000a002400039000002a80000613d000000a006000039000000000703034f000000007807043c0000000006860436000000000026004b000002a40000c13d000000000005004b000002b50000613d000000000343034f0000000304500210000000000502043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000320435000000a00110003900000000000104350000000101000039000000000201041a000000400500043d000012c00100004100000000001504350000000401500039000012c1030000410000000000310435000000000100041100001238031001970000002401500039000800000003001d0000000000310435000000000100041400000008022002700000123802200197000000040020008c000017b40000c13d0000000103000031000000200030008c00000020040000390000000004034019000017e00000013d000012670020009c000004790000613d000012680020009c000027af0000c13d000000240030008c000027af0000413d0000000001000416000000000001004b000027af0000c13d0000000401400370000000000101043b000b00000001001d000012380010009c000027af0000213d0000000101000039000000000201041a000012c001000041000000800010043f000012c101000041000000840010043f00000000010004110000123803100197000000a40030043f000000000100041400000008022002700000123802200197000000040020008c000a00000003001d000011800000c13d0000000103000031000000200030008c00000020040000390000000004034019000011a40000013d000012a30020009c000004df0000613d000012a40020009c000027af0000c13d0000000001000416000000000001004b000027af0000c13d000012ff01000041000000800010043f000000a00000043f0000130001000041000048cf0001042e0000127a0020009c000004e60000613d0000127b0020009c000027af0000c13d000000240030008c000027af0000413d0000000001000416000000000001004b000027af0000c13d0000000401400370000000000101043b000012470010009c000027af0000213d0000002302100039000000000032004b000027af0000813d000a00040010003d0000000a02400360000000000202043b000b00000002001d000012470020009c000027af0000213d0000000b01100029000900240010003d000000090030006b000027af0000213d0000000101000039000000000201041a000012c001000041000000800010043f000012c101000041000000840010043f00000000010004110000123801100197000800000001001d000000a40010043f000000000100041400000008022002700000123802200197000000040020008c000016010000c13d0000000103000031000000200030008c00000020040000390000000004034019000016250000013d0000129a0020009c000004ec0000613d0000129b0020009c000027af0000c13d000000240030008c000027af0000413d0000000002000416000000000002004b000027af0000c13d0000000102000039000000000202041a000012b603000041000000800030043f000012b703000041000000840030043f000000000300041400000008022002700000123802200197000000040020008c00000a9e0000c13d0000000103000031000000200030008c0000002004000039000000000403401900000ac20000013d000012710020009c0000055b0000613d000012720020009c000027af0000c13d0000000001000416000000000001004b000027af0000c13d0000000b01000039000000000101041a000003660000013d0000128a0020009c000003d30000613d0000128b0020009c000027af0000c13d0000000001000416000000000001004b000027af0000c13d0000000701000039000000000101041a000012ad001001980000000001000039000000010100c039000000800010043f000012b501000041000048cf0001042e000012610020009c000008fb0000613d000012620020009c000027af0000c13d0000000001000416000000000001004b000027af0000c13d0000000101000039000000000101041a00000008011002700000123801100197000000800010043f000012b501000041000048cf0001042e000012850020009c0000090a0000613d000012860020009c000027af0000c13d000000240030008c000027af0000413d0000000001000416000000000001004b000027af0000c13d0000000401400370000000000201043b000012470020009c000027af0000213d0000002301200039000000000031004b000027af0000813d0000000405200039000000000154034f000000000101043b000012470010009c000000530000213d0000001f061000390000130a066001970000003f066000390000130a06600197000012ac0060009c000000530000213d00000024022000390000008006600039000000400060043f000000800010043f0000000002210019000000000032004b000027af0000213d0000002002500039000000000324034f0000130a041001980000001f0510018f000000a002400039000003980000613d000000a006000039000000000703034f000000007807043c0000000006860436000000000026004b000003940000c13d000000000005004b000003a50000613d000000000343034f0000000304500210000000000502043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000320435000000a00110003900000000000104350000000101000039000000000201041a000000400500043d000012c00100004100000000001504350000000401500039000012c1030000410000000000310435000000000100041100001238031001970000002401500039000a00000003001d0000000000310435000000000100041400000008022002700000123802200197000000040020008c000018590000c13d0000000103000031000000200030008c00000020040000390000000004034019000018850000013d0000125c0020009c0000091f0000613d0000125d0020009c000027af0000c13d0000000001000416000000000001004b000027af0000c13d000000000103001948ce28600000040f000b00000001001d000a00000002001d000900000003001d000000000100041148ce2fcf0000040f48ce30550000040f0000000b010000290000000a02000029000000090300002948ce3aec0000040f0000000001000019000048cf0001042e0000000001000416000000000001004b000027af0000c13d0000000201000039000000000101041a000000800010043f000012b501000041000048cf0001042e0000002003200039000000400030043f00000000000204350000000102000039000000000020041b000000000001004b000009410000c13d000012c401000041000000000010043f000012b001000041000048d000010430000000440030008c000027af0000413d0000000001000416000000000001004b000027af0000c13d0000002401400370000000000101043b000a00000001001d0000000401400370000000000301043b0000000101000039000000000201041a000012c001000041000000800010043f000012c101000041000000840010043f00000000010004110000123801100197000900000001001d000000a40010043f000000000100041400000008022002700000123802200197000000040020008c000b00000003001d00000cdd0000c13d0000000103000031000000200030008c0000002004000039000000000403401900000d010000013d000000440030008c000027af0000413d0000000002000416000000000002004b000027af0000c13d0000002402400370000000000202043b000a00000002001d0000000402400370000000000202043b000b00000002001d0000000102000039000000000202041a000012b603000041000000800030043f000012b703000041000000840030043f000000000300041400000008022002700000123802200197000000040020008c00000d130000c13d0000000103000031000000200030008c0000002004000039000000000403401900000d370000013d000000440030008c000027af0000413d0000000002000416000000000002004b000027af0000c13d0000000402400370000000000202043b000012470020009c000027af0000213d0000002305200039000000000035004b000027af0000813d0000000405200039000000000554034f000000000605043b000012470060009c000000530000213d00000005056002100000003f07500039000012c807700197000012ac0070009c000000530000213d0000008007700039000000400070043f000000800060043f00000024022000390000000005250019000000000035004b000027af0000213d000000000006004b000004480000613d000000a006000039000000000724034f000000000707043b000012380070009c000027af0000213d00000000067604360000002002200039000000000052004b000004400000413d0000002402400370000000000202043b000012470020009c000027af0000213d0000002305200039000000000035004b0000000006000019000012bc06004041000012bc05500197000000000005004b0000000007000019000012bc07002041000012bc0050009c000000000706c019000000000007004b000027af0000613d0000000405200039000000000554034f000000000505043b000012470050009c000000530000213d00000005065002100000003f07600039000012c807700197000000400800043d0000000007780019000800000008001d000000000087004b00000000080000390000000108004039000012470070009c000000530000213d0000000100800190000000530000c13d000000400070043f00000008070000290000000007570436000700000007001d00000024022000390000000006260019000000000036004b000027af0000213d000000000005004b00001de00000c13d000000800200043d000000000002004b000000000200001900001def0000613d00001e130000013d0000000001000416000000000001004b000027af0000c13d000000000103001948ce28d80000040f000b00000001001d000a00000002001d000900000003001d000000000100041148ce2ec30000040f48ce30550000040f0000000b010000290000000a02000029000000090300002948ce39f30000040f0000000001000019000048cf0001042e000000240030008c000027af0000413d0000000001000416000000000001004b000027af0000c13d0000000401400370000000000201043b000012b200200198000027af0000c13d0000000101000039000013010020009c000013100000a13d000013020020009c000013810000213d000013050020009c000004e30000613d000013060020009c000000000100c019000000800010043f000012b501000041000048cf0001042e000000240030008c000027af0000413d0000000001000416000000000001004b000027af0000c13d0000000101000039000000000201041a000012b601000041000000800010043f000012b701000041000000840010043f000000000100041400000008022002700000123802200197000000040020008c00000db80000c13d0000000103000031000000200030008c0000002004000039000000000403401900000ddc0000013d000000240030008c000027af0000413d0000000001000416000000000001004b000027af0000c13d0000000401400370000000000101043b000012380010009c000004e30000a13d000027af0000013d000000440030008c000027af0000413d0000000001000416000000000001004b000027af0000c13d0000000401400370000000000101043b000b00000001001d000012380010009c000027af0000213d0000002401400370000000000201043b000000000002004b0000000001000039000000010100c039000a00000002001d000000000012004b000027af0000c13d00000000020004110000000b0020006c000013a00000c13d0000125001000041000000800010043f0000002001000039000000840010043f0000002901000039000000a40010043f000012cc01000041000000c40010043f000012cd01000041000000e40010043f000012ce01000041000048d0000104300000000001000416000000000001004b000027af0000c13d48ce29460000040f000000800010043f000012b501000041000048cf0001042e0000000001000416000000000001004b000027af0000c13d48ce2d8f0000040f0000123801100197000008f40000013d000000840030008c000027af0000413d0000000001000416000000000001004b000027af0000c13d0000000401400370000000000101043b000b00000001001d000012380010009c000027af0000213d0000002401400370000000000101043b000012470010009c000027af0000213d0000002302100039000000000032004b000027af0000813d0000000402100039000000000224034f000000000502043b000012470050009c000000530000213d00000005025002100000003f06200039000012c806600197000012ac0060009c000000530000213d0000008006600039000000400060043f000000800050043f00000024011000390000000002120019000000000032004b000027af0000213d000000000005004b000005180000613d0000008005000039000000000614034f000000000606043b000000200550003900000000006504350000002001100039000000000021004b000005110000413d0000004401400370000000000101043b000012470010009c000027af0000213d0000002302100039000000000032004b0000000005000019000012bc05008041000012bc02200197000000000002004b0000000006000019000012bc06004041000012bc0020009c000000000605c019000000000006004b000027af0000c13d0000000402100039000000000224034f000000000202043b000012470020009c000000530000213d00000005052002100000003f06500039000012c806600197000000400700043d0000000006670019000a00000007001d000000000076004b00000000070000390000000107004039000012470060009c000000530000213d0000000100700190000000530000c13d000000400060043f0000000a06000029000000000026043500000024011000390000000005150019000000000035004b000027af0000213d000000000002004b0000054b0000613d0000000a02000029000000000614034f000000000606043b000000200220003900000000006204350000002001100039000000000051004b000005440000413d0000006401400370000000000101043b000012470010009c000027af0000213d0000000401100039000000000203001948ce28820000040f000000000100041148ce2ec30000040f48ce30550000040f00000080020000390000000b010000290000000a0300002948ce39f30000040f0000000001000019000048cf0001042e000000240030008c000027af0000413d0000000001000416000000000001004b000027af0000c13d0000000401400370000000000101043b000b00000001001d000012380010009c000027af0000213d48ce40d00000040f000012430100004100000000001004430000000b0100002900000004001004430000000001000414000012350010009c0000123501008041000000c00110021000001244011001c7000080020200003948ce48c90000040f0000000100200190000028200000613d0000000b04000029000000000004004b000013170000613d000000000101043b000000000001004b000013170000c13d000012c901000041000000000010043f000012b001000041000048d000010430000000440030008c000027af0000413d0000000001000416000000000001004b000027af0000c13d0000002401400370000000000101043b000b00000001001d0000000401400370000000000101043b000000000010043f0000000a01000039000000200010043f0000000001000414000012350010009c0000123501008041000000c00110021000001241011001c7000080100200003948ce48c90000040f0000000100200190000027af0000613d000000400300043d0000124b0030009c000000530000213d000000000101043b0000004002300039000000400020043f000000000101041a0000002004300039000000a002100270000000000024043500001238011001980000000000130435000005ac0000c13d000000400300043d0000124b0030009c000000530000213d0000004001300039000000400010043f0000000901000039000000000101041a0000002004300039000000a0021002700000000000240435000012380110019700000000001304350000000b0400002900000000034200a9000000000004004b000005b30000613d00000000044300d9000000000042004b000024580000c13d000027100230011a000000400300043d000000200430003900000000002404350000000000130435000012350030009c00001235030080410000004001300210000012fa011001c7000048cf0001042e000000440030008c000027af0000413d0000000002000416000000000002004b000027af0000c13d0000002402400370000000000502043b0000000402400370000000000402043b0000000102000039000000000202041a000012b603000041000000800030043f000012b703000041000000840030043f000000000300041400000008022002700000123802200197000000040020008c000b00000004001d000a00000005001d00000dfe0000c13d0000000103000031000000200030008c0000002004000039000000000403401900000e220000013d000000440030008c000027af0000413d0000000001000416000000000001004b000027af0000c13d0000002401400370000000000101043b000a00000001001d0000000401400370000000000101043b000b00000001001d0000000101000039000000000201041a000012b601000041000000800010043f000012b701000041000000840010043f000000000100041400000008022002700000123802200197000000040020008c00000ed50000c13d0000000103000031000000200030008c0000002004000039000000000403401900000ef90000013d000000240030008c000027af0000413d0000000001000416000000000001004b000027af0000c13d0000000401400370000000000101043b48ce2cb80000040f000008f40000013d000000240030008c000027af0000413d0000000002000416000000000002004b000027af0000c13d0000000102000039000000000202041a000012b603000041000000800030043f000012b703000041000000840030043f000000000300041400000008022002700000123802200197000000040020008c00000f410000c13d0000000103000031000000200030008c0000002004000039000000000403401900000f650000013d000000240030008c000027af0000413d0000000001000416000000000001004b000027af0000c13d0000000401400370000000000201043b000012470020009c000027af0000213d0000002301200039000000000031004b000027af0000813d0000000405200039000000000154034f000000000101043b000012470010009c000000530000213d0000001f061000390000130a066001970000003f066000390000130a06600197000012ac0060009c000000530000213d00000024022000390000008006600039000000400060043f000000800010043f0000000002210019000000000032004b000027af0000213d0000002002500039000000000324034f0000130a041001980000001f0510018f000000a0024000390000063b0000613d000000a006000039000000000703034f000000007807043c0000000006860436000000000026004b000006370000c13d000000000005004b000006480000613d000000000343034f0000000304500210000000000502043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000320435000000a00110003900000000000104350000000101000039000000000201041a000000400500043d000012c00100004100000000001504350000000401500039000012c1030000410000000000310435000000000100041100001238031001970000002401500039000a00000003001d0000000000310435000000000100041400000008022002700000123802200197000000040020008c000018ab0000c13d0000000103000031000000200030008c00000020040000390000000004034019000018d70000013d000000a40030008c000027af0000413d0000000001000416000000000001004b000027af0000c13d0000000401400370000000000101043b000b00000001001d000012380010009c000027af0000213d0000002401400370000000000101043b000300000001001d000012380010009c000027af0000213d0000004401400370000000000101043b000012470010009c000027af0000213d0000002302100039000000000032004b000027af0000813d0000000402100039000000000224034f000000000502043b000012470050009c000000530000213d00000005025002100000003f06200039000012c806600197000012ac0060009c000000530000213d0000008006600039000000400060043f000000800050043f00000024011000390000000002120019000000000032004b000027af0000213d000000000005004b000006920000613d0000008005000039000000000614034f000000000606043b000000200550003900000000006504350000002001100039000000000021004b0000068b0000413d0000006401400370000000000101043b000012470010009c000027af0000213d0000002302100039000000000032004b0000000005000019000012bc05008041000012bc02200197000000000002004b0000000006000019000012bc06004041000012bc0020009c000000000605c019000000000006004b000027af0000c13d0000000402100039000000000224034f000000000202043b000012470020009c000000530000213d00000005052002100000003f06500039000012c806600197000000400700043d0000000006670019000600000007001d000000000076004b00000000070000390000000107004039000012470060009c000000530000213d0000000100700190000000530000c13d000000400060043f00000006060000290000000006260436000500000006001d00000024011000390000000005150019000000000035004b000027af0000213d000000000002004b000006c60000613d0000000602000029000000000614034f000000000606043b000000200220003900000000006204350000002001100039000000000051004b000006bf0000413d0000008401400370000000000201043b000012470020009c000027af0000213d0000002301200039000000000031004b0000000005000019000012bc05008041000012bc01100197000000000001004b0000000006000019000012bc06004041000012bc0010009c000000000605c019000000000006004b000027af0000c13d0000000405200039000000000154034f000000000101043b000012470010009c000000530000213d0000001f061000390000130a066001970000003f066000390000130a06600197000000400700043d0000000006670019000200000007001d000000000076004b00000000070000390000000107004039000012470060009c000000530000213d0000000100700190000000530000c13d0000002402200039000000400060043f00000002060000290000000006160436000100000006001d0000000002210019000000000032004b000027af0000213d0000002002500039000000000324034f0000130a041001980000001f0510018f0000000102400029000006fd0000613d000000000603034f0000000107000029000000006806043c0000000007870436000000000027004b000006f90000c13d000000000005004b0000070a0000613d000000000343034f0000000304500210000000000502043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000320435000000010110002900000000000104350000000b01000029000912380010019b0000000001000411000000090010006b000022af0000c13d00000006010000290000000001010433000000800200043d000000000012004b000023a30000c13d0000000301000029000412380010019c0000018d0000613d000000800400003900000000010004110000000b020000290000000303000029000000060500002948ce41a70000040f0000000602000029000000800100043d000000000001004b000023ea0000c13d000000400100043d000000400200003900000000022104360000004003100039000000800400043d00000000004304350000006003100039000000000004004b000007340000613d000000000500001900000080070000390000002007700039000000000607043300000000036304360000000105500039000000000045004b0000072e0000413d00000000041300490000000000420435000000060200002900000000040204330000000002430436000000000004004b000007430000613d000000000300001900000006050000290000002005500039000000000605043300000000026204360000000103300039000000000043004b0000073d0000413d0000000002120049000012350020009c00001235020080410000006002200210000012350010009c00001235010080410000004001100210000000000112019f0000000002000414000012350020009c0000123502008041000000c002200210000000000121019f00001249011001c70000800d020000390000000403000039000012f60400004100000000050004110000000906000029000000040700002948ce48c40000040f0000000100200190000027af0000613d000000800100043d000000000001004b000007620000613d000000010110008a00000006020000290000000002020433000000000012004b000024730000a13d00001243010000410000000000100443000000030100002900000004001004430000000001000414000012350010009c0000123501008041000000c00110021000001244011001c7000080020200003948ce48c90000040f0000000100200190000028200000613d000000000101043b000000000001004b000013d20000613d000000400300043d0000004401300039000000a0020000390000000000210435000000240130003900000009020000290000000000210435000012f7010000410000000000130435000000040130003900000000020004110000000000210435000000a401300039000000800200043d0000000000210435000b00000003001d000000c401300039000000000002004b0000078d0000613d000000800300003900000000040000190000002003300039000000000503043300000000015104360000000104400039000000000024004b000007870000413d0000000b030000290000000002310049000000040220008a00000064033000390000000000230435000000060200002900000000020204330000000001210436000000000002004b0000079f0000613d000000000300001900000006050000290000002005500039000000000405043300000000014104360000000103300039000000000023004b000007990000413d0000000b030000290000000002310049000000040220008a000000840330003900000000002304350000000202000029000000000202043300000000012104360000130a042001970000001f0320018f000000010010006b0000260a0000813d000000000004004b000007b70000613d00000001063000290000000005310019000000200550008a000000200660008a0000000007450019000000000846001900000000080804330000000000870435000000200440008c000007b10000c13d000000000003004b000026210000613d0000000005010019000026160000013d000000440030008c000027af0000413d0000000001000416000000000001004b000027af0000c13d0000002401400370000000000101043b000a00000001001d0000000401400370000000000101043b000b00000001001d0000000101000039000000000201041a000012b601000041000000800010043f000012b701000041000000840010043f000000000100041400000008022002700000123802200197000000040020008c00000fe80000c13d0000000103000031000000200030008c000000200400003900000000040340190000100c0000013d000000440030008c000027af0000413d0000000001000416000000000001004b000027af0000c13d0000000401400370000000000101043b000012380010009c000027af0000213d0000002402400370000000000202043b48ce2e9b0000040f48ce2be10000040f000008f40000013d0000000001000416000000000001004b000027af0000c13d0000000101000039000000000201041a000012c001000041000000800010043f000012da01000041000000840010043f0000000001000411000000a40010043f000000000100041400000008022002700000123802200197000000040020008c00000e9a0000c13d0000000103000031000000200030008c0000002004000039000000000403401900000ebe0000013d000000240030008c000027af0000413d0000000001000416000000000001004b000027af0000c13d0000000101000039000000000201041a000012b601000041000000800010043f000012b701000041000000840010043f000000000100041400000008022002700000123802200197000000040020008c000010300000c13d0000000103000031000000200030008c00000020040000390000000004034019000010540000013d000000240030008c000027af0000413d0000000001000416000000000001004b000027af0000c13d0000000401400370000000000201043b000000000002004b0000000001000039000000010100c039000b00000002001d000000000012004b000027af0000c13d48ce40d00000040f0000000701000039000000000201041a000012d0022001970000000b04000029000000000004004b0000000003000019000012d10300c041000000000232019f000000000021041b000000400100043d0000000000410435000012350010009c000012350100804100000040011002100000000002000414000012350020009c0000123502008041000000c002200210000000000112019f0000124c011001c70000800d020000390000000103000039000012d20400004148ce48c40000040f0000000100200190000027af0000613d000013d20000013d000000440030008c000027af0000413d0000000001000416000000000001004b000027af0000c13d0000002401400370000000000201043b000000000002004b0000000001000039000000010100c039000b00000002001d000000000012004b000027af0000c13d0000000101000039000000000201041a000012c001000041000000800010043f000012c101000041000000840010043f00000000010004110000123801100197000a00000001001d000000a40010043f000000000100041400000008022002700000123802200197000000040020008c000012ab0000c13d0000000103000031000000200030008c00000020040000390000000004034019000012cf0000013d000000240030008c000027af0000413d0000000002000416000000000002004b000027af0000c13d0000000402400370000000000202043b000b00000002001d0000000102000039000000000202041a000012b603000041000000800030043f000012b703000041000000840030043f000000000300041400000008022002700000123802200197000000040020008c000010770000c13d0000000103000031000000200030008c000000200400003900000000040340190000109b0000013d000000640030008c000027af0000413d0000000001000416000000000001004b000027af0000c13d0000000401400370000000000101043b000b00000001001d000012380010009c000027af0000213d0000002401400370000000000101043b000012470010009c000027af0000213d0000002302100039000000000032004b000027af0000813d0000000402100039000000000224034f000000000502043b000012470050009c000000530000213d00000005025002100000003f06200039000012c806600197000012ac0060009c000000530000213d0000008006600039000000400060043f000000800050043f00000024011000390000000002120019000000000032004b000027af0000213d000000000005004b0000089c0000613d0000008005000039000000000614034f000000000606043b000000200550003900000000006504350000002001100039000000000021004b000008950000413d0000004401400370000000000101043b000012470010009c000027af0000213d0000002302100039000000000032004b0000000005000019000012bc05008041000012bc02200197000000000002004b0000000006000019000012bc06004041000012bc0020009c000000000605c019000000000006004b000027af0000c13d0000000402100039000000000224034f000000000202043b000012470020009c000000530000213d00000005052002100000003f06500039000012c806600197000000400700043d0000000006670019000900000007001d000000000076004b00000000070000390000000107004039000012470060009c000000530000213d0000000100700190000000530000c13d000000400060043f00000009060000290000000006260436000800000006001d00000024011000390000000005150019000000000035004b000027af0000213d000000000002004b000008d00000613d0000000902000029000000000314034f000000000303043b000000200220003900000000003204350000002001100039000000000051004b000008c90000413d0000000101000039000000000201041a000000400400043d000012c00100004100000000001404350000000401400039000012e203000041000000000031043500000000010004110000123803100197000a00000004001d0000002401400039000600000003001d0000000000310435000000000100041400000008022002700000123802200197000000040020008c00001e1d0000c13d0000000103000031000000200030008c0000002004000039000000000403401900001e460000013d000000440030008c000027af0000413d0000000001000416000000000001004b000027af0000c13d0000000401400370000000000101043b000012380010009c000027af0000213d0000002402400370000000000202043b48ce2e9b0000040f000000400200043d0000000000120435000012350020009c00001235020080410000004001200210000012b4011001c7000048cf0001042e000000440030008c000027af0000413d0000000001000416000000000001004b000027af0000c13d0000000401400370000000000101043b000012380010009c000027af0000213d0000002402400370000000000202043b000012380020009c000027af0000213d48ce2e660000040f000000220000013d000000240030008c000027af0000413d0000000002000416000000000002004b000027af0000c13d0000000102000039000000000202041a000012b603000041000000800030043f000012b703000041000000840030043f000000000300041400000008022002700000123802200197000000040020008c000010d20000c13d0000000103000031000000200030008c00000020040000390000000004034019000010f60000013d000000240030008c000027af0000413d0000000001000416000000000001004b000027af0000c13d0000000401400370000000000101043b000b00000001001d000012380010009c000027af0000213d48ce40d00000040f0000000b06000029000000000006004b000012e60000c13d000000400100043d0000006402100039000012aa0300004100000000003204350000004402100039000012ab03000041000000000032043500000024021000390000002603000039000000000032043500001250020000410000000000210435000000040210003900000020030000390000000000320435000012350010009c0000123501008041000000400110021000001254011001c7000048d000010430000000000302041a0000123b0330019700000008011002100000123c01100197000000000131019f00000001011001bf000000000012041b0000123d010000410000000202000039000000000012041b0000000601000039000000000201041a000000010320019000000001022002700000007f0220618f0000001f0020008c00000000040000390000000104002039000000000043004b0000095b0000613d0000125501000041000000000010043f0000002201000039000000040010043f0000125601000041000048d000010430000000200020008c000009660000413d000000000010043f0000123e030000410000001f0220003900000005022002700000123f0220009a000000000003041b0000000103300039000000000023004b000009620000413d000000000001041b000000400100043d0000002002100039000012400300004100000000003204350000000000010435000012350010009c000012350100804100000040011002100000000002000414000012350020009c0000123502008041000000c002200210000000000112019f00001241011001c70000800d020000390000000103000039000012420400004148ce48c40000040f0000000100200190000027af0000613d00001243010000410000000000100443000012400100004100000004001004430000000001000414000012350010009c0000123501008041000000c00110021000001244011001c7000080020200003948ce48c90000040f0000000100200190000028200000613d000000000101043b000000000001004b000013e00000c13d0000000801000039000000000201041a00001248032001970000000006000411000000000363019f000000000031041b000000400100043d000900000001001d00000000010004140000123805200197000012350010009c0000123501008041000000c00110021000001249011001c70000800d0200003900000003030000390000124a0400004148ce48c40000040f0000000100200190000027af0000613d0000000a010000290000123902100197000027110020008c000017a00000413d000000090300002900000064013000390000125202000041000000000021043500000044013000390000125302000041000000000021043500000024013000390000002a02000039000000000021043500001250010000410000000000130435000000040130003900000020020000390000000000210435000012350030009c0000123503008041000000400130021000001254011001c7000048d000010430000012350030009c0000123503008041000000c001300210000012b8011001c748ce48c90000040f00000060031002700000123503300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000009cb0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000009c70000c13d000000000006004b000009d80000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0000000100200190000011740000613d0000001f02400039000000600420018f00000080024001bf000b00000002001d000000400020043f000000200030008c000027af0000413d000000800200043d000012380020009c000027af0000213d0000000205000039000000000505041a000012b9060000410000000b0a00002900000000006a043500000084064001bf0000000000560435000000c405400039000012be060000410000000000650435000000a40440003900000000000404350000000004000414000000040020008c00000a010000613d0000004001a00210000012350040009c0000123504008041000000c003400210000000000113019f00001251011001c748ce48c90000040f0000006003100270000112350030019d00001235033001970000000100200190000016770000613d0000000b0a0000290000130a053001980000001f0630018f00000000045a001900000a0b0000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000048004b00000a070000c13d000000000006004b00000a180000613d000000000151034f0000000305600210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000001f013000390000130a041001970000000001a40019000000000041004b00000000040000390000000104004039000012470010009c000000530000213d0000000100400190000000530000c13d000000400010043f000012bb0030009c000027af0000213d000000200030008c000027af0000413d0000000b040000290000000004040433000012470040009c000027af0000213d0000000b063000290000000b034000290000001f04300039000000000064004b0000000005000019000012bc05008041000012bc04400197000012bc07600197000000000874013f000000000074004b0000000004000019000012bc04004041000012bc0080009c000000000405c019000000000004004b000027af0000c13d0000000043030434000012470030009c000000530000213d0000001f053000390000130a055001970000003f055000390000130a055001970000000005150019000012470050009c000000530000213d000000400050043f00000000053104360000000007430019000000000067004b000027af0000213d0000130a063001970000001f0230018f000000000054004b00001eaf0000813d000000000006004b00000fe40000613d00000000082400190000000007250019000000200770008a000000200880008a0000000009670019000000000a680019000000000a0a04330000000000a90435000000200660008c00000a540000c13d00000fe40000013d000012350010009c0000123501008041000000c001100210000012b8011001c748ce48c90000040f00000060031002700000123503300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000a6f0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000a6b0000c13d000000000006004b00000a7c0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0000000100200190000011f70000613d0000001f01400039000000600110018f00000080021001bf000b00000002001d000000400020043f000000200030008c000027af0000413d000000800200043d000012380020009c000027af0000213d0000000203000039000000000303041a000012ca040000410000000b05000029000000000045043500000084041001bf0000000000340435000000a403100039000000000003043500000004030000390000000203300367000000000303043b000000c40410003900000000003404350000000003000414000000040020008c000014100000c13d0000000001150019000000400010043f0000000b02000029000010290000013d000012350030009c0000123503008041000000c001300210000012b8011001c748ce48c90000040f00000060031002700000123503300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000ab20000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000aae0000c13d000000000006004b00000abf0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0000000100200190000012030000613d0000001f02400039000000600420018f00000080024001bf000b00000002001d000000400020043f000000200030008c000027af0000413d000000800200043d000012380020009c000027af0000213d0000000205000039000000000505041a000012b9060000410000000b0a00002900000000006a043500000084064001bf0000000000560435000000a405400039000000000005043500000004050000390000000205500367000000000505043b000000c40440003900000000005404350000000004000414000000040020008c00000aea0000613d0000004001a00210000012350040009c0000123504008041000000c003400210000000000113019f00001251011001c748ce48c90000040f0000006003100270000112350030019d00001235033001970000000100200190000016830000613d0000000b0a0000290000130a053001980000001f0630018f00000000045a001900000af40000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000048004b00000af00000c13d000000000006004b00000b010000613d000000000151034f0000000305600210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000001f013000390000130a041001970000000001a40019000000000041004b00000000040000390000000104004039000012470010009c000000530000213d0000000100400190000000530000c13d000000400010043f000012bb0030009c000027af0000213d000000200030008c000027af0000413d0000000b040000290000000004040433000012470040009c000027af0000213d0000000b063000290000000b034000290000001f04300039000000000064004b0000000005000019000012bc05008041000012bc04400197000012bc07600197000000000874013f000000000074004b0000000004000019000012bc04004041000012bc0080009c000000000405c019000000000004004b000027af0000c13d0000000043030434000012470030009c000000530000213d0000001f053000390000130a055001970000003f055000390000130a055001970000000005150019000012470050009c000000530000213d000000400050043f00000000053104360000000007430019000000000067004b000027af0000213d0000130a063001970000001f0230018f000000000054004b00001eb90000813d000000000006004b00000fe40000613d00000000082400190000000007250019000000200770008a000000200880008a0000000009670019000000000a680019000000000a0a04330000000000a90435000000200660008c00000b3d0000c13d00000fe40000013d000012350010009c0000123501008041000000c001100210000012b8011001c748ce48c90000040f00000060031002700000123503300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000b580000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000b540000c13d000000000006004b00000b650000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00000001002001900000120f0000613d0000001f01400039000000600110018f00000080021001bf000900000002001d000000400020043f000000200030008c000027af0000413d000000800200043d000012380020009c000027af0000213d0000000203000039000000000303041a000012d8040000410000000905000029000000000045043500000084041001bf0000000000340435000000c4031000390000000a040000290000000000430435000000a4031000390000000b0400002900000000004304350000000003000414000000040020008c0000143e0000c13d0000000001150019000000400010043f000000090200002900000dfa0000013d000012350010009c0000123501008041000000c001100210000012b8011001c748ce48c90000040f00000060031002700000123503300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000b9a0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000b960000c13d000000000006004b00000ba70000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00000001002001900000121b0000613d0000001f01400039000000600110018f00000080021001bf000900000002001d000000400020043f000000200030008c000027af0000413d000000800200043d000012380020009c000027af0000213d0000000203000039000000000303041a000012d9040000410000000905000029000000000045043500000084041001bf0000000000340435000000c4031000390000000a040000290000000000430435000000a4031000390000000b0400002900000000004304350000000003000414000000040020008c0000146c0000c13d0000000001150019000000400010043f0000000902000029000010720000013d000012350010009c0000123501008041000000c001100210000012b8011001c748ce48c90000040f00000060031002700000123503300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000bdc0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000bd80000c13d000000000006004b00000be90000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0000000100200190000012270000613d0000001f01400039000000600110018f00000080021001bf000900000002001d000000400020043f000000200030008c000027af0000413d000000800200043d000012380020009c000027af0000213d0000000203000039000000000303041a000012cf040000410000000905000029000000000045043500000084041001bf0000000000340435000000c4031000390000000a040000290000000000430435000000a4031000390000000b0400002900000000004304350000000003000414000000040020008c000010260000613d000012350030009c0000123503008041000000c0013002100000004003500210000000000131019f00001251011001c748ce48c90000040f000000090b00002900000060031002700000123503300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900000c1d0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00000c190000c13d000000000006004b00000c2a0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000000010020019000000f3a0000c13d0000001f0530018f0000123706300198000000400200043d0000000004620019000021000000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000c340000c13d000021000000013d000012350030009c0000123503008041000000c001300210000012b8011001c748ce48c90000040f00000060031002700000123503300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000c4d0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000c490000c13d000000000006004b00000c5a0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0000000100200190000012330000613d0000001f02400039000000600420018f00000080024001bf000b00000002001d000000400020043f000000200030008c000027af0000413d000000800200043d000012380020009c000027af0000213d0000000205000039000000000505041a000012b9060000410000000b0a00002900000000006a043500000084064001bf0000000000560435000000c405400039000012ba060000410000000000650435000000a40440003900000000000404350000000004000414000000040020008c00000c830000613d0000004001a00210000012350040009c0000123504008041000000c003400210000000000113019f00001251011001c748ce48c90000040f0000006003100270000112350030019d00001235033001970000000100200190000016b10000613d0000000b0a0000290000130a053001980000001f0630018f00000000045a001900000c8d0000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000048004b00000c890000c13d000000000006004b00000c9a0000613d000000000151034f0000000305600210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000001f013000390000130a041001970000000001a40019000000000041004b00000000040000390000000104004039000012470010009c000000530000213d0000000100400190000000530000c13d000000400010043f000012bb0030009c000027af0000213d000000200030008c000027af0000413d0000000b040000290000000004040433000012470040009c000027af0000213d0000000b063000290000000b034000290000001f04300039000000000064004b0000000005000019000012bc05008041000012bc04400197000012bc07600197000000000874013f000000000074004b0000000004000019000012bc04004041000012bc0080009c000000000405c019000000000004004b000027af0000c13d0000000043030434000012470030009c000000530000213d0000001f053000390000130a055001970000003f055000390000130a055001970000000005150019000012470050009c000000530000213d000000400050043f00000000053104360000000007430019000000000067004b000027af0000213d0000130a063001970000001f0230018f000000000054004b00001ec30000813d000000000006004b00000fe40000613d00000000082400190000000007250019000000200770008a000000200880008a0000000009670019000000000a680019000000000a0a04330000000000a90435000000200660008c00000cd60000c13d00000fe40000013d000012350010009c0000123501008041000000c001100210000012c2011001c748ce48c90000040f00000060031002700000123503300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000cf10000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000ced0000c13d000000000006004b00000cfe0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00000001002001900000123f0000613d0000001f01400039000000600110018f00000080011001bf000000400010043f000000200030008c000027af0000413d000000800100043d000000000001004b0000000002000039000000010200c039000000000021004b000027af0000c13d000000000001004b0000149a0000c13d000012c501000041000000000010043f0000000901000029000012e10000013d000012350030009c0000123503008041000000c001300210000012b8011001c748ce48c90000040f00000060031002700000123503300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000d270000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000d230000c13d000000000006004b00000d340000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00000001002001900000124b0000613d0000001f02400039000000600420018f00000080024001bf000900000002001d000000400020043f000000200030008c000027af0000413d000000800200043d000012380020009c000027af0000213d0000000205000039000000000505041a000012b906000041000000090a00002900000000006a043500000084064001bf0000000000560435000000c4054000390000000a060000290000000000650435000000a4044000390000000b0500002900000000005404350000000004000414000000040020008c00000d5e0000613d0000004001a00210000012350040009c0000123504008041000000c003400210000000000113019f00001251011001c748ce48c90000040f0000006003100270000112350030019d00001235033001970000000100200190000016d50000613d000000090a0000290000130a053001980000001f0630018f00000000045a001900000d680000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000048004b00000d640000c13d000000000006004b00000d750000613d000000000151034f0000000305600210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000001f013000390000130a041001970000000001a40019000000000041004b00000000040000390000000104004039000012470010009c000000530000213d0000000100400190000000530000c13d000000400010043f000012bb0030009c000027af0000213d000000200030008c000027af0000413d00000009040000290000000004040433000012470040009c000027af0000213d000000090630002900000009034000290000001f04300039000000000064004b0000000005000019000012bc05008041000012bc04400197000012bc07600197000000000874013f000000000074004b0000000004000019000012bc04004041000012bc0080009c000000000405c019000000000004004b000027af0000c13d0000000043030434000012470030009c000000530000213d0000001f053000390000130a055001970000003f055000390000130a055001970000000005150019000012470050009c000000530000213d000000400050043f00000000053104360000000007430019000000000067004b000027af0000213d0000130a063001970000001f0230018f000000000054004b00001ecd0000813d000000000006004b00000fe40000613d00000000082400190000000007250019000000200770008a000000200880008a0000000009670019000000000a680019000000000a0a04330000000000a90435000000200660008c00000db10000c13d00000fe40000013d000012350010009c0000123501008041000000c001100210000012b8011001c748ce48c90000040f00000060031002700000123503300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000dcc0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000dc80000c13d000000000006004b00000dd90000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0000000100200190000012570000613d0000001f01400039000000600110018f00000080021001bf000b00000002001d000000400020043f000000200030008c000027af0000413d000000800200043d000012380020009c000027af0000213d0000000203000039000000000303041a000012d8040000410000000b05000029000000000045043500000084041001bf0000000000340435000000a403100039000000000003043500000004030000390000000203300367000000000303043b000000c40410003900000000003404350000000003000414000000040020008c000014a60000c13d0000000001150019000000400010043f0000000b020000290000000002020433000012380020009c000010730000a13d000027af0000013d000012350030009c0000123503008041000000c001300210000012b8011001c748ce48c90000040f00000060031002700000123503300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000e120000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000e0e0000c13d000000000006004b00000e1f0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0000000100200190000012630000613d0000001f02400039000000600420018f00000080024001bf000900000002001d000000400020043f000000200030008c000027af0000413d000000800200043d000012380020009c000027af0000213d0000000205000039000000000505041a000012c706000041000000090a00002900000000006a043500000084064001bf0000000000560435000000c4054000390000000a060000290000000000650435000000a4044000390000000b0500002900000000005404350000000004000414000000040020008c00000e490000613d0000004001a00210000012350040009c0000123504008041000000c003400210000000000113019f00001251011001c748ce48c90000040f0000006003100270000112350030019d00001235033001970000000100200190000016e50000613d000000090a0000290000130a053001980000001f0630018f00000000045a001900000e530000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000048004b00000e4f0000c13d000000000006004b00000e600000613d000000000151034f0000000305600210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000001f013000390000130a021001970000000001a20019000000000021004b00000000020000390000000102004039000012470010009c000000530000213d0000000100200190000000530000c13d000000400010043f000012bb0030009c000027af0000213d000000200030008c000027af0000413d00000009020000290000000002020433000012470020009c000027af0000213d000000090330002900000009022000290000001f04200039000000000034004b0000000005000019000012bc05008041000012bc04400197000012bc06300197000000000764013f000000000064004b0000000004000019000012bc04004041000012bc0070009c000000000405c019000000000004004b000027af0000c13d0000000025020434000012470050009c000000530000213d00000005045002100000003f06400039000012c8066001970000000006160019000012470060009c000000530000213d000000400060043f00000000005104350000000004240019000000000034004b000027af0000213d000000000005004b0000116e0000613d0000000003010019000000200330003900000000250204340000000000530435000000000042004b00000e940000413d0000116e0000013d000012350010009c0000123501008041000000c001100210000012c2011001c748ce48c90000040f00000060031002700000123503300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000eae0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000eaa0000c13d000000000006004b00000ebb0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00000001002001900000126f0000613d0000001f01400039000000600110018f00000080021001bf000b00000002001d000000400020043f000000200030008c000027af0000413d000000800200043d000000000002004b0000000004000039000000010400c039000000000042004b000027af0000c13d000000000002004b000014d40000c13d000012c501000041000000000010043f0000000001000411000000040010043f000012da01000041000000240010043f0000124601000041000048d000010430000012350010009c0000123501008041000000c001100210000012b8011001c748ce48c90000040f00000060031002700000123503300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000ee90000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000ee50000c13d000000000006004b00000ef60000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00000001002001900000127b0000613d0000001f01400039000000600110018f00000080021001bf000900000002001d000000400020043f000000200030008c000027af0000413d000000800200043d000012380020009c000027af0000213d0000000203000039000000000303041a000012ca040000410000000905000029000000000045043500000084041001bf0000000000340435000000c4031000390000000a040000290000000000430435000000a4031000390000000b0400002900000000004304350000000003000414000000040020008c000010260000613d000012350030009c0000123503008041000000c0013002100000004003500210000000000131019f00001251011001c748ce48c90000040f000000090b00002900000060031002700000123503300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900000f2a0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00000f260000c13d000000000006004b00000f370000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0000000100200190000017010000613d0000001f01400039000000600110018f0000000001b10019000000400010043f000000200030008c000010280000813d000027af0000013d000012350030009c0000123503008041000000c001300210000012b8011001c748ce48c90000040f00000060031002700000123503300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000f550000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000f510000c13d000000000006004b00000f620000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0000000100200190000012870000613d0000001f02400039000000600420018f00000080024001bf000b00000002001d000000400020043f000000200030008c000027af0000413d000000800200043d000012380020009c000027af0000213d0000000205000039000000000505041a000012b9060000410000000b0a00002900000000006a043500000084064001bf0000000000560435000000c405400039000012d3060000410000000000650435000000a40440003900000000000404350000000004000414000000040020008c00000f8b0000613d0000004001a00210000012350040009c0000123504008041000000c003400210000000000113019f00001251011001c748ce48c90000040f0000006003100270000112350030019d000012350330019700000001002001900000170d0000613d0000000b0a0000290000130a053001980000001f0630018f00000000045a001900000f950000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000048004b00000f910000c13d000000000006004b00000fa20000613d000000000151034f0000000305600210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000001f013000390000130a041001970000000001a40019000000000041004b00000000040000390000000104004039000012470010009c000000530000213d0000000100400190000000530000c13d000000400010043f000012bb0030009c000027af0000213d000000200030008c000027af0000413d0000000b040000290000000004040433000012470040009c000027af0000213d0000000b063000290000000b034000290000001f04300039000000000064004b0000000005000019000012bc05008041000012bc04400197000012bc07600197000000000874013f000000000074004b0000000004000019000012bc04004041000012bc0080009c000000000405c019000000000004004b000027af0000c13d0000000043030434000012470030009c000000530000213d0000001f053000390000130a055001970000003f055000390000130a055001970000000005150019000012470050009c000000530000213d000000400050043f00000000053104360000000007430019000000000067004b000027af0000213d0000130a063001970000001f0230018f000000000054004b00001ed70000813d000000000006004b00000fe40000613d00000000082400190000000007250019000000200770008a000000200880008a0000000009670019000000000a680019000000000a0a04330000000000a90435000000200660008c00000fde0000c13d000000000002004b00001eed0000613d000000000705001900001ee30000013d000012350010009c0000123501008041000000c001100210000012b8011001c748ce48c90000040f00000060031002700000123503300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000ffc0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000ff80000c13d000000000006004b000010090000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0000000100200190000012930000613d0000001f01400039000000600110018f00000080021001bf000900000002001d000000400020043f000000200030008c000027af0000413d000000800200043d000012380020009c000027af0000213d0000000203000039000000000303041a000012bd040000410000000905000029000000000045043500000084041001bf0000000000340435000000c4031000390000000a040000290000000000430435000000a4031000390000000b0400002900000000004304350000000003000414000000040020008c000015760000c13d0000000001150019000000400010043f00000009020000290000000002020433000000000002004b0000000003000039000000010300c039000000000032004b000010730000613d000027af0000013d000012350010009c0000123501008041000000c001100210000012b8011001c748ce48c90000040f00000060031002700000123503300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000010440000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000010400000c13d000000000006004b000010510000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00000001002001900000129f0000613d0000001f01400039000000600110018f00000080021001bf000b00000002001d000000400020043f000000200030008c000027af0000413d000000800200043d000012380020009c000027af0000213d0000000203000039000000000303041a000012d9040000410000000b05000029000000000045043500000084041001bf0000000000340435000000a403100039000000000003043500000004030000390000000203300367000000000303043b000000c40410003900000000003404350000000003000414000000040020008c000015a40000c13d0000000001150019000000400010043f0000000b02000029000000000202043300000000002104350000004001100210000012b4011001c7000048cf0001042e000012350030009c0000123503008041000000c001300210000012b8011001c748ce48c90000040f00000060031002700000123503300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf0000108b0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000010870000c13d000000000006004b000010980000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0000000100200190000012f80000613d0000001f02400039000000600420018f00000080024001bf000a00000002001d000000400020043f000000200030008c000027af0000413d000000800200043d000012380020009c000027af0000213d0000000205000039000000000505041a000012bd060000410000000a07000029000000000067043500000084064001bf0000000000560435000000c405400039000012be060000410000000000650435000000a4054000390000000b0600002900000000006504350000000005000414000000040020008c000015d20000c13d0000000002470019000900000002001d000000400020043f0000000a020000290000000005020433000000000005004b0000000002000039000000010200c039000000000025004b000027af0000c13d0000000102000039000000000202041a000012b6060000410000000907000029000000000067043500000004067001bf000012b707000041000000000076043500000008022002700000123802200197000000000005004b000018fd0000c13d0000000005000414000000040020008c000019a30000c13d0000000902400029000a00000002001d000000400020043f000019d20000013d000012350030009c0000123503008041000000c001300210000012b8011001c748ce48c90000040f00000060031002700000123503300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000010e60000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000010e20000c13d000000000006004b000010f30000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0000000100200190000013040000613d0000001f02400039000000600420018f00000080024001bf000b00000002001d000000400020043f000000200030008c000027af0000413d000000800200043d000012380020009c000027af0000213d0000000205000039000000000505041a000012c7060000410000000b0a00002900000000006a043500000084064001bf0000000000560435000000a405400039000000000005043500000004050000390000000205500367000000000505043b000000c40440003900000000005404350000000004000414000000040020008c0000111e0000613d0000004001a00210000012350040009c0000123504008041000000c003400210000000000113019f00001251011001c748ce48c90000040f0000006003100270000112350030019d00001235033001970000000100200190000017310000613d0000000b0a0000290000130a053001980000001f0630018f00000000045a0019000011280000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000048004b000011240000c13d000000000006004b000011350000613d000000000151034f0000000305600210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000001f013000390000130a021001970000000001a20019000000000021004b00000000020000390000000102004039000012470010009c000000530000213d0000000100200190000000530000c13d000000400010043f000012bb0030009c000027af0000213d000000200030008c000027af0000413d0000000b020000290000000002020433000012470020009c000027af0000213d0000000b033000290000000b022000290000001f04200039000000000034004b0000000005000019000012bc05008041000012bc04400197000012bc06300197000000000764013f000000000064004b0000000004000019000012bc04004041000012bc0070009c000000000405c019000000000004004b000027af0000c13d0000000025020434000012470050009c000000530000213d00000005045002100000003f06400039000012c8066001970000000006160019000012470060009c000000530000213d000000400060043f00000000005104350000000004240019000000000034004b000027af0000213d000000000005004b0000116e0000613d0000000003010019000000200330003900000000250204340000000000530435000000000042004b000011690000413d000000400300043d000b00000003001d0000002002000039000000000223043648ce28cb0000040f00001ef40000013d0000001f0530018f0000123706300198000000400200043d0000000004620019000021000000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000117b0000c13d000021000000013d000012350010009c0000123501008041000000c001100210000012c2011001c748ce48c90000040f00000060031002700000123503300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000011940000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000011900000c13d000000000006004b000011a10000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0000000100200190000013880000613d0000001f01400039000000600110018f00000080011001bf000000400010043f000000200030008c000027af0000413d000000800100043d000000000001004b0000000002000039000000010200c039000000000021004b000027af0000c13d000000000001004b000012de0000613d0000000b0300002900000008013002100000123c011001970000000104000039000000000204041a000012c302200197000000000112019f000000000014041b000000000003004b000003e20000613d000013d20000013d000012350010009c0000123501008041000000c001100210000012c2011001c748ce48c90000040f00000060031002700000123503300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000011d10000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000011cd0000c13d000000000006004b000011de0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0000000100200190000013940000613d0000001f01400039000000600210018f00000080012001bf000000400010043f000000200030008c000027af0000413d000000800300043d000000000003004b0000000004000039000000010400c039000000000043004b000027af0000c13d000000000003004b0000168f0000c13d000012c501000041000000000010043f0000000001000411000000040010043f000012fb01000041000000240010043f0000124601000041000048d0000104300000001f0530018f0000123706300198000000400200043d0000000004620019000021000000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000011fe0000c13d000021000000013d0000001f0530018f0000123706300198000000400200043d0000000004620019000021000000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000120a0000c13d000021000000013d0000001f0530018f0000123706300198000000400200043d0000000004620019000021000000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000012160000c13d000021000000013d0000001f0530018f0000123706300198000000400200043d0000000004620019000021000000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000012220000c13d000021000000013d0000001f0530018f0000123706300198000000400200043d0000000004620019000021000000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000122e0000c13d000021000000013d0000001f0530018f0000123706300198000000400200043d0000000004620019000021000000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000123a0000c13d000021000000013d0000001f0530018f0000123706300198000000400200043d0000000004620019000021000000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000012460000c13d000021000000013d0000001f0530018f0000123706300198000000400200043d0000000004620019000021000000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000012520000c13d000021000000013d0000001f0530018f0000123706300198000000400200043d0000000004620019000021000000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000125e0000c13d000021000000013d0000001f0530018f0000123706300198000000400200043d0000000004620019000021000000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000126a0000c13d000021000000013d0000001f0530018f0000123706300198000000400200043d0000000004620019000021000000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000012760000c13d000021000000013d0000001f0530018f0000123706300198000000400200043d0000000004620019000021000000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000012820000c13d000021000000013d0000001f0530018f0000123706300198000000400200043d0000000004620019000021000000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000128e0000c13d000021000000013d0000001f0530018f0000123706300198000000400200043d0000000004620019000021000000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000129a0000c13d000021000000013d0000001f0530018f0000123706300198000000400200043d0000000004620019000021000000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000012a60000c13d000021000000013d000012350010009c0000123501008041000000c001100210000012c2011001c748ce48c90000040f00000060031002700000123503300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000012bf0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000012bb0000c13d000000000006004b000012cc0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0000000100200190000013d40000613d0000001f01400039000000600110018f00000080021001bf000900000002001d000000400020043f000000200030008c000027af0000413d000000800200043d000000000002004b0000000004000039000000010400c039000000000042004b000027af0000c13d000000000002004b0000173d0000c13d000012c501000041000000000010043f0000000a01000029000000040010043f000012c101000041000000240010043f0000124601000041000048d0000104300000000801000039000000000201041a0000124803200197000000000363019f000000000031041b00000000010004140000123805200197000012350010009c0000123501008041000000c00110021000001249011001c70000800d0200003900000003030000390000124a0400004148ce48c40000040f0000000100200190000013d20000c13d000027af0000013d0000001f0530018f0000123706300198000000400200043d0000000004620019000021000000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000012ff0000c13d000021000000013d0000001f0530018f0000123706300198000000400200043d0000000004620019000021000000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000130b0000c13d000021000000013d000013070020009c000004e30000613d000013080020009c000004e30000613d000013090020009c000004e30000613d000013850000013d0000000701000039000000000201041a000000080120027000001238011001980000131f0000c13d000000ff0020019000000000010000190000124001006041000000400200043d000000200320003900000000004304350000000000120435000012350020009c000012350200804100000040012002100000000002000414000012350020009c0000123502008041000000c002200210000000000112019f00001241011001c70000800d020000390000000103000039000012420400004148ce48c40000040f0000000100200190000027af0000613d0000000704000039000000000104041a0000123b011001970000000b0300002900000008023002100000123c02200197000000000112019f00000001011001bf000000000014041b000000000003004b000013d20000613d000012430100004100000000001004430000000b0100002900000004001004430000000001000414000012350010009c0000123501008041000000c00110021000001244011001c7000080020200003948ce48c90000040f0000000100200190000028200000613d000000000101043b000000000001004b000013d20000613d000012430100004100000000001004430000000b0100002900000004001004430000000001000414000012350010009c0000123501008041000000c00110021000001244011001c7000080020200003948ce48c90000040f0000000100200190000028200000613d000000000101043b000000000001004b000027af0000613d000000400300043d00000024013000390000048302000039000000000021043500001245010000410000000000130435000a00000003001d00000004013000390000000002000410000000000021043500000000010004140000000b02000029000000040020008c0000137a0000613d0000000a02000029000012350020009c00001235020080410000004002200210000012350010009c0000123501008041000000c001100210000000000121019f00001246011001c70000000b0200002948ce48c40000040f0000006001100270000112350010019d0000000100200190000013d20000613d0000000a01000029000012470010009c000000530000213d0000000a01000029000000400010043f0000000001000019000048cf0001042e000013030020009c000004e30000613d000013040020009c000004e30000613d000000800000043f000012b501000041000048cf0001042e0000001f0530018f0000123706300198000000400200043d0000000004620019000021000000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000138f0000c13d000021000000013d0000001f0530018f0000123706300198000000400200043d0000000004620019000021000000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000139b0000c13d000021000000013d000000000020043f0000000501000039000000200010043f0000000001000414000012350010009c0000123501008041000000c00110021000001241011001c7000080100200003948ce48c90000040f0000000100200190000027af0000613d000000000101043b0000000b02000029000000000020043f000000200010043f0000000001000414000012350010009c0000123501008041000000c00110021000001241011001c7000080100200003948ce48c90000040f0000000100200190000027af0000613d000000000101043b000000000201041a0000130b022001970000000a03000029000000000232019f000000000021041b000000400100043d0000000000310435000012350010009c000012350100804100000040011002100000000002000414000012350020009c0000123502008041000000c002200210000000000112019f0000124c011001c70000800d020000390000000303000039000012cb0400004100000000050004110000000b0600002948ce48c40000040f0000000100200190000027af0000613d0000000001000019000048cf0001042e0000001f0530018f0000123706300198000000400200043d0000000004620019000021000000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000013db0000c13d000021000000013d00001243010000410000000000100443000012400100004100000004001004430000000001000414000012350010009c0000123501008041000000c00110021000001244011001c7000080020200003948ce48c90000040f0000000100200190000028200000613d000000000101043b000000000001004b000027af0000613d000000400300043d00000024013000390000048302000039000000000021043500001245010000410000000000130435000000040130003900000000020004100000000000210435000012350030009c000900000003001d0000123501000041000000000103401900000040011002100000000002000414000012350020009c0000123502008041000000c002200210000000000112019f00001246011001c7000012400200004148ce48c40000040f0000006001100270000112350010019d00000001002001900000098b0000613d0000000901000029000012470010009c000000530000213d0000000901000029000000400010043f0000098b0000013d000012350030009c0000123503008041000000c0013002100000004003500210000000000131019f00001251011001c748ce48c90000040f0000000b0b00002900000060031002700000123503300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000014270000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000014230000c13d000000000006004b000014340000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0000000100200190000016a50000613d0000001f01400039000000600110018f0000000001b10019000000400010043f000000200030008c00000a9c0000813d000027af0000013d000012350030009c0000123503008041000000c0013002100000004003500210000000000131019f00001251011001c748ce48c90000040f000000090b00002900000060031002700000123503300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000014550000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000014510000c13d000000000006004b000014620000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0000000100200190000016bd0000613d0000001f01400039000000600110018f0000000001b10019000000400010043f000000200030008c00000b840000813d000027af0000013d000012350030009c0000123503008041000000c0013002100000004003500210000000000131019f00001251011001c748ce48c90000040f000000090b00002900000060031002700000123503300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000014830000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b0000147f0000c13d000000000006004b000014900000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0000000100200190000016c90000613d0000001f01400039000000600110018f0000000001b10019000000400010043f000000200030008c00000bc60000813d000027af0000013d0000000b0100002948ce29500000040f00000000010104330000000a02000029000000000021004b000016e10000a13d000012e903000041000000000030043f000000040010043f000000240020043f0000124601000041000048d000010430000012350030009c0000123503008041000000c0013002100000004003500210000000000131019f00001251011001c748ce48c90000040f0000000b0b00002900000060031002700000123503300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000014bd0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000014b90000c13d000000000006004b000014ca0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0000000100200190000016f10000613d0000001f01400039000000600110018f0000000001b10019000000400010043f000000200030008c00000df90000813d000027af0000013d000000c002100039000000400020043f00000011020000390000000b040000290000000000240435000000a004100039000012db0200004100000000002404350000000302000039000000000202041a000000ff00200190000016fd0000c13d000a00000004001d0000000102000039000000000202041a000000400b00043d000012b60400004100000000004b04350000000404b00039000012b7050000410000000000540435000000000400041400000008022002700000123802200197000000040020008c0000151b0000613d0000123500b0009c000012350100004100000000010b40190000004001100210000012350040009c0000123504008041000000c003400210000000000113019f00001256011001c700090000000b001d48ce48c90000040f00000060031002700000123503300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000090b0000290000000905700029000015090000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000015050000c13d000000000006004b000015160000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000000010020019000001afc0000613d0000001f01400039000000600110018f0000000002b10019000000000012004b00000000010000390000000101004039000012470020009c000000530000213d0000000100100190000000530000c13d000000400020043f000000200030008c000027af0000413d00000000010b0433000900000001001d000012380010009c000027af0000213d0000000201000039000000000101041a000800000001001d00001243010000410000000000100443000000090100002900000004001004430000000001000414000012350010009c0000123501008041000000c00110021000001244011001c7000080020200003948ce48c90000040f0000000100200190000028200000613d000000000101043b000000000001004b000027af0000613d000000400300043d0000006401300039000000000200041000000000002104350000004401300039000012dd020000410000000000210435000012de0100004100000000001304350000000401300039000600000001001d00000008020000290000000000210435000700000003001d0000002401300039000000000001043500000000010004140000000902000029000000040020008c000015600000613d0000000702000029000012350020009c00001235020080410000004002200210000012350010009c0000123501008041000000c001100210000000000121019f00001254011001c7000000090200002948ce48c40000040f0000006003100270000112350030019d000000010020019000001f0a0000613d0000000701000029000012470010009c000000530000213d0000000703000029000000400030043f0000000101000039000000000201041a000012b6010000410000000000130435000012b70100004100000006030000290000000000130435000000000100041400000008022002700000123802200197000000040020008c00001fdf0000c13d0000000103000031000000200030008c00000020040000390000000004034019000020080000013d000012350030009c0000123503008041000000c0013002100000004003500210000000000131019f00001251011001c748ce48c90000040f000000090b00002900000060031002700000123503300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b00190000158d0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000015890000c13d000000000006004b0000159a0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0000000100200190000017190000613d0000001f01400039000000600110018f0000000001b10019000000400010043f000000200030008c000010280000813d000027af0000013d000012350030009c0000123503008041000000c0013002100000004003500210000000000131019f00001251011001c748ce48c90000040f0000000b0b00002900000060031002700000123503300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000015bb0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000015b70000c13d000000000006004b000015c80000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0000000100200190000017250000613d0000001f01400039000000600110018f0000000001b10019000000400010043f000000200030008c000010710000813d000027af0000013d000012350050009c0000123505008041000000c0015002100000004003700210000000000131019f00001251011001c748ce48c90000040f0000000a0b00002900000060031002700000123503300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000015e90000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000015e50000c13d000000000006004b000015f60000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0000000100200190000017940000613d0000001f02400039000000600420018f0000000002b40019000900000002001d000000400020043f000000200030008c000010b80000813d000027af0000013d000012350010009c0000123501008041000000c001100210000012c2011001c748ce48c90000040f00000060031002700000123503300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000016150000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000016110000c13d000000000006004b000016220000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0000000100200190000017fb0000613d0000001f01400039000000600110018f00000080021001bf000700000002001d000000400020043f000000200030008c000027af0000413d000000800200043d000000000002004b0000000004000039000000010400c039000000000042004b000027af0000c13d000000000002004b000017f70000613d0000000b020000290000001f022000390000130a02200197000800000002001d0000003f022000390000130a022001970000000702200029000012470020009c000000530000213d000000400020043f0000000b02000029000000070500002900000000002504350000000902000029000000000020007c000027af0000213d0000000b020000290000130a042001980006001f00200193000000a001100039000500000004001d000900000001001d00000000014100190000000a020000290000002002200039000400000002001d0000000202200367000016560000613d000000000402034f0000000905000029000000004604043c0000000005650436000000000015004b000016520000c13d000000060000006b000016640000613d000000050220036000000006040000290000000304400210000000000501043300000000054501cf000000000545022f000000000202043b0000010004400089000000000242022f00000000024201cf000000000252019f000000000021043500000009020000290000000b0120002900000000000104350000000101000039000000000201041a000000400400043d000012b6010000410000000000140435000a00000004001d0000000401400039000012b7040000410000000000410435000000000100041400000008022002700000123802200197000000040020008c00001bd00000c13d000000200400003900001bf90000013d0000001f0530018f0000123706300198000000400200043d0000000004620019000021000000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000167e0000c13d000021000000013d0000001f0530018f0000123706300198000000400200043d0000000004620019000021000000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000168a0000c13d000021000000013d0000000103000039000000000303041a000000ff0430018f0000000b0000006b000019040000c13d000000000004004b000019160000613d0000130b023001970000000103000039000000000023041b0000000002000411000000000021043500000040011002100000000002000414000012350020009c0000123502008041000000c002200210000000000112019f0000124c011001c70000800d02000039000012fd04000041000008330000013d0000001f0530018f0000123706300198000000400200043d0000000004620019000021000000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000016ac0000c13d000021000000013d0000001f0530018f0000123706300198000000400200043d0000000004620019000021000000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000016b80000c13d000021000000013d0000001f0530018f0000123706300198000000400200043d0000000004620019000021000000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000016c40000c13d000021000000013d0000001f0530018f0000123706300198000000400200043d0000000004620019000021000000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000016d00000c13d000021000000013d0000001f0530018f0000123706300198000000400200043d0000000004620019000021000000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000016dc0000c13d000021000000013d0000000b0100002948ce3a2d0000040f0000000001000019000048cf0001042e0000001f0530018f0000123706300198000000400200043d0000000004620019000021000000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000016ec0000c13d000021000000013d0000001f0530018f0000123706300198000000400200043d0000000004620019000021000000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000016f80000c13d000021000000013d000012dc01000041000000000010043f000012b001000041000048d0000104300000001f0530018f0000123706300198000000400200043d0000000004620019000021000000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000017080000c13d000021000000013d0000001f0530018f0000123706300198000000400200043d0000000004620019000021000000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000017140000c13d000021000000013d0000001f0530018f0000123706300198000000400200043d0000000004620019000021000000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000017200000c13d000021000000013d0000001f0530018f0000123706300198000000400200043d0000000004620019000021000000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000172c0000c13d000021000000013d0000001f0530018f0000123706300198000000400200043d0000000004620019000021000000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000017380000c13d000021000000013d0000000102000039000000000202041a000012b6040000410000000905000029000000000045043500000084011001bf000012b7040000410000000000410435000000000100041400000008022002700000123802200197000000040020008c000019240000c13d000000200030008c00000020030080390000001f01300039000000600110018f0000000001510019000000400010043f00000009010000290000000001010433000a00000001001d000012380010009c000027af0000213d0000000201000039000000000101041a000900000001001d000012430100004100000000001004430000000a0100002900000004001004430000000001000414000012350010009c0000123501008041000000c00110021000001244011001c7000080020200003948ce48c90000040f0000000100200190000028200000613d000000000101043b000000000001004b000027af0000613d000000400400043d000012e701000041000000000014043500000004014000390000000902000029000000000021043500000004010000390000000201100367000000000101043b00000064024000390000000b0300002900000000003204350000004402400039000012e8030000410000000000320435000b00000004001d0000002402400039000000000012043500000000010004140000000a02000029000000040020008c0000178d0000613d0000000b02000029000012350020009c00001235020080410000004002200210000012350010009c0000123501008041000000c001100210000000000121019f00001254011001c70000000a0200002948ce48c40000040f0000006003100270000112350030019d000000010020019000001e660000613d0000000b01000029000012470010009c000000530000213d0000000b01000029000000400010043f0000000001000019000048cf0001042e0000001f0530018f0000123706300198000000400200043d0000000004620019000021000000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000179b0000c13d000021000000013d000000400100043d0000000b030000290000123805300198000019510000c13d00000044021000390000124f03000041000000000032043500000024021000390000001903000039000000000032043500001250020000410000000000210435000000040210003900000020030000390000000000320435000012350010009c0000123501008041000000400110021000001251011001c7000048d000010430000012350050009c000012350300004100000000030540190000004003300210000012350010009c0000123501008041000000c001100210000000000131019f00001246011001c7000900000005001d48ce48c90000040f00000060031002700000123503300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000090b0000290000000905700029000017cf0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000017cb0000c13d000000000006004b000017dc0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0000000100200190000019730000613d00000000050b00190000001f01400039000000600110018f0000000002510019000000000012004b00000000010000390000000101004039000900000002001d000012470020009c000000530000213d0000000100100190000000530000c13d0000000901000029000000400010043f000000200030008c000027af0000413d0000000001050433000000000001004b0000000002000039000000010200c039000000000021004b000027af0000c13d000000000001004b00001ba60000c13d000012c501000041000000000010043f0000000801000029000012e10000013d0000001f0530018f0000123706300198000000400200043d0000000004620019000021000000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000018020000c13d000021000000013d000012350050009c000012350300004100000000030540190000004003300210000012350010009c0000123501008041000000c001100210000000000131019f00001246011001c7000b00000005001d48ce48c90000040f00000060031002700000123503300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000b0b0000290000000b05700029000018220000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b0000181e0000c13d000000000006004b0000182f0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00000001002001900000197f0000613d00000000050b00190000001f01400039000000600110018f0000000002510019000000000012004b00000000010000390000000101004039000b00000002001d000012470020009c000000530000213d0000000100100190000000530000c13d0000000b01000029000000400010043f000000200030008c000027af0000413d0000000001050433000000000001004b0000000002000039000000010200c039000000000021004b000027af0000c13d000000000001004b000012de0000613d0000000101000039000000000201041a000012b6010000410000000b0400002900000000001404350000000401400039000012b7040000410000000000410435000000000100041400000008022002700000123802200197000000040020008c00001c470000c13d000000200400003900001c700000013d000012350050009c000012350300004100000000030540190000004003300210000012350010009c0000123501008041000000c001100210000000000131019f00001246011001c7000b00000005001d48ce48c90000040f00000060031002700000123503300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000b0b0000290000000b05700029000018740000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000018700000c13d000000000006004b000018810000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00000001002001900000198b0000613d00000000050b00190000001f01400039000000600110018f0000000002510019000000000012004b00000000010000390000000101004039000b00000002001d000012470020009c000000530000213d0000000100100190000000530000c13d0000000b01000029000000400010043f000000200030008c000027af0000413d0000000001050433000000000001004b0000000002000039000000010200c039000000000021004b000027af0000c13d000000000001004b000012de0000613d0000000101000039000000000201041a000012b6010000410000000b0400002900000000001404350000000401400039000012b7040000410000000000410435000000000100041400000008022002700000123802200197000000040020008c00001cba0000c13d000000200400003900001ce30000013d000012350050009c000012350300004100000000030540190000004003300210000012350010009c0000123501008041000000c001100210000000000131019f00001246011001c7000b00000005001d48ce48c90000040f00000060031002700000123503300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000b0b0000290000000b05700029000018c60000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000018c20000c13d000000000006004b000018d30000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0000000100200190000019970000613d00000000050b00190000001f01400039000000600110018f0000000002510019000000000012004b00000000010000390000000101004039000b00000002001d000012470020009c000000530000213d0000000100100190000000530000c13d0000000b01000029000000400010043f000000200030008c000027af0000413d0000000001050433000000000001004b0000000002000039000000010200c039000000000021004b000027af0000c13d000000000001004b000012de0000613d0000000101000039000000000201041a000012b6010000410000000b0400002900000000001404350000000401400039000012b7040000410000000000410435000000000100041400000008022002700000123802200197000000040020008c00001d2a0000c13d000000200400003900001d530000013d0000000005000414000000040020008c00001a4f0000c13d0000000902400029000a00000002001d000000400020043f00001a7e0000013d000000000004004b000019160000c13d0000130b0230019700000001022001bf0000000103000039000000000023041b0000000002000411000000000021043500000040011002100000000002000414000012350020009c0000123502008041000000c002200210000000000112019f0000124c011001c70000800d02000039000012fc04000041000008330000013d0000125003000041000000000031043500000084032001bf00000020040000390000000000430435000000c403200039000012fe040000410000000000430435000000a40220003900000014030000390000000000320435000000400110021000001251011001c7000048d000010430000012350010009c0000123501008041000000c0011002100000004003500210000000000131019f00001256011001c748ce48c90000040f00000060031002700000123503300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000009057000290000193a0000613d000000000801034f0000000909000029000000008a08043c0000000009a90436000000000059004b000019360000c13d000000000006004b000019470000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000000010020019000001b080000613d0000001f01400039000000600110018f0000000901100029000000400010043f000000200030008c000017500000813d000027af0000013d0000124b0010009c000000530000213d0000004003100039000000400030043f0000002003100039000000000023043500000000005104350000000a01000029000000a001100210000000000151019f0000000903000039000000000013041b000000400100043d0000000000210435000012350010009c000012350100804100000040011002100000000002000414000012350020009c0000123502008041000000c002200210000000000112019f0000124c011001c70000800d0200003900000002030000390000124d0400004148ce48c40000040f0000000100200190000027af0000613d0000002001000039000001000010044300000120000004430000124e01000041000048cf0001042e0000001f0530018f0000123706300198000000400200043d0000000004620019000021000000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000197a0000c13d000021000000013d0000001f0530018f0000123706300198000000400200043d0000000004620019000021000000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000019860000c13d000021000000013d0000001f0530018f0000123706300198000000400200043d0000000004620019000021000000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000019920000c13d000021000000013d0000001f0530018f0000123706300198000000400200043d0000000004620019000021000000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000199e0000c13d000021000000013d000012350050009c0000123505008041000000c0015002100000000903000029000900000003001d0000004003300210000000000113019f00001256011001c748ce48c90000040f00000060031002700000123503300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000905700029000019bb0000613d000000000801034f0000000909000029000000008a08043c0000000009a90436000000000059004b000019b70000c13d000000000006004b000019c80000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000000010020019000001b4a0000613d0000001f02400039000000600220018f0000000902200029000a00000002001d000000400020043f000000200030008c000027af0000413d00000009020000290000000002020433000012380020009c000027af0000213d0000000204000039000000000404041a0000000a070000290000004405700039000012bf060000410000000000650435000012b905000041000000000057043500000004057000390000000000450435000000240470003900000000000404350000000004000414000000040020008c000019f20000613d0000000a010000290000004001100210000012350040009c0000123504008041000000c003400210000000000131019f00001251011001c748ce48c90000040f0000006003100270000112350030019d0000123503300197000000010020019000001bb80000613d0000130a053001980000001f0630018f0000000a04500029000019fc0000613d000000000701034f0000000a08000029000000007907043c0000000008980436000000000048004b000019f80000c13d000000000006004b00001a090000613d000000000151034f0000000305600210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000001f013000390000130a041001970000000a01400029000000000041004b00000000040000390000000104004039000012470010009c000000530000213d0000000100400190000000530000c13d000000400010043f000012bb0030009c000027af0000213d000000200030008c000027af0000413d0000000a040000290000000004040433000012470040009c000027af0000213d0000000a063000290000000a034000290000001f04300039000000000064004b0000000005000019000012bc05008041000012bc04400197000012bc07600197000000000874013f000000000074004b0000000004000019000012bc04004041000012bc0080009c000000000405c019000000000004004b000027af0000c13d0000000054030434000012470040009c000000530000213d0000001f034000390000130a033001970000003f033000390000130a033001970000000003130019000012470030009c000000530000213d000000400030043f00000000034104360000000007540019000000000067004b000027af0000213d0000130a074001970000001f0640018f000000000035004b000022dc0000813d000000000007004b00001a4b0000613d00000000096500190000000008630019000000200880008a000000200990008a000000000a780019000000000b790019000000000b0b04330000000000ba0435000000200770008c00001a450000c13d000000000006004b000022f20000613d0000000008030019000022e80000013d000012350050009c0000123505008041000000c0015002100000000903000029000900000003001d0000004003300210000000000113019f00001256011001c748ce48c90000040f00000060031002700000123503300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000090570002900001a670000613d000000000801034f0000000909000029000000008a08043c0000000009a90436000000000059004b00001a630000c13d000000000006004b00001a740000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000000010020019000001b560000613d0000001f02400039000000600220018f0000000902200029000a00000002001d000000400020043f000000200030008c000027af0000413d00000009020000290000000002020433000012380020009c000027af0000213d0000000204000039000000000404041a0000000a070000290000004405700039000012be06000041000000000065043500000024057000390000000b060000290000000000650435000012b9050000410000000000570435000000040570003900000000004504350000000004000414000000040020008c00001a9f0000613d0000000a010000290000004001100210000012350040009c0000123504008041000000c003400210000000000131019f00001251011001c748ce48c90000040f0000006003100270000112350030019d0000123503300197000000010020019000001bc40000613d0000130a053001980000001f0630018f0000000a0450002900001aa90000613d000000000701034f0000000a08000029000000007907043c0000000008980436000000000048004b00001aa50000c13d000000000006004b00001ab60000613d000000000151034f0000000305600210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000001f013000390000130a041001970000000a01400029000000000041004b00000000040000390000000104004039000012470010009c000000530000213d0000000100400190000000530000c13d000000400010043f000012bb0030009c000027af0000213d000000200030008c000027af0000413d0000000a040000290000000004040433000012470040009c000027af0000213d0000000a063000290000000a034000290000001f04300039000000000064004b0000000005000019000012bc05008041000012bc04400197000012bc07600197000000000874013f000000000074004b0000000004000019000012bc04004041000012bc0080009c000000000405c019000000000004004b000027af0000c13d0000000043030434000012470030009c000000530000213d0000001f053000390000130a055001970000003f055000390000130a055001970000000005150019000012470050009c000000530000213d000000400050043f00000000053104360000000007430019000000000067004b000027af0000213d0000130a063001970000001f0230018f000000000054004b0000230b0000813d000000000006004b00001af80000613d00000000082400190000000007250019000000200770008a000000200880008a0000000009670019000000000a680019000000000a0a04330000000000a90435000000200660008c00001af20000c13d000000000002004b000023210000613d0000000007050019000023170000013d0000001f0530018f0000123706300198000000400200043d0000000004620019000021000000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001b030000c13d000021000000013d0000001f0530018f0000123706300198000000400200043d0000000004620019000021000000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001b0f0000c13d000021000000013d0000000b01000029000000000010043f0000000501000039000000200010043f0000000001000414000012350010009c0000123501008041000000c00110021000001241011001c7000080100200003948ce48c90000040f0000000100200190000027af0000613d000000000101043b00000000020004110000123802200197000700000002001d000000000020043f000000200010043f0000000001000414000012350010009c0000123501008041000000c00110021000001241011001c7000080100200003948ce48c90000040f0000000100200190000027af0000613d000000000101043b000000000101041a000000ff001001900000018b0000c13d0000000701000039000000000101041a000012ad0010019800001b400000613d0000000802100270000012380220019800001b3e0000c13d000000ff0010019000000000020000190000124002006041000000070020006b0000018b0000613d000000400100043d0000006402100039000012f00300004100000000003204350000004402100039000012f103000041000000000032043500000024021000390000002e03000039000009360000013d0000001f0530018f0000123706300198000000400200043d0000000004620019000021000000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001b510000c13d000021000000013d0000001f0530018f0000123706300198000000400200043d0000000004620019000021000000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001b5d0000c13d000021000000013d000000400100043d000700000001001d0000124b0010009c000000530000213d00000007030000290000004001300039000000400010043f00000020013000390000000902000029000000000021043500000001010000390000000000130435000000400200043d000600000002001d0000124b0020009c000000530000213d00000006050000290000004002500039000000400020043f000000200250003900000008030000290000000000320435000000000015043500000000010004110000000b020000290000000a03000029000000070400002948ce41a70000040f0000000901000029000000000010043f0000000401000039000000200010043f0000000001000414000012350010009c0000123501008041000000c00110021000001241011001c7000080100200003948ce48c90000040f0000000100200190000027af0000613d000000000101043b0000000b02000029000000000020043f000000200010043f0000000001000414000012350010009c0000123501008041000000c00110021000001241011001c7000080100200003948ce48c90000040f0000000100200190000027af0000613d000000000101043b000000000101041a0005000800100074000020610000813d000000400100043d0000006402100039000012f40300004100000000003204350000004402100039000012f503000041000000000032043500000024021000390000002a03000039000009360000013d0000000101000039000000000201041a0000000905000029000000240150003900000008040000290000000000410435000012c00100004100000000001504350000000401500039000012c1040000410000000000410435000000000100041400000008022002700000123802200197000000040020008c00001d9a0000c13d000000200400003900001dc30000013d0000001f0530018f0000123706300198000000400200043d0000000004620019000021000000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001bbf0000c13d000021000000013d0000001f0530018f0000123706300198000000400200043d0000000004620019000021000000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001bcb0000c13d000021000000013d0000000a03000029000012350030009c00001235030080410000004003300210000012350010009c0000123501008041000000c001100210000000000131019f00001256011001c748ce48c90000040f00000060031002700000123503300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000a0570002900001be90000613d000000000801034f0000000a09000029000000008a08043c0000000009a90436000000000059004b00001be50000c13d000000000006004b00001bf60000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000000010020019000001e730000613d0000001f01400039000000600210018f0000000a01200029000000000021004b00000000020000390000000102004039000012470010009c000000530000213d0000000100200190000000530000c13d000000400010043f000000200030008c000027af0000413d0000000a010000290000000001010433000a00000001001d000012380010009c000027af0000213d0000000201000039000000000101041a000300000001001d000012430100004100000000001004430000000a0100002900000004001004430000000001000414000012350010009c0000123501008041000000c00110021000001244011001c7000080020200003948ce48c90000040f0000000100200190000028200000613d000000000101043b000000000001004b000027af0000613d000000400500043d0000006401500039000000800200003900000000002104350000004401500039000012ba020000410000000000210435000012c6010000410000000001150436000200000001001d0000000401500039000000030200002900000000002104350000002401500039000000000001043500000007010000290000000001010433000000840250003900000000001204350000130a041001970000001f0310018f000700000005001d000000a402500039000000090020006b0000213a0000813d000000000004004b00001c430000613d00000009063000290000000005320019000000200550008a000000200660008a0000000007450019000000000846001900000000080804330000000000870435000000200440008c00001c3d0000c13d000000000003004b000021510000613d0000000005020019000021460000013d0000000b03000029000012350030009c00001235030080410000004003300210000012350010009c0000123501008041000000c001100210000000000131019f00001256011001c748ce48c90000040f00000060031002700000123503300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000b0570002900001c600000613d000000000801034f0000000b09000029000000008a08043c0000000009a90436000000000059004b00001c5c0000c13d000000000006004b00001c6d0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000000010020019000001e7f0000613d0000001f01400039000000600110018f0000000b01100029000012470010009c000000530000213d000000400010043f000000200030008c000027af0000413d0000000b010000290000000001010433000b00000001001d000012380010009c000027af0000213d0000000201000039000000000101041a000a00000001001d000012430100004100000000001004430000000b0100002900000004001004430000000001000414000012350010009c0000123501008041000000c00110021000001244011001c7000080020200003948ce48c90000040f0000000100200190000028200000613d000000000101043b000000000001004b000027af0000613d000000400500043d000012c601000041000000000015043500000004015000390000000a02000029000000000021043500000004010000390000000201100367000000000101043b0000006402500039000000800300003900000000003204350000004402500039000012be030000410000000000320435000000240250003900000000001204350000008402500039000000800100043d00000000001204350000130a041001970000001f0310018f000a00000005001d000000a402500039000000a10020008c000021a50000413d000000000004004b00001cb50000613d000000000632001900000080053001bf000000200660008a0000000007460019000000000845001900000000080804330000000000870435000000200440008c00001caf0000c13d000000000003004b000021bb0000613d000000a0040000390000000005020019000021b10000013d0000000b03000029000012350030009c00001235030080410000004003300210000012350010009c0000123501008041000000c001100210000000000131019f00001256011001c748ce48c90000040f00000060031002700000123503300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000b0570002900001cd30000613d000000000801034f0000000b09000029000000008a08043c0000000009a90436000000000059004b00001ccf0000c13d000000000006004b00001ce00000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000000010020019000001e8b0000613d0000001f01400039000000600110018f0000000b01100029000012470010009c000000530000213d000000400010043f000000200030008c000027af0000413d0000000b010000290000000001010433000b00000001001d000012380010009c000027af0000213d0000000201000039000000000101041a000a00000001001d000012430100004100000000001004430000000b0100002900000004001004430000000001000414000012350010009c0000123501008041000000c00110021000001244011001c7000080020200003948ce48c90000040f0000000100200190000028200000613d000000000101043b000000000001004b000027af0000613d000000400500043d0000006401500039000000800200003900000000002104350000004401500039000012bf020000410000000000210435000012c601000041000000000015043500000004015000390000000a020000290000000000210435000000240150003900000000000104350000008402500039000000800100043d00000000001204350000130a041001970000001f0310018f000a00000005001d000000a402500039000000a10020008c000021e30000413d000000000004004b00001d250000613d000000000632001900000080053001bf000000200660008a0000000007460019000000000845001900000000080804330000000000870435000000200440008c00001d1f0000c13d000000000003004b000021f90000613d000000a0040000390000000005020019000021ef0000013d0000000b03000029000012350030009c00001235030080410000004003300210000012350010009c0000123501008041000000c001100210000000000131019f00001256011001c748ce48c90000040f00000060031002700000123503300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000b0570002900001d430000613d000000000801034f0000000b09000029000000008a08043c0000000009a90436000000000059004b00001d3f0000c13d000000000006004b00001d500000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000000010020019000001e970000613d0000001f01400039000000600110018f0000000b01100029000012470010009c000000530000213d000000400010043f000000200030008c000027af0000413d0000000b010000290000000001010433000b00000001001d000012380010009c000027af0000213d0000000201000039000000000101041a000a00000001001d000012430100004100000000001004430000000b0100002900000004001004430000000001000414000012350010009c0000123501008041000000c00110021000001244011001c7000080020200003948ce48c90000040f0000000100200190000028200000613d000000000101043b000000000001004b000027af0000613d000000400500043d0000006401500039000000800200003900000000002104350000004401500039000012d3020000410000000000210435000012c601000041000000000015043500000004015000390000000a020000290000000000210435000000240150003900000000000104350000008402500039000000800100043d00000000001204350000130a041001970000001f0310018f000a00000005001d000000a402500039000000a10020008c000022210000413d000000000004004b00001d950000613d000000000632001900000080053001bf000000200660008a0000000007460019000000000845001900000000080804330000000000870435000000200440008c00001d8f0000c13d000000000003004b000022370000613d000000a00400003900000000050200190000222d0000013d0000000903000029000012350030009c00001235030080410000004003300210000012350010009c0000123501008041000000c001100210000000000131019f00001246011001c748ce48c90000040f00000060031002700000123503300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000090570002900001db30000613d000000000801034f0000000909000029000000008a08043c0000000009a90436000000000059004b00001daf0000c13d000000000006004b00001dc00000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000000010020019000001ea30000613d0000001f01400039000000600110018f0000000901100029000012470010009c000000530000213d000000400010043f000000200030008c000027af0000413d00000009010000290000000001010433000000000001004b0000000002000039000000010200c039000000000021004b000027af0000c13d000000000001004b000017f70000613d0000000a0100002948ce29500000040f00000000010104330000000b0010006c000021210000a13d000012e902000041000000000020043f000000040010043f0000000b01000029000000240010043f0000124601000041000048d0000104300000000803000029000000000524034f000000000505043b000000200330003900000000005304350000002002200039000000000062004b00001de10000413d00000008020000290000000002020433000000800300043d000000000023004b00001e130000c13d000012470020009c000000530000213d00000005032002100000003f04300039000012ec05400197000000400400043d000600000004001d0000000004450019000000000054004b00000000050000390000000105004039000012470040009c000000530000213d0000000100500190000000530000c13d000000400040043f00000006040000290000000002240436000500000002001d0000001f0230018f000000000003004b00001e090000613d00000005040000290000000003340019000000001501043c0000000004540436000000000034004b00001e050000c13d000000000002004b000000800100043d000000000001004b00001f170000c13d000000400200043d000b00000002001d000000200100003900000000021204360000000601000029000011720000013d000000400100043d0000006402100039000012ea0300004100000000003204350000004402100039000012eb03000041000000000032043500000024021000390000002903000039000009360000013d0000000a03000029000012350030009c00001235030080410000004003300210000012350010009c0000123501008041000000c001100210000000000131019f00001246011001c748ce48c90000040f00000060031002700000123503300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000a0570002900001e360000613d000000000801034f0000000a09000029000000008a08043c0000000009a90436000000000059004b00001e320000c13d000000000006004b00001e430000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000000010020019000001efe0000613d0000001f01400039000000600110018f0000000a02100029000000000012004b00000000010000390000000101004039000700000002001d000012470020009c000000530000213d0000000100100190000000530000c13d0000000701000029000000400010043f000000200030008c000027af0000413d0000000a010000290000000001010433000000000001004b0000000002000039000000010200c039000000000021004b000027af0000c13d000000000001004b000021130000c13d000012c501000041000000000010043f0000000601000029000000040010043f000012e201000041000000240010043f0000124601000041000048d00001043000001235033001970000001f0530018f0000123706300198000000400200043d0000000004620019000021000000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001e6e0000c13d000021000000013d0000001f0530018f0000123706300198000000400200043d0000000004620019000021000000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001e7a0000c13d000021000000013d0000001f0530018f0000123706300198000000400200043d0000000004620019000021000000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001e860000c13d000021000000013d0000001f0530018f0000123706300198000000400200043d0000000004620019000021000000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001e920000c13d000021000000013d0000001f0530018f0000123706300198000000400200043d0000000004620019000021000000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001e9e0000c13d000021000000013d0000001f0530018f0000123706300198000000400200043d0000000004620019000021000000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001eaa0000c13d000021000000013d0000000007650019000000000006004b00001ee00000613d00000000080400190000000009050019000000008a0804340000000009a90436000000000079004b00001eb40000c13d00001ee00000013d0000000007650019000000000006004b00001ee00000613d00000000080400190000000009050019000000008a0804340000000009a90436000000000079004b00001ebe0000c13d00001ee00000013d0000000007650019000000000006004b00001ee00000613d00000000080400190000000009050019000000008a0804340000000009a90436000000000079004b00001ec80000c13d00001ee00000013d0000000007650019000000000006004b00001ee00000613d00000000080400190000000009050019000000008a0804340000000009a90436000000000079004b00001ed20000c13d00001ee00000013d0000000007650019000000000006004b00001ee00000613d00000000080400190000000009050019000000008a0804340000000009a90436000000000079004b00001edc0000c13d000000000002004b00001eed0000613d00000000046400190000000302200210000000000607043300000000062601cf000000000626022f00000000040404330000010002200089000000000424022f00000000022401cf000000000262019f0000000000270435000000000253001900000000000204350000002002000039000000400300043d000b00000003001d000000000223043648ce282e0000040f0000000b020000290000000001210049000012350010009c00001235010080410000006001100210000012350020009c00001235020080410000004002200210000000000121019f000048cf0001042e0000001f0530018f0000123706300198000000400200043d0000000004620019000021000000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001f050000c13d000021000000013d00001235033001970000001f0530018f0000123706300198000000400200043d0000000004620019000021000000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001f120000c13d000021000000013d000000000300001900000008010000290000000001010433000000000031004b000024730000a13d000a00000003001d000000050230021000000007012000290000000003010433000900000002001d000000a00120003900000000010104330000006004100210000000400100043d000000200210003900000000004204350000003404100039000000000034043500000034030000390000000000310435000012ed0010009c000000530000213d0000006003100039000000400030043f000012350020009c000012350200804100000040022002100000000001010433000012350010009c00001235010080410000006001100210000000000121019f0000000002000414000012350020009c0000123502008041000000c002200210000000000112019f00001249011001c7000080100200003948ce48c90000040f0000000100200190000027af0000613d000000000101043b000b00000001001d0000000101000039000000000201041a000000400a00043d000012b60100004100000000001a04350000000401a00039000012b7030000410000000000310435000000000100041400000008022002700000123802200197000000040020008c00001f550000c13d0000000103000031000000200030008c0000002004000039000000000403401900001f7f0000013d0000123500a0009c000012350300004100000000030a40190000004003300210000012350010009c0000123501008041000000c001100210000000000131019f00001256011001c700040000000a001d48ce48c90000040f000000040a00002900000060031002700000123503300197000000200030008c00000020040000390000000004034019000000200640019000000000056a001900001f6f0000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000058004b00001f6b0000c13d0000001f0740019000001f7c0000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000100000003001f0000000100200190000023c60000613d0000001f01400039000000600110018f00000000040a0019000000000aa1001900000000001a004b000000000200003900000001020040390000124700a0009c000000530000213d0000000100200190000000530000c13d0000004000a0043f000000200030008c000027af0000413d0000000002040433000012380020009c000027af0000213d0000000204000039000000000404041a0000004405a00039000012ee0600004100000000006504350000002405a000390000000b060000290000000000650435000012d90500004100000000005a04350000000405a0003900000000004504350000000004000414000000040020008c00001fcb0000613d0000123500a0009c000012350100004100000000010a40190000004001100210000012350040009c0000123504008041000000c003400210000000000113019f00001251011001c7000b0000000a001d48ce48c90000040f0000000b0a00002900000060031002700000123503300197000000200030008c00000020040000390000000004034019000000200640019000000000056a001900001fb90000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000058004b00001fb50000c13d0000001f0740019000001fc60000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000100000003001f0000000100200190000023d20000613d0000001f01400039000000600110018f0000000001a10019000012470010009c000000530000213d000000400010043f000000200030008c000027af0000413d000000060100002900000000010104330000000a03000029000000000031004b000024730000a13d0000000902000029000000050120002900000000020a043300000000002104350000000103300039000000800100043d000000000013004b00001f180000413d00001e0d0000013d0000000703000029000012350030009c00001235030080410000004003300210000012350010009c0000123501008041000000c001100210000000000131019f00001256011001c748ce48c90000040f00000060031002700000123503300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000070570002900001ff80000613d000000000801034f0000000709000029000000008a08043c0000000009a90436000000000059004b00001ff40000c13d000000000006004b000020050000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0000000100200190000020f50000613d0000001f01400039000000600110018f0000000701100029000012470010009c000000530000213d000000400010043f000000200030008c000027af0000413d00000007010000290000000001010433000900000001001d000012380010009c000027af0000213d0000000201000039000000000101041a000800000001001d00001243010000410000000000100443000000090100002900000004001004430000000001000414000012350010009c0000123501008041000000c00110021000001244011001c7000080020200003948ce48c90000040f0000000100200190000028200000613d000000000101043b000000000001004b000027af0000613d000000400300043d0000006401300039000000000200041100000000002104350000004401300039000012df020000410000000000210435000012de0100004100000000001304350000000401300039000600000001001d00000008020000290000000000210435000700000003001d0000002401300039000000000001043500000000010004140000000902000029000000040020008c0000204b0000613d0000000702000029000012350020009c00001235020080410000004002200210000012350010009c0000123501008041000000c001100210000000000121019f00001254011001c7000000090200002948ce48c40000040f0000006003100270000112350030019d00000001002001900000245e0000613d0000000701000029000012470010009c000000530000213d0000000703000029000000400030043f0000000101000039000000000201041a000012b6010000410000000000130435000012b70100004100000006030000290000000000130435000000000100041400000008022002700000123802200197000000040020008c0000248b0000c13d0000000103000031000000200030008c00000020040000390000000004034019000024b40000013d0000000901000029000000000010043f0000000401000039000000200010043f0000000001000414000012350010009c0000123501008041000000c00110021000001241011001c7000080100200003948ce48c90000040f0000000100200190000027af0000613d000000000101043b0000000b02000029000000000020043f000000200010043f0000000001000414000012350010009c0000123501008041000000c00110021000001241011001c7000080100200003948ce48c90000040f0000000100200190000027af0000613d000000000101043b0000000502000029000000000021041b0000000901000029000000000010043f0000000401000039000000200010043f0000000001000414000012350010009c0000123501008041000000c00110021000001241011001c7000080100200003948ce48c90000040f0000000100200190000027af0000613d000000000101043b0000000a02000029000000000020043f000000200010043f0000000001000414000012350010009c0000123501008041000000c00110021000001241011001c7000080100200003948ce48c90000040f0000000100200190000027af0000613d000000000101043b000000000201041a000000080020002a000024580000413d00000008030000290000000002320019000000000021041b000000400100043d0000002002100039000000000032043500000009020000290000000000210435000012350010009c000012350100804100000040011002100000000002000414000012350020009c0000123502008041000000c002200210000000000112019f00001241011001c70000800d020000390000000403000039000012ae0400004100000000050004110000000b060000290000000a0700002948ce48c40000040f0000000100200190000027af0000613d00000007010000290000000001010433000000000001004b0000246b0000c13d000012430100004100000000001004430000000a0100002900000004001004430000000001000414000012350010009c0000123501008041000000c00110021000001244011001c7000080020200003948ce48c90000040f0000000100200190000028200000613d000000000101043b000000000001004b000013d20000613d000000400600043d0000008401600039000000a005000039000000000051043500000064016000390000000802000029000000000021043500000044016000390000000902000029000000000021043500000024016000390000000b020000290000000000210435000012b1010000410000000000160435000000040160003900000000020004110000000000210435000000a402600039000000800100043d00000000001204350000130a041001970000001f0310018f000700000006001d000000c402600039000000a10020008c000025970000413d000000000004004b000020f00000613d000000000632001900000080053001bf000000200660008a0000000007460019000000000845001900000000080804330000000000870435000000200440008c000020ea0000c13d000000000003004b000025ac0000613d000000a0040000390000000006020019000025a20000013d0000001f0530018f0000123706300198000000400200043d0000000004620019000021000000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000020fc0000c13d000000000005004b0000210d0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000012350020009c00001235020080410000004002200210000000000112019f000048d0000104300000000101000039000000000201041a000000ff002001900000247a0000c13d000012e30100004100000007040000290000000000140435000000000100041400000008022002700000123802200197000000040020008c0000234e0000c13d0000002004000039000023770000013d0000000a010000290000000b0200002948ce3a2d0000040f0000000101000039000000000201041a000000400400043d000000240140003900000008030000290000000000310435000012c0010000410000000000140435000b00000004001d0000000401400039000012c1030000410000000000310435000000000100041400000008022002700000123802200197000000040020008c0000225f0000c13d0000000103000031000000200030008c00000020040000390000000004034019000022880000013d0000000005420019000000000004004b000021430000613d0000000906000029000000000702001900000000680604340000000007870436000000000057004b0000213f0000c13d000000000003004b000021510000613d000900090040002d0000000303300210000000000405043300000000043401cf000000000434022f000000090600002900000000060604330000010003300089000000000636022f00000000033601cf000000000343019f00000000003504350000000002210019000000000002043500000000020004140000000a03000029000000040030008c0000216c0000613d0000001f011000390000130a01100197000000a401100039000012350010009c000012350100804100000060011002100000000703000029000012350030009c00001235030080410000004003300210000000000131019f000012350020009c0000123502008041000000c002200210000000000112019f0000000a0200002948ce48c40000040f0000006003100270000112350030019d0000000100200190000023ad0000613d0000000701000029000012470010009c000000530000213d0000000702000029000000400020043f0000000b0100002900000002030000290000000000130435000000200100003900000000001204350000004001200039000000050210002900000004030000290000000203300367000000050000006b000021820000613d000000000403034f0000000005010019000000004604043c0000000005650436000000000025004b0000217e0000c13d000000060000006b000021900000613d000000050330036000000006040000290000000304400210000000000502043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f00000000003204350000000b01100029000000000001043500000008020000290000006001200210000012d40110009a000012d50020009c000012d6010080410000000702000029000012350020009c00001235020080410000004002200210000000000121019f0000000002000414000012350020009c0000123502008041000000c00220021000000000012100190000800d020000390000000103000039000012d704000041000008330000013d0000000005420019000000000004004b000021ae0000613d000000a006000039000000000702001900000000680604340000000007870436000000000057004b000021aa0000c13d000000000003004b000021bb0000613d000000a0044000390000000303300210000000000605043300000000063601cf000000000636022f00000000040404330000010003300089000000000434022f00000000033401cf000000000363019f00000000003504350000000002210019000000000002043500000000020004140000000b03000029000000040030008c0000137a0000613d0000001f011000390000130a01100197000000a401100039000012350010009c000012350100804100000060011002100000000a03000029000012350030009c00001235030080410000004003300210000000000131019f000012350020009c0000123502008041000000c002200210000000000112019f0000000b0200002948ce48c40000040f0000006003100270000112350030019d00000001002001900000137a0000c13d00001235033001970000001f0530018f0000123706300198000000400200043d0000000004620019000021000000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000021de0000c13d000021000000013d0000000005420019000000000004004b000021ec0000613d000000a006000039000000000702001900000000680604340000000007870436000000000057004b000021e80000c13d000000000003004b000021f90000613d000000a0044000390000000303300210000000000605043300000000063601cf000000000636022f00000000040404330000010003300089000000000434022f00000000033401cf000000000363019f00000000003504350000000002210019000000000002043500000000020004140000000b03000029000000040030008c0000137a0000613d0000001f011000390000130a01100197000000a401100039000012350010009c000012350100804100000060011002100000000a03000029000012350030009c00001235030080410000004003300210000000000131019f000012350020009c0000123502008041000000c002200210000000000112019f0000000b0200002948ce48c40000040f0000006003100270000112350030019d00000001002001900000137a0000c13d00001235033001970000001f0530018f0000123706300198000000400200043d0000000004620019000021000000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000221c0000c13d000021000000013d0000000005420019000000000004004b0000222a0000613d000000a006000039000000000702001900000000680604340000000007870436000000000057004b000022260000c13d000000000003004b000022370000613d000000a0044000390000000303300210000000000605043300000000063601cf000000000636022f00000000040404330000010003300089000000000434022f00000000033401cf000000000363019f00000000003504350000000002210019000000000002043500000000020004140000000b03000029000000040030008c0000137a0000613d0000001f011000390000130a01100197000000a401100039000012350010009c000012350100804100000060011002100000000a03000029000012350030009c00001235030080410000004003300210000000000131019f000012350020009c0000123502008041000000c002200210000000000112019f0000000b0200002948ce48c40000040f0000006003100270000112350030019d00000001002001900000137a0000c13d00001235033001970000001f0530018f0000123706300198000000400200043d0000000004620019000021000000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000225a0000c13d000021000000013d0000000b03000029000012350030009c00001235030080410000004003300210000012350010009c0000123501008041000000c001100210000000000131019f00001246011001c748ce48c90000040f00000060031002700000123503300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000b05700029000022780000613d000000000801034f0000000b09000029000000008a08043c0000000009a90436000000000059004b000022740000c13d000000000006004b000022850000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0000000100200190000023ba0000613d0000001f01400039000000600110018f0000000b02100029000000000012004b00000000010000390000000101004039000900000002001d000012470020009c000000530000213d0000000100100190000000530000c13d0000000901000029000000400010043f000000200030008c000027af0000413d0000000b010000290000000001010433000000000001004b0000000002000039000000010200c039000000000021004b000027af0000c13d000000000001004b000017f70000613d0000000101000039000000000201041a000012b601000041000000090400002900000000001404350000000401400039000012b7040000410000000000410435000000000100041400000008022002700000123802200197000000040020008c000024fd0000c13d0000002004000039000025260000013d0000000901000029000000000010043f0000000501000039000000200010043f0000000001000414000012350010009c0000123501008041000000c00110021000001241011001c7000080100200003948ce48c90000040f0000000100200190000027af0000613d000000000101043b00000000020004110000123802200197000a00000002001d000000000020043f000000200010043f0000000001000414000012350010009c0000123501008041000000c00110021000001241011001c7000080100200003948ce48c90000040f0000000100200190000027af0000613d000000000101043b000000000101041a000000ff00100190000007110000c13d0000000701000039000000000101041a000012ad0010019800001b400000613d00000008021002700000123802200198000022d90000c13d000000ff00100190000000000200001900001240020060410000000a0020006b000007110000613d00001b400000013d0000000008730019000000000007004b000022e50000613d0000000009050019000000000a030019000000009b090434000000000aba043600000000008a004b000022e10000c13d000000000006004b000022f20000613d00000000057500190000000306600210000000000708043300000000076701cf000000000767022f00000000050504330000010006600089000000000565022f00000000056501cf000000000575019f00000000005804350000000004340019000000000004043500000000040104330000130a074001970000001f0640018f000000400100043d0000002005100039000000000053004b000023250000813d000000000007004b000023070000613d00000000096300190000000008650019000000200880008a000000200990008a000000000a780019000000000b790019000000000b0b04330000000000ba0435000000200770008c000023010000c13d000000000006004b0000233b0000613d0000000008050019000023310000013d0000000007650019000000000006004b000023140000613d00000000080400190000000009050019000000008a0804340000000009a90436000000000079004b000023100000c13d000000000002004b000023210000613d00000000046400190000000302200210000000000607043300000000062601cf000000000626022f00000000040404330000010002200089000000000424022f00000000022401cf000000000262019f000000000027043500000000025300190000000000020435000000400300043d0000234c0000013d0000000008750019000000000007004b0000232e0000613d0000000009030019000000000a050019000000009b090434000000000aba043600000000008a004b0000232a0000c13d000000000006004b0000233b0000613d00000000037300190000000306600210000000000708043300000000076701cf000000000767022f00000000030304330000010006600089000000000363022f00000000036301cf000000000373019f000000000038043500000000034500190000000b050000290000000000530435000000200340003900000000003104350000005f034000390000130a023001970000000004120019000000000024004b00000000020000390000000102004039000012470040009c000000530000213d0000000100200190000000530000c13d0000000003040019000000400040043f000000200200003900001ef10000013d0000000703000029000012350030009c00001235030080410000004003300210000012350010009c0000123501008041000000c001100210000000000131019f000012b0011001c748ce48c90000040f00000060031002700000123503300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000705700029000023670000613d000000000801034f0000000709000029000000008a08043c0000000009a90436000000000059004b000023630000c13d000000000006004b000023740000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0000000100200190000023de0000613d0000001f01400039000000600110018f0000000701100029000012470010009c000000530000213d000000400010043f000000200030008c000027af0000413d00000007020000290000000002020433000000000002004b0000000003000039000000010300c039000000000032004b000027af0000c13d000000000002004b000024790000c13d00000009020000290000000003020433000000800200043d000000000032004b000025750000c13d000000000002004b000013d20000613d000000000200001900000009010000290000000001010433000000000021004b000024730000a13d000a00000002001d000000050120021000000008021000290000000003020433000000a00110003900000000020104330000000b0100002948ce3aec0000040f0000000a030000290000000103300039000000800100043d0000000002030019000000000013004b000023900000413d000013d20000013d000000400100043d0000006402100039000012f20300004100000000003204350000004402100039000012f303000041000000000032043500000024021000390000002803000039000009360000013d00001235033001970000001f0530018f0000123706300198000000400200043d0000000004620019000021000000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000023b50000c13d000021000000013d0000001f0530018f0000123706300198000000400200043d0000000004620019000021000000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000023c10000c13d000021000000013d0000001f0530018f0000123706300198000000400200043d0000000004620019000021000000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000023cd0000c13d000021000000013d0000001f0530018f0000123706300198000000400200043d0000000004620019000021000000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000023d90000c13d000021000000013d0000001f0530018f0000123706300198000000400200043d0000000004620019000021000000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000023e50000c13d000021000000013d00000000030000190000000001020433000000000031004b000024730000a13d000800000003001d0000000501300210000000a002100039000000000302043300000005011000290000000001010433000a00000001001d000b00000003001d000000000030043f0000000401000039000000200010043f0000000001000414000012350010009c0000123501008041000000c00110021000001241011001c7000080100200003948ce48c90000040f0000000100200190000027af0000613d000000000101043b0000000902000029000000000020043f000000200010043f0000000001000414000012350010009c0000123501008041000000c00110021000001241011001c7000080100200003948ce48c90000040f0000000100200190000027af0000613d000000000101043b000000000101041a0007000a0010007400001b9c0000413d0000000b01000029000000000010043f0000000401000039000000200010043f0000000001000414000012350010009c0000123501008041000000c00110021000001241011001c7000080100200003948ce48c90000040f0000000100200190000027af0000613d000000000101043b0000000902000029000000000020043f000000200010043f0000000001000414000012350010009c0000123501008041000000c00110021000001241011001c7000080100200003948ce48c90000040f0000000100200190000027af0000613d000000000101043b0000000702000029000000000021041b0000000b01000029000000000010043f0000000401000039000000200010043f0000000001000414000012350010009c0000123501008041000000c00110021000001241011001c7000080100200003948ce48c90000040f0000000100200190000027af0000613d000000000101043b0000000402000029000000000020043f000000200010043f0000000001000414000012350010009c0000123501008041000000c00110021000001241011001c7000080100200003948ce48c90000040f0000000100200190000027af0000613d000000000101043b000000000201041a0000000a03000029000000000032001a000024580000413d0000000002320019000000000021041b00000008030000290000000103300039000000800100043d000000000013004b0000000602000029000023eb0000413d000007230000013d0000125501000041000000000010043f0000001101000039000000040010043f0000125601000041000048d00001043000001235033001970000001f0530018f0000123706300198000000400200043d0000000004620019000021000000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000024660000c13d000021000000013d0000000b030000290000000a033001af0000000602000029000000000202043300001238003001980000256e0000c13d000000000002004b000025930000c13d0000125501000041000000000010043f0000003201000039000000040010043f0000125601000041000048d000010430000700000001001d00000007030000290000004401300039000012e402000041000000000021043500000024013000390000001002000039000000000021043500001250010000410000000000130435000000040130003900000020020000390000000000210435000012350030009c0000123503008041000000400130021000001251011001c7000048d0000104300000000703000029000012350030009c00001235030080410000004003300210000012350010009c0000123501008041000000c001100210000000000131019f00001256011001c748ce48c90000040f00000060031002700000123503300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000705700029000024a40000613d000000000801034f0000000709000029000000008a08043c0000000009a90436000000000059004b000024a00000c13d000000000006004b000024b10000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00000001002001900000257b0000613d0000001f01400039000000600110018f0000000701100029000012470010009c000000530000213d000000400010043f000000200030008c000027af0000413d00000007010000290000000001010433000900000001001d000012380010009c000027af0000213d0000000201000039000000000101041a000800000001001d00001243010000410000000000100443000000090100002900000004001004430000000001000414000012350010009c0000123501008041000000c00110021000001244011001c7000080020200003948ce48c90000040f0000000100200190000028200000613d000000000101043b000000000001004b000027af0000613d000000400300043d0000006401300039000000800200003900000000002104350000004401300039000012be020000410000000000210435000012c60100004100000000001304350000000401300039000600000001001d00000008020000290000000000210435000000240130003900000000000104350000000b010000290000000001010433000000840230003900000000001204350000130a051001970000001f0410018f000700000003001d000000a4033000390000000a0030006b000026e10000813d000000000005004b000024f90000613d0000000a074000290000000006430019000000200660008a000000200770008a0000000008560019000000000957001900000000090904330000000000980435000000200550008c000024f30000c13d000000000004004b000026f80000613d0000000006030019000026ed0000013d0000000903000029000012350030009c00001235030080410000004003300210000012350010009c0000123501008041000000c001100210000000000131019f00001256011001c748ce48c90000040f00000060031002700000123503300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000905700029000025160000613d000000000801034f0000000909000029000000008a08043c0000000009a90436000000000059004b000025120000c13d000000000006004b000025230000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0000000100200190000025870000613d0000001f01400039000000600110018f0000000901100029000012470010009c000000530000213d000000400010043f000000200030008c000027af0000413d00000009010000290000000001010433000b00000001001d000012380010009c000027af0000213d0000000201000039000000000101041a000900000001001d000012430100004100000000001004430000000b0100002900000004001004430000000001000414000012350010009c0000123501008041000000c00110021000001244011001c7000080020200003948ce48c90000040f0000000100200190000028200000613d000000000101043b000000000001004b000027af0000613d000000400500043d0000006401500039000000800200003900000000002104350000004401500039000012be02000041000000000021043500000024015000390000000a020000290000000000210435000012c60100004100000000001504350000000401500039000000090200002900000000002104350000008402500039000000800100043d00000000001204350000130a041001970000001f0310018f000a00000005001d000000a402500039000000a10020008c000027290000413d000000000004004b000025690000613d000000000632001900000080053001bf000000200660008a0000000007460019000000000845001900000000080804330000000000870435000000200440008c000025630000c13d000000000003004b0000273f0000613d000000a0040000390000000005020019000027350000013d0000000003000019000000000032004b000024730000a13d0000000103300039000000000013004b0000256f0000413d000020ba0000013d0000006402100039000012e50300004100000000003204350000004402100039000012e60300004100001e190000013d0000001f0530018f0000123706300198000000400200043d0000000004620019000021000000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000025820000c13d000021000000013d0000001f0530018f0000123706300198000000400200043d0000000004620019000021000000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000258e0000c13d000021000000013d000012af01000041000000000010043f000012b001000041000048d0000104300000000006420019000000000004004b0000259f0000613d000000000702001900000000580504340000000007870436000000000067004b0000259b0000c13d000000000003004b000025ac0000613d000000a0044000390000000303300210000000000506043300000000053501cf000000000535022f00000000040404330000010003300089000000000434022f00000000033401cf000000000353019f00000000003604350000000002210019000000000002043500000000020004140000000a03000029000000040030008c000025ba0000c13d00000000050004150000000d0550008a00000005055002100000000103000031000000200030008c00000020040000390000000004034019000025ed0000013d0000001f011000390000130a01100197000000c401100039000012350010009c000012350100804100000060011002100000000703000029000012350030009c00001235030080410000004003300210000000000131019f000012350020009c0000123502008041000000c002200210000000000112019f0000000a0200002948ce48c40000040f00000060031002700000123503300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000705700029000025da0000613d000000000801034f0000000709000029000000008a08043c0000000009a90436000000000059004b000025d60000c13d000000000006004b000025e70000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00000000050004150000000c0550008a00000005055002100000000100200190000026820000613d0000001f01400039000000600110018f0000000702100029000000000012004b00000000010000390000000101004039000012470020009c000000530000213d0000000100100190000000530000c13d0000000004020019000000400020043f000000200030008c000027af0000413d00000007010000290000000001010433000012b200100198000027af0000c13d0000000502500270000000000201001f000012b301100197000012b10010009c000013d20000613d0000125001000041000b00000004001d0000000000140435000000040140003948ce48a90000040f000026d70000013d0000000005410019000000000004004b000026130000613d0000000106000029000000000701001900000000680604340000000007870436000000000057004b0000260f0000c13d000000000003004b000026210000613d000100010040002d0000000303300210000000000405043300000000043401cf000000000434022f000000010600002900000000060604330000010003300089000000000636022f00000000033601cf000000000343019f00000000003504350000000003120019000000000003043500000000030004140000000404000029000000040040008c0000262f0000c13d00000000050004150000000f0550008a00000005055002100000000103000031000000200030008c00000020040000390000000004034019000026640000013d0000001f022000390000130a022001970000000b0400002900000000014100490000000001210019000012350010009c00001235010080410000006001100210000012350040009c000012350200004100000000020440190000004002200210000000000121019f000012350030009c0000123503008041000000c002300210000000000121019f000000040200002948ce48c40000040f00000060031002700000123503300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000b05700029000026510000613d000000000801034f0000000b09000029000000008a08043c0000000009a90436000000000059004b0000264d0000c13d000000000006004b0000265e0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00000000050004150000000e0550008a000000050550021000000001002001900000269c0000613d0000001f01400039000000600110018f0000000b02100029000000000012004b00000000010000390000000101004039000012470020009c000000530000213d0000000100100190000000530000c13d0000000004020019000000400020043f000000200030008c000027af0000413d0000000b010000290000000001010433000012b200100198000027af0000c13d0000000502500270000000000201001f000012b301100197000012f70010009c000013d20000613d0000125001000041000a00000004001d0000000000140435000000040140003948ce48a90000040f0000000a02000029000026d80000013d000000040230008c000026d10000413d000000000400043d000012b204400197000000000501043b000012b305500197000000000445019f000000000040043f000012b304400197000012500040009c000026d10000c13d000000440030008c000026d10000413d00000004051003700000130a062001980000001f0720018f000000400400043d0000000001640019000026b50000613d000000000805034f0000000009040019000000008a08043c0000000009a90436000000000019004b000026970000c13d000026b50000013d000000040230008c000026d10000413d000000000400043d000012b204400197000000000501043b000012b305500197000000000445019f000000000040043f000000440030008c000026d10000413d000012b304400197000012500040009c000026d10000c13d00000004051003700000130a062001980000001f0720018f000000400400043d0000000001640019000026b50000613d000000000805034f0000000009040019000000008a08043c0000000009a90436000000000019004b000026b10000c13d000000000007004b000026c20000613d000000000565034f0000000306700210000000000701043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f00000000005104350000000005040433000012470050009c000026d10000213d0000002401500039000000000031004b000026d10000213d00000000014500190000000003010433000012470030009c000026d10000213d000000000224001900000000063100190000002006600039000000000026004b000027b10000a13d000000400200043d000b00000002001d00001250010000410000000000120435000000040120003948ce48b60000040f0000000b020000290000000001210049000012350010009c00001235010080410000006001100210000012350020009c00001235020080410000004002200210000000000121019f000048d0000104300000000006530019000000000005004b000026ea0000613d0000000a07000029000000000803001900000000790704340000000008980436000000000068004b000026e60000c13d000000000004004b000026f80000613d000a000a0050002d0000000304400210000000000506043300000000054501cf000000000545022f0000000a0700002900000000070704330000010004400089000000000747022f00000000044701cf000000000454019f00000000004604350000000003310019000000000003043500000000030004140000000904000029000000040040008c000027130000613d0000001f011000390000130a01100197000000a401100039000012350010009c000012350100804100000060011002100000000702000029000012350020009c00001235020080410000004002200210000000000121019f000012350030009c0000123503008041000000c002300210000000000112019f000000090200002948ce48c40000040f0000006003100270000112350030019d00000001002001900000275f0000613d0000000701000029000012470010009c000000530000213d0000000703000029000000400030043f0000000101000039000000000201041a000012b6010000410000000000130435000012b70100004100000006030000290000000000130435000000000100041400000008022002700000123802200197000000040020008c000027790000c13d0000000103000031000000200030008c00000020040000390000000004034019000027a20000013d0000000005420019000000000004004b000027320000613d000000a006000039000000000702001900000000680604340000000007870436000000000057004b0000272e0000c13d000000000003004b0000273f0000613d000000a0044000390000000303300210000000000605043300000000063601cf000000000636022f00000000040404330000010003300089000000000434022f00000000033401cf000000000363019f00000000003504350000000002210019000000000002043500000000020004140000000b03000029000000040030008c0000275a0000613d0000001f011000390000130a01100197000000a401100039000012350010009c000012350100804100000060011002100000000a03000029000012350030009c00001235030080410000004003300210000000000131019f000012350020009c0000123502008041000000c002200210000000000121019f0000000b0200002948ce48c40000040f0000006003100270000112350030019d00000001002001900000276c0000613d0000000a01000029000000000200001948ce28700000040f0000000001000019000048cf0001042e00001235033001970000001f0530018f0000123706300198000000400200043d0000000004620019000021000000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000027670000c13d000021000000013d00001235033001970000001f0530018f0000123706300198000000400200043d0000000004620019000021000000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000027740000c13d000021000000013d0000000703000029000012350030009c00001235030080410000004003300210000012350010009c0000123501008041000000c001100210000000000131019f00001256011001c748ce48c90000040f00000060031002700000123503300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000705700029000027920000613d000000000801034f0000000709000029000000008a08043c0000000009a90436000000000059004b0000278e0000c13d000000000006004b0000279f0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0000000100200190000027d30000613d0000001f01400039000000600110018f0000000701100029000012470010009c000000530000213d000000400010043f000000200030008c000027af0000413d00000007010000290000000001010433000b00000001001d000012380010009c000027df0000a13d0000000001000019000048d00001043000000000023500190000003f022000390000130a022001970000000004420019000000000024004b00000000020000390000000102004039000012470040009c000000530000213d0000000100200190000000530000c13d0000000003040019000000400040043f000000000001004b000026d10000613d00001250020000410000000004030019000b00000003001d0000000000230435000000040230003900000020030000390000000000320435000000240240003948ce282e0000040f0000000b020000290000000001210049000012350010009c0000123501008041000012350020009c000012350200804100000060011002100000004002200210000000000121019f000048d0000104300000001f0530018f0000123706300198000000400200043d0000000004620019000021000000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000027da0000c13d000021000000013d0000000201000039000000000101041a000a00000001001d000012430100004100000000001004430000000b0100002900000004001004430000000001000414000012350010009c0000123501008041000000c00110021000001244011001c7000080020200003948ce48c90000040f0000000100200190000028200000613d000000000101043b000000000001004b000027af0000613d000000400300043d00000064013000390000123d0200004100000000002104350000004401300039000012e0020000410000000000210435000012e101000041000000000013043500000004013000390000000a020000290000000000210435000a00000003001d0000002401300039000000000001043500000000010004140000000b02000029000000040020008c000028140000613d0000000a02000029000012350020009c00001235020080410000004002200210000012350010009c0000123501008041000000c001100210000000000121019f00001254011001c70000000b0200002948ce48c40000040f0000006003100270000112350030019d0000000100200190000028210000613d0000000a01000029000012470010009c000000530000213d0000000a01000029000000400010043f0000000303000039000000000103041a0000130b0110019700000001011001bf000000000013041b0000000001000019000048cf0001042e000000000001042f00001235033001970000001f0530018f0000123706300198000000400200043d0000000004620019000021000000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000028290000c13d000021000000013d000000004301043400000000013204360000130a063001970000001f0530018f000000000014004b000028440000813d000000000006004b000028400000613d00000000085400190000000007510019000000200770008a000000200880008a0000000009670019000000000a680019000000000a0a04330000000000a90435000000200660008c0000283a0000c13d000000000005004b0000285a0000613d0000000007010019000028500000013d0000000007610019000000000006004b0000284d0000613d00000000080400190000000009010019000000008a0804340000000009a90436000000000079004b000028490000c13d000000000005004b0000285a0000613d00000000046400190000000305500210000000000607043300000000065601cf000000000656022f00000000040404330000010005500089000000000454022f00000000045401cf000000000464019f0000000000470435000000000431001900000000000404350000001f033000390000130a023001970000000001210019000000000001042d000012bb0010009c0000286e0000213d000000630010008c0000286e0000a13d00000002030003670000000401300370000000000101043b000012380010009c0000286e0000213d0000002402300370000000000202043b0000004403300370000000000303043b000000000001042d0000000001000019000048d0000104300000001f022000390000130a022001970000000001120019000000000021004b00000000020000390000000102004039000012470010009c0000287c0000213d00000001002001900000287c0000c13d000000400010043f000000000001042d0000125501000041000000000010043f0000004101000039000000040010043f0000125601000041000048d0000104300000001f03100039000000000023004b0000000004000019000012bc04004041000012bc05200197000012bc03300197000000000653013f000000000053004b0000000003000019000012bc03002041000012bc0060009c000000000304c019000000000003004b000028c90000613d0000000204000367000000000314034f000000000303043b0000130c0030009c000028c30000813d0000001f063000390000130a066001970000003f066000390000130a07600197000000400600043d0000000007760019000000000067004b00000000080000390000000108004039000012470070009c000028c30000213d0000000100800190000028c30000c13d0000002008100039000000400070043f00000000013604360000000006830019000000000026004b000028c90000213d000000000484034f0000130a053001980000001f0630018f0000000002510019000028b30000613d000000000704034f0000000008010019000000007907043c0000000008980436000000000028004b000028af0000c13d000000000006004b000028c00000613d000000000454034f0000000305600210000000000602043300000000065601cf000000000656022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000464019f000000000042043500000000013100190000000000010435000000000001042d0000125501000041000000000010043f0000004101000039000000040010043f0000125601000041000048d0000104300000000001000019000048d000010430000000000301001900000000040104330000000001420436000000000004004b000028d70000613d00000000020000190000002003300039000000000503043300000000015104360000000102200039000000000042004b000028d10000413d000000000001042d000012bb0010009c0000293e0000213d0000000004010019000000630010008c0000293e0000a13d00000002050003670000000401500370000000000101043b000012380010009c0000293e0000213d0000002402500370000000000302043b000012470030009c0000293e0000213d0000002302300039000000000042004b0000293e0000813d0000000402300039000000000225034f000000000602043b0000130c0060009c000029400000813d00000005076002100000003f02700039000012c808200197000000400200043d0000000008820019000000000028004b00000000090000390000000109004039000012470080009c000029400000213d0000000100900190000029400000c13d000000400080043f000000000062043500000024033000390000000007370019000000000047004b0000293e0000213d000000000006004b0000290a0000613d0000000006020019000000000835034f000000000808043b000000200660003900000000008604350000002003300039000000000073004b000029030000413d0000004403500370000000000603043b000012470060009c0000293e0000213d0000002303600039000000000043004b0000000007000019000012bc07008041000012bc08400197000012bc03300197000000000983013f000000000083004b0000000003000019000012bc03004041000012bc0090009c000000000307c019000000000003004b0000293e0000c13d0000000403600039000000000335034f000000000703043b000012470070009c000029400000213d00000005087002100000003f03800039000012c809300197000000400300043d0000000009930019000000000039004b000000000a000039000000010a004039000012470090009c000029400000213d0000000100a00190000029400000c13d000000400090043f000000000073043500000024066000390000000008680019000000000048004b0000293e0000213d000000000007004b0000293d0000613d0000000004030019000000000765034f000000000707043b000000200440003900000000007404350000002006600039000000000086004b000029360000413d000000000001042d0000000001000019000048d0000104300000125501000041000000000010043f0000004101000039000000040010043f0000125601000041000048d0000104300000000701000039000000000201041a000000080120027000001238011001980000294c0000613d000000000001042d000000ff0020019000000000010000190000124001006041000000000001042d0004000000000002000400000001001d000000400100043d0000130d0010009c00002b0a0000813d0000006002100039000000400020043f000000400210003900000000000204350000002002100039000000000002043500000000000104350000000101000039000000000201041a000000400c00043d000012b60100004100000000001c04350000000401c00039000012b7030000410000000000310435000000000100041400000008022002700000123802200197000000040020008c0000296e0000c13d0000000103000031000000200030008c00000020040000390000000004034019000029990000013d0000123500c0009c000012350300004100000000030c40190000004003300210000012350010009c0000123501008041000000c001100210000000000131019f00001256011001c700030000000c001d48ce48c90000040f000000030c00002900000060031002700000123503300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c0019000029890000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b000029850000c13d000000000006004b000029960000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000000010020019000002b100000613d0000001f01400039000000600110018f000000000bc1001900000000001b004b000000000200003900000001020040390000124700b0009c00002b0a0000213d000000010020019000002b0a0000c13d0000004000b0043f0000001f0030008c00002b080000a13d00000000020c0433000012380020009c00002b080000213d0000000204000039000000000404041a0000004405b000390000130e0600004100000000006504350000002405b0003900000004060000290000000000650435000012d90500004100000000005b04350000000405b0003900000000004504350000000004000414000000040020008c000029e50000613d0000123500b0009c000012350100004100000000010b40190000004001100210000012350040009c0000123504008041000000c003400210000000000113019f00001251011001c700030000000b001d48ce48c90000040f000000030b00002900000060031002700000123503300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000029d30000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000029cf0000c13d000000000006004b000029e00000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000000010020019000002b1c0000613d0000001f01400039000000600110018f000000000cb100190000124700c0009c00002b0a0000213d0000004000c0043f000000200030008c00002b080000413d00000000010b0433000300000001001d0000000101000039000000000201041a000012b60100004100000000001c04350000000401c00039000012b7040000410000000000410435000000000100041400000008022002700000123802200197000000040020008c000029fb0000c13d000000200400003900002a260000013d0000123500c0009c000012350300004100000000030c40190000004003300210000012350010009c0000123501008041000000c001100210000000000131019f00001256011001c700020000000c001d48ce48c90000040f000000020c00002900000060031002700000123503300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c001900002a160000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b00002a120000c13d000000000006004b00002a230000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000000010020019000002b280000613d0000001f01400039000000600110018f000000000bc100190000124700b0009c00002b0a0000213d0000004000b0043f000000200030008c00002b080000413d00000000020c0433000012380020009c00002b080000213d0000000204000039000000000404041a0000004405b000390000130f0600004100000000006504350000002405b0003900000004060000290000000000650435000012d90500004100000000005b04350000000405b0003900000000004504350000000004000414000000040020008c00002a6d0000613d0000123500b0009c000012350100004100000000010b40190000004001100210000012350040009c0000123504008041000000c003400210000000000113019f00001251011001c700020000000b001d48ce48c90000040f000000020b00002900000060031002700000123503300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900002a5b0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00002a570000c13d000000000006004b00002a680000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000000010020019000002b340000613d0000001f01400039000000600110018f000000000cb100190000124700c0009c00002b0a0000213d0000004000c0043f000000200030008c00002b080000413d00000000010b0433000200000001001d0000000101000039000000000201041a000012b60100004100000000001c04350000000401c00039000012b7040000410000000000410435000000000100041400000008022002700000123802200197000000040020008c00002a830000c13d000000200400003900002aae0000013d0000123500c0009c000012350300004100000000030c40190000004003300210000012350010009c0000123501008041000000c001100210000000000131019f00001256011001c700010000000c001d48ce48c90000040f000000010c00002900000060031002700000123503300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c001900002a9e0000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b00002a9a0000c13d000000000006004b00002aab0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000000010020019000002b400000613d0000001f01400039000000600110018f000000000bc100190000124700b0009c00002b0a0000213d0000004000b0043f000000200030008c00002b080000413d00000000020c0433000012380020009c00002b080000213d0000000204000039000000000404041a0000004405b00039000013100600004100000000006504350000002405b0003900000004060000290000000000650435000012d90500004100000000005b04350000000405b0003900000000004504350000000004000414000000040020008c00002af50000613d0000123500b0009c000012350100004100000000010b40190000004001100210000012350040009c0000123504008041000000c003400210000000000113019f00001251011001c700040000000b001d48ce48c90000040f000000040b00002900000060031002700000123503300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900002ae30000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00002adf0000c13d000000000006004b00002af00000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000000010020019000002b4c0000613d0000001f01400039000000600110018f0000000001b10019000012470010009c00002b0a0000213d000000400010043f000000200030008c00002b080000413d000012ed0010009c00002b0a0000213d00000000020b04330000006003100039000000400030043f0000004003100039000000030400002900000000004304350000002003100039000000000023043500000002020000290000000000210435000000000001042d0000000001000019000048d0000104300000125501000041000000000010043f0000004101000039000000040010043f0000125601000041000048d0000104300000001f0530018f0000123706300198000000400200043d000000000462001900002b570000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002b170000c13d00002b570000013d0000001f0530018f0000123706300198000000400200043d000000000462001900002b570000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002b230000c13d00002b570000013d0000001f0530018f0000123706300198000000400200043d000000000462001900002b570000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002b2f0000c13d00002b570000013d0000001f0530018f0000123706300198000000400200043d000000000462001900002b570000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002b3b0000c13d00002b570000013d0000001f0530018f0000123706300198000000400200043d000000000462001900002b570000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002b470000c13d00002b570000013d0000001f0530018f0000123706300198000000400200043d000000000462001900002b570000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002b530000c13d000000000005004b00002b640000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000012350020009c00001235020080410000004002200210000000000112019f000048d00001043000010000000000020000000101000039000000000201041a000000ff0120019000002bba0000c13d000000400b00043d000012e30100004100000000001b0435000000000100041400000008022002700000123802200197000000040020008c00002b7c0000c13d0000000103000031000000200030008c0000002004000039000000000403401900002ba70000013d0000123500b0009c000012350300004100000000030b40190000004003300210000012350010009c0000123501008041000000c001100210000000000131019f000012b0011001c700010000000b001d48ce48c90000040f000000010b00002900000060031002700000123503300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900002b970000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00002b930000c13d000000000006004b00002ba40000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000000010020019000002bc30000613d0000001f01400039000000600210018f0000000001b20019000000000021004b00000000020000390000000102004039000012470010009c00002bbd0000213d000000010020019000002bbd0000c13d000000400010043f0000001f0030008c00002bbb0000a13d00000000010b0433000000000001004b0000000002000039000000010200c039000000000021004b00002bbb0000c13d000000000001042d0000000001000019000048d0000104300000125501000041000000000010043f0000004101000039000000040010043f0000125601000041000048d0000104300000001f0530018f0000123706300198000000400200043d000000000462001900002bce0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002bca0000c13d000000000005004b00002bdb0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000012350020009c00001235020080410000004002200210000000000121019f000048d00001043000020000000000020000000102000039000000000202041a000000400c00043d000012b60300004100000000003c04350000000404c00039000012b7030000410000000000340435000000000400041400000008022002700000123802200197000000040020008c00002bf40000c13d0000000103000031000000200030008c0000002004000039000000000403401900002c210000013d000100000001001d0000123500c0009c000012350300004100000000030c40190000004003300210000012350040009c0000123504008041000000c001400210000000000131019f00001256011001c700020000000c001d48ce48c90000040f000000020c00002900000060031002700000123503300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c001900002c100000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b00002c0c0000c13d000000000006004b00002c1d0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000000010020019000002c7c0000613d00000001010000290000001f02400039000000600720018f000000000bc7001900000000007b004b000000000200003900000001020040390000124700b0009c00002c760000213d000000010020019000002c760000c13d0000004000b0043f0000001f0030008c00002c740000a13d00000000020c0433000012380020009c00002c740000213d0000000204000039000000000404041a0000004405b00039000012ee0600004100000000006504350000002405b000390000000000150435000012d90500004100000000005b04350000000405b0003900000000004504350000000004000414000000040020008c00002c6c0000613d0000123500b0009c000012350100004100000000010b40190000004001100210000012350040009c0000123504008041000000c003400210000000000113019f00001251011001c700020000000b001d48ce48c90000040f000000020b00002900000060031002700000123503300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900002c5a0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00002c560000c13d000000000006004b00002c670000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000000010020019000002c9a0000613d0000001f01400039000000600710018f0000000001b70019000012470010009c00002c760000213d000000400010043f000000200030008c00002c740000413d00000000010b0433000000000001042d0000000001000019000048d0000104300000125501000041000000000010043f0000004101000039000000040010043f0000125601000041000048d0000104300000001f0530018f0000123706300198000000400200043d000000000462001900002c870000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002c830000c13d000000000005004b00002c940000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000012350020009c00001235020080410000004002200210000000000112019f000048d0000104300000001f0530018f0000123706300198000000400200043d000000000462001900002ca50000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002ca10000c13d000000000005004b00002cb20000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000012350020009c00001235020080410000004002200210000000000121019f000048d00001043000020000000000020000000102000039000000000202041a000000400c00043d000012b60300004100000000003c04350000000404c00039000012b7030000410000000000340435000000000400041400000008022002700000123802200197000000040020008c00002ccb0000c13d0000000103000031000000200030008c0000002004000039000000000403401900002cf80000013d000100000001001d0000123500c0009c000012350300004100000000030c40190000004003300210000012350040009c0000123504008041000000c001400210000000000131019f00001256011001c700020000000c001d48ce48c90000040f000000020c00002900000060031002700000123503300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c001900002ce70000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b00002ce30000c13d000000000006004b00002cf40000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000000010020019000002d530000613d00000001010000290000001f02400039000000600720018f000000000bc7001900000000007b004b000000000200003900000001020040390000124700b0009c00002d4d0000213d000000010020019000002d4d0000c13d0000004000b0043f0000001f0030008c00002d4b0000a13d00000000020c0433000012380020009c00002d4b0000213d0000000204000039000000000404041a0000004405b000390000130f0600004100000000006504350000002405b000390000000000150435000012d90500004100000000005b04350000000405b0003900000000004504350000000004000414000000040020008c00002d430000613d0000123500b0009c000012350100004100000000010b40190000004001100210000012350040009c0000123504008041000000c003400210000000000113019f00001251011001c700020000000b001d48ce48c90000040f000000020b00002900000060031002700000123503300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900002d310000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00002d2d0000c13d000000000006004b00002d3e0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000000010020019000002d710000613d0000001f01400039000000600710018f0000000001b70019000012470010009c00002d4d0000213d000000400010043f000000200030008c00002d4b0000413d00000000010b0433000000000001042d0000000001000019000048d0000104300000125501000041000000000010043f0000004101000039000000040010043f0000125601000041000048d0000104300000001f0530018f0000123706300198000000400200043d000000000462001900002d5e0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002d5a0000c13d000000000005004b00002d6b0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000012350020009c00001235020080410000004002200210000000000112019f000048d0000104300000001f0530018f0000123706300198000000400200043d000000000462001900002d7c0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002d780000c13d000000000005004b00002d890000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000012350020009c00001235020080410000004002200210000000000121019f000048d00001043000010000000000020000000101000039000000000201041a000000400c00043d000012b60100004100000000001c04350000000401c00039000012b7030000410000000000310435000000000100041400000008022002700000123802200197000000040020008c00002da20000c13d0000000103000031000000200030008c0000002004000039000000000403401900002dcd0000013d0000123500c0009c000012350300004100000000030c40190000004003300210000012350010009c0000123501008041000000c001100210000000000131019f00001256011001c700010000000c001d48ce48c90000040f000000010c00002900000060031002700000123503300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c001900002dbd0000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b00002db90000c13d000000000006004b00002dca0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000000010020019000002e2a0000613d0000001f01400039000000600110018f000000000bc1001900000000001b004b000000000200003900000001020040390000124700b0009c00002e240000213d000000010020019000002e240000c13d0000004000b0043f0000001f0030008c00002e220000a13d00000000020c0433000012380020009c00002e220000213d0000000204000039000000000404041a0000004405b00039000012df060000410000000000650435000012d80500004100000000005b04350000000405b0003900000000004504350000002404b0003900000000000404350000000004000414000000040020008c00002e180000613d0000123500b0009c000012350100004100000000010b40190000004001100210000012350040009c0000123504008041000000c003400210000000000113019f00001251011001c700010000000b001d48ce48c90000040f000000010b00002900000060031002700000123503300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900002e060000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00002e020000c13d000000000006004b00002e130000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000000010020019000002e480000613d0000001f01400039000000600110018f0000000001b10019000012470010009c00002e240000213d000000400010043f000000200030008c00002e220000413d00000000010b0433000012380010009c00002e220000213d000000000001042d0000000001000019000048d0000104300000125501000041000000000010043f0000004101000039000000040010043f0000125601000041000048d0000104300000001f0530018f0000123706300198000000400200043d000000000462001900002e350000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002e310000c13d000000000005004b00002e420000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000012350020009c00001235020080410000004002200210000000000112019f000048d0000104300000001f0530018f0000123706300198000000400200043d000000000462001900002e530000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002e4f0000c13d000000000005004b00002e600000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000012350020009c00001235020080410000004002200210000000000121019f000048d0000104300001000000000002000100000002001d0000123801100197000000000010043f0000000501000039000000200010043f0000000001000414000012350010009c0000123501008041000000c00110021000001241011001c7000080100200003948ce48c90000040f000000010020019000002e990000613d000000000101043b00000001020000290000123802200197000100000002001d000000000020043f000000200010043f0000000001000414000012350010009c0000123501008041000000c00110021000001241011001c7000080100200003948ce48c90000040f000000010020019000002e990000613d000000000101043b000000000101041a000000ff0110019000002e890000613d000000000001042d0000000701000039000000000201041a000012ad0020019800002e970000613d0000000801200270000012380110019800002e930000c13d000000ff0020019000000000010000190000124001006041000000010010006b00000000010000390000000101006039000000000001042d0000000001000019000000000001042d0000000001000019000048d0000104300000006004100210000000400100043d0000002003100039000000000043043500000034041000390000000000240435000000340200003900000000002104350000130d0010009c00002ebb0000813d0000006002100039000000400020043f000012350030009c000012350300804100000040023002100000000001010433000012350010009c00001235010080410000006001100210000000000121019f0000000002000414000012350020009c0000123502008041000000c002200210000000000112019f00001249011001c7000080100200003948ce48c90000040f000000010020019000002ec10000613d000000000101043b000000000001042d0000125501000041000000000010043f0000004101000039000000040010043f0000125601000041000048d0000104300000000001000019000048d00001043000020000000000020000000102000039000000000202041a000000400b00043d000012c00300004100000000003b04350000000403b000390000131104000041000000000043043500001238051001970000002401b000390000000000510435000000000100041400000008022002700000123802200197000000040020008c00002ed90000c13d0000000103000031000000200030008c0000002004000039000000000403401900002f060000013d000100000005001d0000123500b0009c000012350300004100000000030b40190000004003300210000012350010009c0000123501008041000000c001100210000000000131019f00001246011001c700020000000b001d48ce48c90000040f000000020b00002900000060031002700000123503300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900002ef50000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00002ef10000c13d000000000006004b00002f020000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000000010020019000002f2b0000613d00000001050000290000001f01400039000000600210018f0000000001b20019000000000021004b00000000020000390000000102004039000012470010009c00002f1e0000213d000000010020019000002f1e0000c13d000000400010043f0000001f0030008c00002f1c0000a13d00000000010b0433000000000001004b0000000002000039000000010200c039000000000021004b00002f1c0000c13d000000000001004b00002f240000613d000000000001042d0000000001000019000048d0000104300000125501000041000000000010043f0000004101000039000000040010043f0000125601000041000048d000010430000012c501000041000000000010043f000000040050043f0000131101000041000000240010043f0000124601000041000048d0000104300000001f0530018f0000123706300198000000400200043d000000000462001900002f360000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002f320000c13d000000000005004b00002f430000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000012350020009c00001235020080410000004002200210000000000112019f000048d00001043000020000000000020000000102000039000000000202041a000000400b00043d000012c00300004100000000003b04350000000403b00039000012c104000041000000000043043500001238051001970000002401b000390000000000510435000000000100041400000008022002700000123802200197000000040020008c00002f5f0000c13d0000000103000031000000200030008c0000002004000039000000000403401900002f8c0000013d000100000005001d0000123500b0009c000012350300004100000000030b40190000004003300210000012350010009c0000123501008041000000c001100210000000000131019f00001246011001c700020000000b001d48ce48c90000040f000000020b00002900000060031002700000123503300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900002f7b0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00002f770000c13d000000000006004b00002f880000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000000010020019000002fb10000613d00000001050000290000001f01400039000000600210018f0000000001b20019000000000021004b00000000020000390000000102004039000012470010009c00002fa40000213d000000010020019000002fa40000c13d000000400010043f0000001f0030008c00002fa20000a13d00000000010b0433000000000001004b0000000002000039000000010200c039000000000021004b00002fa20000c13d000000000001004b00002faa0000613d000000000001042d0000000001000019000048d0000104300000125501000041000000000010043f0000004101000039000000040010043f0000125601000041000048d000010430000012c501000041000000000010043f000000040050043f000012c101000041000000240010043f0000124601000041000048d0000104300000001f0530018f0000123706300198000000400200043d000000000462001900002fbc0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002fb80000c13d000000000005004b00002fc90000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000012350020009c00001235020080410000004002200210000000000112019f000048d00001043000020000000000020000000102000039000000000202041a000000400b00043d000012c00300004100000000003b04350000000403b00039000012e204000041000000000043043500001238051001970000002401b000390000000000510435000000000100041400000008022002700000123802200197000000040020008c00002fe50000c13d0000000103000031000000200030008c00000020040000390000000004034019000030120000013d000100000005001d0000123500b0009c000012350300004100000000030b40190000004003300210000012350010009c0000123501008041000000c001100210000000000131019f00001246011001c700020000000b001d48ce48c90000040f000000020b00002900000060031002700000123503300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000030010000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00002ffd0000c13d000000000006004b0000300e0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0000000100200190000030370000613d00000001050000290000001f01400039000000600210018f0000000001b20019000000000021004b00000000020000390000000102004039000012470010009c0000302a0000213d00000001002001900000302a0000c13d000000400010043f0000001f0030008c000030280000a13d00000000010b0433000000000001004b0000000002000039000000010200c039000000000021004b000030280000c13d000000000001004b000030300000613d000000000001042d0000000001000019000048d0000104300000125501000041000000000010043f0000004101000039000000040010043f0000125601000041000048d000010430000012c501000041000000000010043f000000040050043f000012e201000041000000240010043f0000124601000041000048d0000104300000001f0530018f0000123706300198000000400200043d0000000004620019000030420000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000303e0000c13d000000000005004b0000304f0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000012350020009c00001235020080410000004002200210000000000112019f000048d0000104300001000000000002000000400b00043d0000000101000039000000000201041a000000ff00200190000030aa0000c13d000012e30100004100000000001b0435000000000100041400000008022002700000123802200197000000040020008c000030670000c13d0000000103000031000000200030008c00000020040000390000000004034019000030920000013d0000123500b0009c000012350300004100000000030b40190000004003300210000012350010009c0000123501008041000000c001100210000000000131019f000012b0011001c700010000000b001d48ce48c90000040f000000010b00002900000060031002700000123503300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000030820000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b0000307e0000c13d000000000006004b0000308f0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0000000100200190000030c10000613d0000001f01400039000000600210018f0000000001b20019000000000021004b00000000020000390000000102004039000012470010009c000030bb0000213d0000000100200190000030bb0000c13d000000400010043f0000001f0030008c000030a80000a13d00000000020b0433000000000002004b0000000003000039000000010300c039000000000032004b000030a80000c13d000000000002004b000030ab0000c13d000000000001042d0000000001000019000048d00001043000000000010b00190000004402100039000012e403000041000000000032043500000024021000390000001003000039000000000032043500001250020000410000000000210435000000040210003900000020030000390000000000320435000012350010009c0000123501008041000000400110021000001251011001c7000048d0000104300000125501000041000000000010043f0000004101000039000000040010043f0000125601000041000048d0000104300000001f0530018f0000123706300198000000400200043d0000000004620019000030cc0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000030c80000c13d000000000005004b000030d90000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000012350020009c00001235020080410000004002200210000000000112019f000048d0000104300014000000000002000400000003001d000500000002001d000200000001001d0000000101000039000000000201041a000000400c00043d000012b60100004100000000001c04350000000401c00039000012b7030000410000000000310435000000000100041400000008022002700000123802200197000000040020008c000030f50000c13d0000000103000031000000200030008c00000020040000390000000004034019000031200000013d0000123500c0009c000012350300004100000000030c40190000004003300210000012350010009c0000123501008041000000c001100210000000000131019f00001256011001c700120000000c001d48ce48c90000040f000000120c00002900000060031002700000123503300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c0019000031100000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b0000310c0000c13d000000000006004b0000311d0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0000000100200190000039040000613d0000001f01400039000000600110018f000000000bc1001900000000001b004b000000000200003900000001020040390000124700b0009c000039ed0000213d0000000100200190000039ed0000c13d0000004000b0043f0000001f0030008c000038440000a13d00000000020c0433000012380020009c000038440000213d0000000204000039000000000404041a0000004405b000390000130e0600004100000000006504350000002405b0003900000005060000290000000000650435000012d90500004100000000005b04350000000405b0003900000000004504350000000004000414000000040020008c0000316c0000613d0000123500b0009c000012350100004100000000010b40190000004001100210000012350040009c0000123504008041000000c003400210000000000113019f00001251011001c700120000000b001d48ce48c90000040f000000120b00002900000060031002700000123503300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b00190000315a0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000031560000c13d000000000006004b000031670000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0000000100200190000039100000613d0000001f01400039000000600110018f000000000db100190000124700d0009c000039ed0000213d0000004000d0043f000000200030008c000038440000413d00000000010b0433001200000001001d0000000101000039000000000201041a000012b60100004100000000001d04350000000401d00039000012b7040000410000000000410435000000000100041400000008022002700000123802200197000000040020008c000031820000c13d0000002004000039000031ad0000013d0000123500d0009c000012350300004100000000030d40190000004003300210000012350010009c0000123501008041000000c001100210000000000131019f00001256011001c700110000000d001d48ce48c90000040f000000110d00002900000060031002700000123503300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057d00190000319d0000613d000000000801034f00000000090d0019000000008a08043c0000000009a90436000000000059004b000031990000c13d000000000006004b000031aa0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00000001002001900000391c0000613d0000001f01400039000000600110018f000000000cd100190000124700c0009c000039ed0000213d0000004000c0043f000000200030008c000038440000413d00000000020d0433000012380020009c000038440000213d0000000204000039000000000404041a0000004405c000390000130f0600004100000000006504350000002405c0003900000005060000290000000000650435000012d90500004100000000005c04350000000405c0003900000000004504350000000004000414000000040020008c000031f40000613d0000123500c0009c000012350100004100000000010c40190000004001100210000012350040009c0000123504008041000000c003400210000000000113019f00001251011001c700110000000c001d48ce48c90000040f000000110c00002900000060031002700000123503300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c0019000031e20000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b000031de0000c13d000000000006004b000031ef0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0000000100200190000039280000613d0000001f01400039000000600110018f000000000bc100190000124700b0009c000039ed0000213d0000004000b0043f000000200030008c000038440000413d00000000010c0433000000040010002a0000001204000029000039c50000413d0000000401100029000000000041004b000038e50000213d0000000101000039000000000201041a000012b60100004100000000001b04350000000401b00039000012b7040000410000000000410435000000000100041400000008022002700000123802200197000000040020008c0000320f0000c13d00000020040000390000323a0000013d0000123500b0009c000012350300004100000000030b40190000004003300210000012350010009c0000123501008041000000c001100210000000000131019f00001256011001c700120000000b001d48ce48c90000040f000000120b00002900000060031002700000123503300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b00190000322a0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000032260000c13d000000000006004b000032370000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0000000100200190000039340000613d0000001f01400039000000600110018f000000000cb100190000124700c0009c000039ed0000213d0000004000c0043f000000200030008c000038440000413d00000000020b0433000012380020009c000038440000213d0000000204000039000000000404041a0000004405c000390000130f0600004100000000006504350000002405c0003900000005060000290000000000650435000012d90500004100000000005c04350000000405c0003900000000004504350000000004000414000000040020008c000032810000613d0000123500c0009c000012350100004100000000010c40190000004001100210000012350040009c0000123504008041000000c003400210000000000113019f00001251011001c700120000000c001d48ce48c90000040f000000120c00002900000060031002700000123503300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c00190000326f0000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b0000326b0000c13d000000000006004b0000327c0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0000000100200190000039400000613d0000001f01400039000000600110018f000000000bc100190000124700b0009c000039ed0000213d0000004000b0043f000000200030008c000038440000413d00000000020c0433001200000002001d000000040020002a000039c50000413d0000000101000039000000000201041a000012b60100004100000000001b04350000000401b00039000012b7040000410000000000410435000000000100041400000008022002700000123802200197000000040020008c000032990000c13d0000002004000039000032c40000013d0000123500b0009c000012350300004100000000030b40190000004003300210000012350010009c0000123501008041000000c001100210000000000131019f00001256011001c700110000000b001d48ce48c90000040f000000110b00002900000060031002700000123503300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000032b40000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000032b00000c13d000000000006004b000032c10000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00000001002001900000394c0000613d0000001f01400039000000600110018f0000000001b10019000012470010009c000039ed0000213d000000400010043f000000200030008c000038440000413d00000000020b0433000012380020009c000038440000213d0000000201000039000000000101041a001000000001001d00001243010000410000000000100443001100000002001d00000004002004430000000001000414000012350010009c0000123501008041000000c00110021000001244011001c7000080020200003948ce48c90000040f00000001002001900000384c0000613d000000000101043b000000000001004b0000001105000029000038440000613d00000012020000290000000401200029000000400300043d0000006402300039000000000012043500000044013000390000130f0200004100000000002104350000002401300039000000050200002900000000002104350000000002030019000012e10100004100000000041304360000000401300039000000100300002900000000003104350000000001000414000000040050008c000100000004001d000300000002001d0000330a0000613d000012350020009c000012350200004100000003020040290000004002200210000012350010009c0000123501008041000000c001100210000000000121019f00001254011001c7000000000205001948ce48c40000040f00000001040000290000006003100270000112350030019d00000001002001900000000302000029000039580000613d000012470020009c000039ed0000213d0000000301000029000000400010043f0000123a0010009c000039ed0000213d000000400040043f00000003010000290000000000010435000000400300043d0000000201000029000612380010019c000038eb0000613d000a00000003001d0000124b0030009c000039ed0000213d0000000a020000290000004001200039000000400010043f000000010100003900000000021204360000000501000029000900000002001d0000000000120435000000400100043d000e00000001001d0000124b0010009c000039ed0000213d0000000e020000290000004001200039000000400010043f000000010100003900000000021204360000000401000029000800000002001d00000000001204350000000a010000290000000001010433000000000001004b000033390000613d000000010210008c0000000003000039000000010300c039000000000002004b000038460000c13d000000000032004b000033350000c13d0000000b02000039000000000202041a0000123802200198000033960000613d00001243010000410000000000100443001200000002001d00000004002004430000000001000414000012350010009c0000123501008041000000c00110021000001244011001c7000080020200003948ce48c90000040f00000001002001900000384c0000613d000000000101043b000000000001004b000038440000613d000000400600043d0000006401600039000000a002000039000000000021043500000044016000390000000602000029000000000021043500001312010000410000000000160435000000040160003900000000020004100000000000210435000000240160003900000000000104350000000a040000290000000002040433000000a4016000390000000000210435000000c401600039000000000002004b000033690000613d00000000030000190000002004400039000000000504043300000000015104360000000103300039000000000023004b000033630000413d0000000002610049000000040220008a000000840360003900000000002304350000000e0400002900000000020404330000000001210436000000000002004b000033790000613d00000000030000190000002004400039000000000504043300000000015104360000000103300039000000000023004b000033730000413d00000000040004140000001202000029000000040020008c000033910000613d0000000001610049000012350010009c00001235010080410000006001100210000012350060009c000012350300004100000000030640190000004003300210000000000131019f000012350040009c0000123504008041000000c003400210000000000131019f001200000006001d48ce48c40000040f00000012060000290000006003100270000112350030019d0000000100200190000039650000613d000012470060009c000039ed0000213d000000400060043f0000000a010000290000000001010433000000000001004b0000000a03000029000037230000613d000000400a00043d000000020100002900070060001002180000000004000019000033a80000013d0000124700a0009c000039ed0000213d0000004000a0043f0000000a03000029000000000103043300000010040000290000000104400039000000000014004b0000000e02000029000037080000813d001000000004001d0000000502400210001200000002001d00000009012000290000000001010433001100000001001d0000000101000039000000000201041a000012b60100004100000000001a04350000000401a00039000012b7030000410000000000310435000000000100041400000008022002700000123802200197000000040020008c000033bf0000c13d0000000103000031000000200030008c00000020040000390000000004034019000033e90000013d0000123500a0009c000012350300004100000000030a40190000004003300210000012350010009c0000123501008041000000c001100210000000000131019f00001256011001c7000f0000000a001d48ce48c90000040f0000000f0a00002900000060031002700000123503300197000000200030008c00000020040000390000000004034019000000200640019000000000056a0019000033d90000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000058004b000033d50000c13d0000001f07400190000033e60000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000100000003001f00000001002001900000384d0000613d0000001f01400039000000600110018f000000000ba1001900000000001b004b000000000200003900000001020040390000124700b0009c000039ed0000213d0000000100200190000039ed0000c13d0000004000b0043f000000200030008c000038440000413d00000000020a0433000012380020009c000038440000213d0000000204000039000000000404041a0000004405b00039000012e80600004100000000006504350000002405b0003900000011060000290000000000650435000012ca0500004100000000005b04350000000405b0003900000000004504350000000004000414000000040020008c000034340000613d0000123500b0009c000012350100004100000000010b40190000004001100210000012350040009c0000123504008041000000c003400210000000000113019f00001251011001c7000f0000000b001d48ce48c90000040f0000000f0b00002900000060031002700000123503300197000000200030008c00000020040000390000000004034019000000200640019000000000056b0019000034220000613d000000000701034f00000000080b0019000000007907043c0000000008980436000000000058004b0000341e0000c13d0000001f074001900000342f0000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000100000003001f00000001002001900000387d0000613d0000001f01400039000000600110018f0000000001b10019000012470010009c000039ed0000213d000000400010043f000000200030008c000038440000413d00000000020b0433000000000002004b0000000003000039000000010300c039000000000032004b000038440000c13d0000000e020000290000000002020433000000100020006c000038460000a13d000000120300002900000008023000290000000002020433000f00000002001d00000020021000390000000703000029000000000032043500000034031000390000001104000029000000000043043500000034030000390000000000310435000012ed0010009c000039ed0000213d0000006003100039000000400030043f000012350020009c000012350200804100000040022002100000000001010433000012350010009c00001235010080410000006001100210000000000121019f0000000002000414000012350020009c0000123502008041000000c002200210000000000112019f00001249011001c7000080100200003948ce48c90000040f0000000100200190000038440000613d000000000101043b001200000001001d0000000101000039000000000201041a000000400b00043d000012b60100004100000000001b04350000000401b00039000012b7030000410000000000310435000000000100041400000008022002700000123802200197000000040020008c0000347a0000c13d0000000103000031000000200030008c00000020040000390000000004034019000034a40000013d0000123500b0009c000012350300004100000000030b40190000004003300210000012350010009c0000123501008041000000c001100210000000000131019f00001256011001c7000d0000000b001d48ce48c90000040f0000000d0b00002900000060031002700000123503300197000000200030008c00000020040000390000000004034019000000200640019000000000056b0019000034940000613d000000000701034f00000000080b0019000000007907043c0000000008980436000000000058004b000034900000c13d0000001f07400190000034a10000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000100000003001f0000000100200190000038590000613d0000001f01400039000000600110018f000000000ab1001900000000001a004b000000000200003900000001020040390000124700a0009c000039ed0000213d0000000100200190000039ed0000c13d0000004000a0043f000000200030008c000038440000413d00000000020b0433000012380020009c000038440000213d0000000204000039000000000404041a0000004405a00039000012ee0600004100000000006504350000002405a0003900000012060000290000000000650435000012d90500004100000000005a04350000000405a0003900000000004504350000000004000414000000040020008c000034ef0000613d0000123500a0009c000012350100004100000000010a40190000004001100210000012350040009c0000123504008041000000c003400210000000000113019f00001251011001c7000d0000000a001d48ce48c90000040f0000000d0a00002900000060031002700000123503300197000000200030008c00000020040000390000000004034019000000200640019000000000056a0019000034dd0000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000058004b000034d90000c13d0000001f07400190000034ea0000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000100000003001f0000000100200190000038890000613d0000001f01400039000000600110018f000000000ba100190000124700b0009c000039ed0000213d0000004000b0043f000000200030008c000038440000413d00000000020a0433000d00000002001d0000000f0020002a000039c50000413d0000000101000039000000000201041a000012b60100004100000000001b04350000000401b00039000012b7040000410000000000410435000000000100041400000008022002700000123802200197000000040020008c0000002004000039000035300000613d0000123500b0009c000012350300004100000000030b40190000004003300210000012350010009c0000123501008041000000c001100210000000000131019f00001256011001c7000c0000000b001d48ce48c90000040f0000000c0b00002900000060031002700000123503300197000000200030008c00000020040000390000000004034019000000200640019000000000056b0019000035200000613d000000000701034f00000000080b0019000000007907043c0000000008980436000000000058004b0000351c0000c13d0000001f074001900000352d0000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000100000003001f0000000100200190000038650000613d0000001f01400039000000600110018f0000000001b10019000012470010009c000039ed0000213d000000400010043f000000200030008c000038440000413d00000000020b0433000012380020009c000038440000213d0000000201000039000000000101041a000b00000001001d00001243010000410000000000100443000c00000002001d00000004002004430000000001000414000012350010009c0000123501008041000000c00110021000001244011001c7000080020200003948ce48c90000040f00000001002001900000384c0000613d000000000101043b000000000001004b0000000c03000029000038440000613d0000000d020000290000000f01200029000000400a00043d0000006402a0003900000000001204350000004401a00039000012ee0200004100000000002104350000002401a0003900000012020000290000000000210435000012e10100004100000000001a04350000000404a000390000000b0100002900000000001404350000000001000414000000040030008c000f0000000a001d000035750000613d0000123500a0009c000012350200004100000000020a40190000004002200210000012350010009c0000123501008041000000c001100210000000000121019f00001254011001c70000000002030019000d00000004001d48ce48c40000040f0000000d040000290000000f0a0000290000006003100270000112350030019d0000000100200190000038950000613d0000124700a0009c000039ed0000213d0000004000a0043f0000000101000039000000000201041a000012b60100004100000000001a0435000012b7010000410000000000140435000000000100041400000008022002700000123802200197000000040020008c000035880000c13d0000000103000031000000200030008c00000020040000390000000004034019000035b10000013d0000123500a0009c000012350300004100000000030a40190000004003300210000012350010009c0000123501008041000000c001100210000000000131019f00001256011001c748ce48c90000040f0000000f0a00002900000060031002700000123503300197000000200030008c00000020040000390000000004034019000000200640019000000000056a0019000035a10000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000058004b0000359d0000c13d0000001f07400190000035ae0000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000100000003001f0000000100200190000038710000613d0000001f01400039000000600110018f000000000ba100190000124700b0009c000039ed0000213d0000004000b0043f000000200030008c000038440000413d00000000020a0433000012380020009c000038440000213d0000000204000039000000000404041a0000004405b00039000013130600004100000000006504350000002405b0003900000012060000290000000000650435000012d80500004100000000005b04350000000405b0003900000000004504350000000004000414000000040020008c000035f70000613d0000123500b0009c000012350100004100000000010b40190000004001100210000012350040009c0000123504008041000000c003400210000000000113019f00001251011001c7000f0000000b001d48ce48c90000040f0000000f0b00002900000060031002700000123503300197000000200030008c00000020040000390000000004034019000000200640019000000000056b0019000035e50000613d000000000701034f00000000080b0019000000007907043c0000000008980436000000000058004b000035e10000c13d0000001f07400190000035f20000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000100000003001f0000000100200190000038a20000613d0000001f01400039000000600110018f000000000ab100190000124700a0009c000039ed0000213d0000004000a0043f000000200030008c000038440000413d00000000010b0433000012380010009c000038440000213d000000000001004b000033a10000c13d0000000101000039000000000201041a000012b60100004100000000001a04350000000401a00039000012b7030000410000000000310435000000000100041400000008022002700000123802200197000000040020008c0000002004000039000036390000613d0000123500a0009c000012350300004100000000030a40190000004003300210000012350010009c0000123501008041000000c001100210000000000131019f00001256011001c7000f0000000a001d48ce48c90000040f0000000f0a00002900000060031002700000123503300197000000200030008c00000020040000390000000004034019000000200640019000000000056a0019000036290000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000058004b000036250000c13d0000001f07400190000036360000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000100000003001f0000000100200190000038ae0000613d0000001f01400039000000600110018f0000000001a10019000012470010009c000039ed0000213d000000400010043f000000200040008c000038440000413d00000000020a0433000012380020009c000038440000213d0000000201000039000000000101041a000d00000001001d00001243010000410000000000100443000f00000002001d00000004002004430000000001000414000012350010009c0000123501008041000000c00110021000001244011001c7000080020200003948ce48c90000040f00000001002001900000384c0000613d000000000101043b000000000001004b0000000f03000029000038440000613d000000400a00043d0000006401a00039000000060200002900000000002104350000004401a00039000013130200004100000000002104350000002401a0003900000012020000290000000000210435000012de0100004100000000001a04350000000404a000390000000d0100002900000000001404350000000001000414000000040030008c000c0000000a001d0000367d0000613d0000123500a0009c000012350200004100000000020a40190000004002200210000012350010009c0000123501008041000000c001100210000000000121019f00001254011001c70000000002030019000f00000004001d48ce48c40000040f0000000f040000290000000c0a0000290000006003100270000112350030019d0000000100200190000038ba0000613d0000124700a0009c000039ed0000213d0000004000a0043f0000000101000039000000000201041a000012b60100004100000000001a0435000012b7010000410000000000140435000000000100041400000008022002700000123802200197000000040020008c000036900000c13d0000000103000031000000200030008c00000020040000390000000004034019000036b90000013d0000123500a0009c000012350300004100000000030a40190000004003300210000012350010009c0000123501008041000000c001100210000000000131019f00001256011001c748ce48c90000040f0000000c0a00002900000060031002700000123503300197000000200030008c00000020040000390000000004034019000000200640019000000000056a0019000036a90000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000058004b000036a50000c13d0000001f07400190000036b60000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000100000003001f0000000100200190000038c70000613d0000001f01400039000000600110018f0000000001a10019000012470010009c000039ed0000213d000000400010043f000000200030008c000038440000413d00000000020a0433000012380020009c000038440000213d0000000201000039000000000101041a000d00000001001d00001243010000410000000000100443000f00000002001d00000004002004430000000001000414000012350010009c0000123501008041000000c00110021000001244011001c7000080020200003948ce48c90000040f00000001002001900000384c0000613d000000000101043b000000000001004b0000000f03000029000038440000613d000000400a00043d0000006401a00039000000110200002900000000002104350000004401a00039000012e00200004100000000002104350000002401a0003900000012020000290000000000210435000012e10100004100000000001a04350000000401a000390000000d0200002900000000002104350000000001000414000000040030008c0000339e0000613d0000123500a0009c000012350200004100000000020a40190000004002200210000012350010009c0000123501008041000000c001100210000000000121019f00001254011001c70000000002030019000f0000000a001d48ce48c40000040f0000000f0a0000290000006003100270000112350030019d00000001002001900000339e0000c13d00001235033001970000001f0530018f0000123706300198000000400200043d0000000004620019000038d20000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000037030000c13d000038d20000013d000000010010008c000037230000c13d0000000001020433000000000001004b000038460000613d0000000901000029000000000101043300000008020000290000000002020433000000400300043d000000200430003900000000002404350000000000130435000012350030009c000012350300804100000040013002100000000002000414000012350020009c0000123502008041000000c002200210000000000112019f00001241011001c70000800d0200003900000004030000390000000005000411000012ae04000041000037540000013d000000400100043d0000004002000039000000000221043600000000040304330000000006030019000000400310003900000000004304350000006003100039000000000004004b000037340000613d00000000050000190000002006600039000000000706043300000000037304360000000105500039000000000045004b0000372e0000413d0000000005000411000000000413004900000000004204350000000e0600002900000000040604330000000002430436000000000004004b000037430000613d00000000030000190000002006600039000000000706043300000000027204360000000103300039000000000043004b0000373d0000413d0000000002120049000012350020009c00001235020080410000006002200210000012350010009c00001235010080410000004001100210000000000112019f0000000002000414000012350020009c0000123502008041000000c002200210000000000121019f00001249011001c70000800d020000390000000403000039000012f6040000410000000006000019000000060700002948ce48c40000040f0000000100200190000038440000613d00000004010000390000000502000029000000000020043f000000200010043f0000000001000414000012350010009c0000123501008041000000c00110021000001241011001c7000080100200003948ce48c90000040f0000000100200190000038440000613d000000000101043b0000000602000029000000000020043f000000200010043f0000000001000414000012350010009c0000123501008041000000c00110021000001241011001c7000080100200003948ce48c90000040f0000000100200190000038440000613d000000000101043b000000000201041a000000040020002a000039c50000413d000000000500041100000004030000290000000002320019000000000021041b000000400100043d0000002002100039000000000032043500000005020000290000000000210435000012350010009c000012350100804100000040011002100000000002000414000012350020009c0000123502008041000000c002200210000000000112019f00001241011001c70000800d020000390000000403000039000012ae040000410000000006000019000000060700002948ce48c40000040f0000000100200190000038440000613d0000000a010000290000000001010433000000000001004b0000000e020000290000379a0000613d000000010110008a0000000002020433000000000012004b000038460000a13d00001243010000410000000000100443000000020100002900000004001004430000000001000414000012350010009c0000123501008041000000c00110021000001244011001c7000080020200003948ce48c90000040f00000001002001900000384c0000613d000000000101043b000000000001004b0000000109000029000038430000613d000000400b00043d0000008401b00039000000a00200003900000000002104350000006401b00039000000040200002900000000002104350000004401b0003900000005020000290000000000210435000012b10100004100000000001b04350000000401b00039000000000200041100000000002104350000002401b00039000000000001043500000003010000290000000001010433000000a402b000390000000000120435000000200a00008a0000000004a1016f0000001f0310018f000000c402b00039000000000029004b000037d60000813d000000000004004b000037d20000613d00000000063900190000000005320019000000200550008a000000200660008a0000000007450019000000000846001900000000080804330000000000870435000000200440008c000037cc0000c13d000000000003004b000037ec0000613d0000000005020019000037e20000013d0000000005420019000000000004004b000037df0000613d0000000006090019000000000702001900000000680604340000000007870436000000000057004b000037db0000c13d000000000003004b000037ec0000613d00000000094900190000000303300210000000000405043300000000043401cf000000000434022f00000000060904330000010003300089000000000636022f00000000033601cf000000000343019f00000000003504350000000002210019000000000002043500000000040004140000000602000029000000040020008c000037f70000c13d0000000004000415000000140440008a000000050440021000000001030000310000382b0000013d0000001f011000390000000001a1016f000000c401100039000012350010009c000012350100804100000060011002100000123500b0009c000012350300004100000000030b40190000004003300210000000000131019f000012350040009c0000123504008041000000c003400210000000000131019f00120000000b001d48ce48c40000040f000000120b00002900000060031002700000123503300197000000200030008c000000200400003900000000040340190000001f0540018f000000200640019000000000046b0019000038180000613d000000000701034f00000000080b0019000000007907043c0000000008980436000000000048004b000038140000c13d000000000005004b000038250000613d000000000661034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000100000003001f0000000004000415000000130440008a00000005044002100000000100200190000039800000613d000000200030008c000000200100003900000000010340190000001f01100039000000600110018f0000000005b10019000000000015004b00000000010000390000000101004039000012470050009c000039ed0000213d0000000100100190000039ed0000c13d000000400050043f000000200030008c000038440000413d00000000010b0433000012b200100198000038440000c13d0000000502400270000000000201001f000012b301100197000012b10010009c000038fe0000c13d000000000001042d0000000001000019000048d0000104300000125501000041000000000010043f0000003201000039000000040010043f0000125601000041000048d000010430000000000001042f0000001f0530018f0000123706300198000000400200043d0000000004620019000038d20000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000038540000c13d000038d20000013d0000001f0530018f0000123706300198000000400200043d0000000004620019000038d20000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000038600000c13d000038d20000013d0000001f0530018f0000123706300198000000400200043d0000000004620019000038d20000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000386c0000c13d000038d20000013d0000001f0530018f0000123706300198000000400200043d0000000004620019000038d20000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000038780000c13d000038d20000013d0000001f0530018f0000123706300198000000400200043d0000000004620019000038d20000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000038840000c13d000038d20000013d0000001f0530018f0000123706300198000000400200043d0000000004620019000038d20000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000038900000c13d000038d20000013d00001235033001970000001f0530018f0000123706300198000000400200043d0000000004620019000038d20000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000389d0000c13d000038d20000013d0000001f0530018f0000123706300198000000400200043d0000000004620019000038d20000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000038a90000c13d000038d20000013d0000001f0530018f0000123706300198000000400200043d0000000004620019000038d20000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000038b50000c13d000038d20000013d00001235033001970000001f0530018f0000123706300198000000400200043d0000000004620019000038d20000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000038c20000c13d000038d20000013d0000001f0530018f0000123706300198000000400200043d0000000004620019000038d20000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000038ce0000c13d000000000005004b000038df0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000012350020009c00001235020080410000004002200210000000000112019f000048d0000104300000131602000041000000000020043f000000040010043f000000240040043f0000124601000041000048d00001043000000064013000390000131402000041000000000021043500000044013000390000131502000041000000000021043500000024013000390000002102000039000000000021043500001250010000410000000000130435000000040130003900000020020000390000000000210435000012350030009c0000123503008041000000400130021000001254011001c7000048d000010430000012500100004100000000001504350000000401500039001200000005001d48ce48a90000040f000039bb0000013d0000001f0530018f0000123706300198000000400200043d0000000004620019000038d20000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000390b0000c13d000038d20000013d0000001f0530018f0000123706300198000000400200043d0000000004620019000038d20000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000039170000c13d000038d20000013d0000001f0530018f0000123706300198000000400200043d0000000004620019000038d20000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000039230000c13d000038d20000013d0000001f0530018f0000123706300198000000400200043d0000000004620019000038d20000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000392f0000c13d000038d20000013d0000001f0530018f0000123706300198000000400200043d0000000004620019000038d20000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000393b0000c13d000038d20000013d0000001f0530018f0000123706300198000000400200043d0000000004620019000038d20000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000039470000c13d000038d20000013d0000001f0530018f0000123706300198000000400200043d0000000004620019000039710000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000039530000c13d000039710000013d00001235033001970000001f0530018f0000123706300198000000400200043d0000000004620019000039710000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000039600000c13d000039710000013d00001235033001970000001f0530018f0000123706300198000000400200043d0000000004620019000039710000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000396d0000c13d000000000005004b0000397e0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000039c00000013d000000040230008c000039b50000413d000000000400043d000012b204400197000000000501043b000012b305500197000000000445019f000000000040043f000000440030008c000039b50000413d000012b304400197000012500040009c000039b50000c13d00000004051003700000130a062001980000001f0720018f000000400400043d0000000001640019000039990000613d000000000805034f0000000009040019000000008a08043c0000000009a90436000000000019004b000039950000c13d000000000007004b000039a60000613d000000000565034f0000000306700210000000000701043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f00000000005104350000000005040433000012470050009c000039b50000213d0000002401500039000000000031004b000039b50000213d00000000014500190000000003010433000012470030009c000039b50000213d000000000224001900000000063100190000002006600039000000000026004b000039cb0000a13d000000400200043d001200000002001d00001250010000410000000000120435000000040120003948ce48b60000040f00000012020000290000000001210049000012350010009c00001235010080410000006001100210000012350020009c00001235020080410000004002200210000000000121019f000048d0000104300000125501000041000000000010043f0000001101000039000000040010043f0000125601000041000048d00001043000000000023500190000003f022000390000130a022001970000000004420019000000000024004b00000000020000390000000102004039000012470040009c000039ed0000213d0000000100200190000039ed0000c13d0000000003040019000000400040043f000000000001004b000039b50000613d00001250020000410000000004030019001200000003001d0000000000230435000000040230003900000020030000390000000000320435000000240240003948ce282e0000040f00000012020000290000000001210049000012350010009c0000123501008041000012350020009c000012350200804100000060011002100000004002200210000000000121019f000048d0000104300000125501000041000000000010043f0000004101000039000000040010043f0000125601000041000048d0000104300006000000000002000300000001001d000400000002001d0000000021020434000200000002001d000500000003001d0000000032030434000100000003001d000000000021004b00003a190000c13d000000000001004b00003a120000613d000000000200001900000005010000290000000001010433000000000021004b00003a130000a13d0000000501200210000600000002001d0000000202100029000000010110002900000000030104330000000002020433000000030100002948ce30df0000040f0000000602000029000000010220003900000004010000290000000001010433000000000012004b00003a000000413d000000000001042d0000125501000041000000000010043f0000003201000039000000040010043f0000125601000041000048d000010430000000400100043d0000006402100039000012e50300004100000000003204350000004402100039000012e603000041000000000032043500000024021000390000002903000039000000000032043500001250020000410000000000210435000000040210003900000020030000390000000000320435000012350010009c0000123501008041000000400110021000001254011001c7000048d0000104300004000000000002000300000002001d000400000001001d0000000101000039000000000201041a000000400b00043d000012b60100004100000000001b04350000000401b00039000012b7030000410000000000310435000000000100041400000008022002700000123802200197000000040020008c00003a420000c13d0000000103000031000000200030008c0000002004000039000000000403401900003a6d0000013d0000123500b0009c000012350300004100000000030b40190000004003300210000012350010009c0000123501008041000000c001100210000000000131019f00001256011001c700020000000b001d48ce48c90000040f000000020b00002900000060031002700000123503300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900003a5d0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00003a590000c13d000000000006004b00003a6a0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000000010020019000003ac10000613d0000001f01400039000000600210018f0000000001b20019000000000021004b00000000020000390000000102004039000012470010009c00003aba0000213d000000010020019000003aba0000c13d000000400010043f0000001f0030008c00003ab80000a13d00000000020b0433000012380020009c00003ab80000213d0000000201000039000000000101041a000100000001001d00001243010000410000000000100443000200000002001d00000004002004430000000001000414000012350010009c0000123501008041000000c00110021000001244011001c7000080020200003948ce48c90000040f000000010020019000003ac00000613d000000000101043b000000000001004b000000020300002900003ab80000613d000000400400043d00000064014000390000000302000029000000000021043500000044014000390000130e020000410000000000210435000000240140003900000004020000290000000000210435000012e10100004100000000001404350000000401400039000000010200002900000000002104350000000001000414000000040030008c00003ab40000613d000012350040009c000012350200004100000000020440190000004002200210000012350010009c0000123501008041000000c001100210000000000121019f00001254011001c70000000002030019000400000004001d48ce48c40000040f00000004040000290000006003100270000112350030019d000000010020019000003acd0000613d000012470040009c00003aba0000213d000000400040043f000000000001042d0000000001000019000048d0000104300000125501000041000000000010043f0000004101000039000000040010043f0000125601000041000048d000010430000000000001042f0000001f0530018f0000123706300198000000400200043d000000000462001900003ad90000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00003ac80000c13d00003ad90000013d00001235033001970000001f0530018f0000123706300198000000400200043d000000000462001900003ad90000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00003ad50000c13d000000000005004b00003ae60000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000012350020009c00001235020080410000004002200210000000000112019f000048d000010430000d000000000002000500000003001d000d00000001001d0000006003100210000000400100043d0000002004100039000600000003001d00000000003404350000003403100039000400000002001d0000000000230435000000340200003900000000002104350000130d0010009c00003fc80000813d0000006003100039000000400030043f000012350040009c000012350400804100000040024002100000000001010433000012350010009c00001235010080410000006001100210000000000121019f0000000002000414000012350020009c0000123502008041000000c002200210000000000112019f00001249011001c7000080100200003948ce48c90000040f000000010020019000003fc60000613d000000000701043b0000000101000039000000000201041a000000400b00043d000012b60100004100000000001b04350000000401b00039000012b7030000410000000000310435000000000100041400000008022002700000123802200197000000040020008c00003b220000c13d0000000103000031000000200030008c0000002004000039000000000403401900003b4f0000013d000b00000007001d0000123500b0009c000012350300004100000000030b40190000004003300210000012350010009c0000123501008041000000c001100210000000000131019f00001256011001c7000c0000000b001d48ce48c90000040f0000000c0b00002900000060031002700000123503300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900003b3e0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00003b3a0000c13d000000000006004b00003b4b0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0000000100200190000040680000613d0000000b070000290000001f01400039000000600110018f000000000cb1001900000000001c004b000000000200003900000001020040390000124700c0009c00003fc80000213d000000010020019000003fc80000c13d0000004000c0043f000000200030008c00003fc60000413d00000000020b0433000012380020009c00003fc60000213d0000000204000039000000000404041a0000004405c00039000012ee0600004100000000006504350000002405c000390000000000750435000012d90500004100000000005c04350000000405c0003900000000004504350000000004000414000000040020008c00003b9a0000613d0000123500c0009c000012350100004100000000010c40190000004001100210000012350040009c0000123504008041000000c003400210000000000113019f00001251011001c7000c0000000c001d48ce48c90000040f0000000c0c00002900000060031002700000123503300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c001900003b880000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b00003b840000c13d000000000006004b00003b950000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0000000100200190000040740000613d0000001f01400039000000600110018f000000000bc100190000124700b0009c00003fc80000213d0000004000b0043f000000200030008c00003fc60000413d0000000401b0003900000000020c0433000000050020006c000040360000413d0000000102000039000000000202041a000012b60400004100000000004b0435000012b7040000410000000000410435000000000100041400000008022002700000123802200197000000040020008c00003bb10000c13d000000200400003900003bdc0000013d0000123500b0009c000012350300004100000000030b40190000004003300210000012350010009c0000123501008041000000c001100210000000000131019f00001256011001c7000c0000000b001d48ce48c90000040f0000000c0b00002900000060031002700000123503300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900003bcc0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00003bc80000c13d000000000006004b00003bd90000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0000000100200190000040800000613d0000001f01400039000000600110018f000000000cb100190000124700c0009c00003fc80000213d0000004000c0043f000000200030008c00003fc60000413d00000000020b0433000012380020009c00003fc60000213d0000000204000039000000000404041a0000004405c00039000013100600004100000000006504350000002405c0003900000004060000290000000000650435000012d90500004100000000005c04350000000405c0003900000000004504350000000004000414000000040020008c00003c230000613d0000123500c0009c000012350100004100000000010c40190000004001100210000012350040009c0000123504008041000000c003400210000000000113019f00001251011001c7000c0000000c001d48ce48c90000040f0000000c0c00002900000060031002700000123503300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c001900003c110000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b00003c0d0000c13d000000000006004b00003c1e0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00000001002001900000408c0000613d0000001f01400039000000600110018f000000000bc100190000124700b0009c00003fc80000213d0000004000b0043f000000200030008c00003fc60000413d00000000020c0433000c00000002001d000000050020002a00003fd50000413d0000000101000039000000000201041a000012b60100004100000000001b04350000000401b00039000012b7040000410000000000410435000000000100041400000008022002700000123802200197000000040020008c00003c3b0000c13d000000200400003900003c660000013d0000123500b0009c000012350300004100000000030b40190000004003300210000012350010009c0000123501008041000000c001100210000000000131019f00001256011001c7000b0000000b001d48ce48c90000040f0000000b0b00002900000060031002700000123503300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900003c560000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00003c520000c13d000000000006004b00003c630000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0000000100200190000040980000613d0000001f01400039000000600110018f0000000001b10019000012470010009c00003fc80000213d000000400010043f000000200030008c00003fc60000413d00000000020b0433000012380020009c00003fc60000213d0000000201000039000000000101041a000a00000001001d00001243010000410000000000100443000b00000002001d00000004002004430000000001000414000012350010009c0000123501008041000000c00110021000001244011001c7000080020200003948ce48c90000040f000000010020019000003fce0000613d000000000101043b000000000001004b0000000b0300002900003fc60000613d0000000c020000290000000501200029000000400800043d000012e1020000410000000002280436000200000002001d0000006404800039000000000014043500000044058000390000131001000041000000000015043500000024068000390000000401000029000000000016043500000004078000390000000a0100002900000000001704350000000001000414000000040030008c000800000008001d00003cb20000613d000012350080009c000012350200004100000000020840190000004002200210000012350010009c0000123501008041000000c001100210000000000121019f00001254011001c70000000002030019000c00000004001d000b00000005001d000a00000006001d000900000007001d48ce48c40000040f000000080800002900000009070000290000000a060000290000000b050000290000000c040000290000006003100270000112350030019d0000000100200190000040a40000613d000012470080009c00003fc80000213d0000000802000029000000400020043f0000000d01000029000312380010019c000040450000613d0000124b0020009c00003fc80000213d00000008020000290000004001200039000000400010043f00000001010000390000000000120435000000040100002900000002020000290000000000120435000000400100043d000700000001001d0000124b0010009c00003fc80000213d00000007020000290000004001200039000000400010043f000000010100003900000000021204360000000501000029000100000002001d0000000000120435000000400100043d0000123a0010009c00003fc80000213d0000002002100039000000400020043f000000000001043500000008010000290000000001010433000000000001004b00003cde0000613d000000010210008a00000007030000290000000003030433000000000023004b00003fcf0000a13d0000000b02000039000000000202041a000012380220019800003d3b0000613d00001243010000410000000000100443000d00000002001d00000004002004430000000001000414000012350010009c0000123501008041000000c00110021000001244011001c7000080020200003948ce48c90000040f000000010020019000003fce0000613d000000000101043b000000000001004b00003fc60000613d000000400600043d0000006401600039000000a0020000390000000000210435000000240160003900000003020000290000000000210435000013120100004100000000001604350000000401600039000000000200041000000000002104350000004401600039000000000001043500000008040000290000000002040433000000a4016000390000000000210435000000c401600039000000000002004b00003d0e0000613d00000000030000190000002004400039000000000504043300000000015104360000000103300039000000000023004b00003d080000413d0000000002610049000000040220008a00000084036000390000000000230435000000070400002900000000020404330000000001210436000000000002004b00003d1e0000613d00000000030000190000002004400039000000000504043300000000015104360000000103300039000000000023004b00003d180000413d00000000040004140000000d02000029000000040020008c00003d360000613d0000000001610049000012350010009c00001235010080410000006001100210000012350060009c000012350300004100000000030640190000004003300210000000000131019f000012350040009c0000123504008041000000c003400210000000000131019f000d00000006001d48ce48c40000040f0000000d060000290000006003100270000112350030019d0000000100200190000040c30000613d000012470060009c00003fc80000213d000000400060043f00000008010000290000000001010433000000000001004b000000080300002900003f2d0000613d000000400a00043d0000000002000019000d00000002001d0000000501200210000b00200010003d0000000b0130002900000000070104330000000101000039000000000201041a000012b60100004100000000001a04350000000401a00039000012b7030000410000000000310435000000000100041400000008022002700000123802200197000000040020008c000c00000007001d00003d570000c13d0000000103000031000000200030008c0000002004000039000000000403401900003d820000013d0000123500a0009c000012350300004100000000030a40190000004003300210000012350010009c0000123501008041000000c001100210000000000131019f00001256011001c7000a0000000a001d48ce48c90000040f0000000a0a00002900000060031002700000123503300197000000200030008c00000020040000390000000004034019000000200640019000000000056a001900003d710000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000058004b00003d6d0000c13d0000001f0740019000003d7e0000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000100000003001f000000010020019000003fdb0000613d0000000c070000290000001f01400039000000600110018f000000000ba1001900000000001b004b000000000200003900000001020040390000124700b0009c00003fc80000213d000000010020019000003fc80000c13d0000004000b0043f000000200030008c00003fc60000413d00000000020a0433000012380020009c00003fc60000213d0000000204000039000000000404041a0000004405b00039000012e80600004100000000006504350000002405b000390000000000750435000012ca0500004100000000005b04350000000405b0003900000000004504350000000004000414000000040020008c00003dcd0000613d0000123500b0009c000012350100004100000000010b40190000004001100210000012350040009c0000123504008041000000c003400210000000000113019f00001251011001c7000a0000000b001d48ce48c90000040f0000000a0b00002900000060031002700000123503300197000000200030008c00000020040000390000000004034019000000200640019000000000056b001900003dba0000613d000000000701034f00000000080b0019000000007907043c0000000008980436000000000058004b00003db60000c13d0000001f0740019000003dc70000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000100000003001f000000010020019000003fe70000613d0000001f01400039000000600110018f0000000c070000290000000001b10019000012470010009c00003fc80000213d000000400010043f000000200030008c00003fc60000413d00000000020b0433000000000002004b0000000003000039000000010300c039000000000032004b00003fc60000c13d000000070300002900000000020304330000000d0020006c00003fcf0000a13d0000000b023000290000000002020433000b00000002001d0000002002100039000000060300002900000000003204350000003403100039000000000073043500000034030000390000000000310435000012ed0010009c00003fc80000213d0000006003100039000000400030043f000012350020009c000012350200804100000040022002100000000001010433000012350010009c00001235010080410000006001100210000000000121019f0000000002000414000012350020009c0000123502008041000000c002200210000000000112019f00001249011001c7000080100200003948ce48c90000040f000000010020019000003fc60000613d000000000101043b000c00000001001d0000000101000039000000000201041a000000400b00043d000012b60100004100000000001b04350000000401b00039000012b7030000410000000000310435000000000100041400000008022002700000123802200197000000040020008c00003e110000c13d0000000103000031000000200030008c0000002004000039000000000403401900003e3b0000013d0000123500b0009c000012350300004100000000030b40190000004003300210000012350010009c0000123501008041000000c001100210000000000131019f00001256011001c7000a0000000b001d48ce48c90000040f0000000a0b00002900000060031002700000123503300197000000200030008c00000020040000390000000004034019000000200640019000000000056b001900003e2b0000613d000000000701034f00000000080b0019000000007907043c0000000008980436000000000058004b00003e270000c13d0000001f0740019000003e380000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000100000003001f000000010020019000003ff30000613d0000001f01400039000000600110018f000000000ab1001900000000001a004b000000000200003900000001020040390000124700a0009c00003fc80000213d000000010020019000003fc80000c13d0000004000a0043f000000200030008c00003fc60000413d00000000020b0433000012380020009c00003fc60000213d0000000204000039000000000404041a0000004405a00039000012ee0600004100000000006504350000002405a000390000000c060000290000000000650435000012d90500004100000000005a04350000000405a0003900000000004504350000000004000414000000040020008c00003e860000613d0000123500a0009c000012350100004100000000010a40190000004001100210000012350040009c0000123504008041000000c003400210000000000113019f00001251011001c7000a0000000a001d48ce48c90000040f0000000a0a00002900000060031002700000123503300197000000200030008c00000020040000390000000004034019000000200640019000000000056a001900003e740000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000058004b00003e700000c13d0000001f0740019000003e810000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000100000003001f000000010020019000003fff0000613d0000001f01400039000000600110018f000000000ba100190000124700b0009c00003fc80000213d0000004000b0043f000000200030008c00003fc60000413d00000000010a0433000b000b0010007400003fd50000413d0000000101000039000000000201041a000012b60100004100000000001b04350000000401b00039000012b7040000410000000000410435000000000100041400000008022002700000123802200197000000040020008c000000200400003900003ec60000613d0000123500b0009c000012350300004100000000030b40190000004003300210000012350010009c0000123501008041000000c001100210000000000131019f00001256011001c7000a0000000b001d48ce48c90000040f0000000a0b00002900000060031002700000123503300197000000200030008c00000020040000390000000004034019000000200640019000000000056b001900003eb60000613d000000000701034f00000000080b0019000000007907043c0000000008980436000000000058004b00003eb20000c13d0000001f0740019000003ec30000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000100000003001f00000001002001900000400b0000613d0000001f01400039000000600110018f0000000001b10019000012470010009c00003fc80000213d000000400010043f000000200030008c00003fc60000413d00000000020b0433000012380020009c00003fc60000213d0000000201000039000000000101041a000900000001001d00001243010000410000000000100443000a00000002001d00000004002004430000000001000414000012350010009c0000123501008041000000c00110021000001244011001c7000080020200003948ce48c90000040f000000010020019000003fce0000613d000000000101043b000000000001004b0000000a0300002900003fc60000613d000000400a00043d0000006401a000390000000b0200002900000000002104350000004401a00039000012ee0200004100000000002104350000002401a000390000000c020000290000000000210435000012e10100004100000000041a04360000000401a00039000000090200002900000000002104350000000001000414000000040030008c00003f0a0000613d0000123500a0009c000012350200004100000000020a40190000004002200210000012350010009c0000123501008041000000c001100210000000000121019f00001254011001c70000000002030019000a0000000a001d000c00000004001d48ce48c40000040f0000000c040000290000000a0a0000290000006003100270000112350030019d0000000100200190000040170000613d0000124700a0009c00003fc80000213d0000004000a0043f0000000d02000029000000010220003900000008030000290000000001030433000000000012004b00003d400000413d000000010010008c00003f2d0000c13d00000007010000290000000001010433000000000001004b00003fcf0000613d0000000201000029000000000101043300000001020000290000000002020433000000000024043500000000001a04350000123500a0009c000012350a0080410000004001a002100000000002000414000012350020009c0000123502008041000000c002200210000000000112019f00001241011001c70000800d0200003900000004030000390000000005000411000012ae0400004100003f5e0000013d000000400100043d0000004002000039000000000221043600000000040304330000000006030019000000400310003900000000004304350000006003100039000000000004004b00003f3e0000613d00000000050000190000002006600039000000000706043300000000037304360000000105500039000000000045004b00003f380000413d000000000500041100000000041300490000000000420435000000070600002900000000040604330000000002430436000000000004004b00003f4d0000613d00000000030000190000002006600039000000000706043300000000027204360000000103300039000000000043004b00003f470000413d0000000002120049000012350020009c00001235020080410000006002200210000012350010009c00001235010080410000004001100210000000000112019f0000000002000414000012350020009c0000123502008041000000c002200210000000000121019f00001249011001c70000800d020000390000000403000039000012f6040000410000000306000029000000000700001948ce48c40000040f000000010020019000003fc60000613d00000004020000390000000401000029000000000010043f000000200020043f0000000001000414000012350010009c0000123501008041000000c00110021000001241011001c7000080100200003948ce48c90000040f000000010020019000003fc60000613d000000000101043b0000000302000029000000000020043f000000200010043f0000000001000414000012350010009c0000123501008041000000c00110021000001241011001c7000080100200003948ce48c90000040f000000010020019000003fc60000613d000000000101043b000000000101041a000d000500100074000040540000413d0000000401000029000000000010043f0000000401000039000000200010043f0000000001000414000012350010009c0000123501008041000000c00110021000001241011001c7000080100200003948ce48c90000040f000000010020019000003fc60000613d000000000101043b0000000302000029000000000020043f000000200010043f0000000001000414000012350010009c0000123501008041000000c00110021000001241011001c7000080100200003948ce48c90000040f000000010020019000003fc60000613d000000000101043b0000000d02000029000000000021041b000000400100043d00000020021000390000000503000029000000000032043500000004020000290000000000210435000012350010009c000012350100804100000040011002100000000002000414000012350020009c0000123502008041000000c002200210000000000112019f00001241011001c70000800d0200003900000004030000390000000005000411000012ae040000410000000306000029000000000700001948ce48c40000040f000000010020019000003fc60000613d000000400100043d0000123a0010009c00003fc80000213d0000002002100039000000400020043f000000000001043500000008010000290000000001010433000000000001004b000000070200002900003fc50000613d000000010110008a0000000002020433000000000012004b00003fcf0000a13d000000000001042d0000000001000019000048d0000104300000125501000041000000000010043f0000004101000039000000040010043f0000125601000041000048d000010430000000000001042f0000125501000041000000000010043f0000003201000039000000040010043f0000125601000041000048d0000104300000125501000041000000000010043f0000001101000039000000040010043f0000125601000041000048d0000104300000001f0530018f0000123706300198000000400200043d0000000004620019000040230000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00003fe20000c13d000040230000013d0000001f0530018f0000123706300198000000400200043d0000000004620019000040230000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00003fee0000c13d000040230000013d0000001f0530018f0000123706300198000000400200043d0000000004620019000040230000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00003ffa0000c13d000040230000013d0000001f0530018f0000123706300198000000400200043d0000000004620019000040230000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000040060000c13d000040230000013d0000001f0530018f0000123706300198000000400200043d0000000004620019000040230000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000040120000c13d000040230000013d00001235033001970000001f0530018f0000123706300198000000400200043d0000000004620019000040230000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000401f0000c13d000000000005004b000040300000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000012350020009c00001235020080410000004002200210000000000112019f000048d000010430000012500200004100000000002b0435000000200200003900000000002104350000004401b000390000131b0200004100000000002104350000002401b00039000000120200003900000000002104350000123500b0009c000012350b0080410000004001b0021000001251011001c7000048d000010430000012500100004100000000001204350000002001000039000000000017043500000023010000390000000000160435000013190100004100000000001504350000131a010000410000000000140435000012350020009c0000123502008041000000400120021000001254011001c7000048d000010430000000400100043d00000064021000390000131703000041000000000032043500000044021000390000131803000041000000000032043500000024021000390000002403000039000000000032043500001250020000410000000000210435000000040210003900000020030000390000000000320435000012350010009c0000123501008041000000400110021000001254011001c7000048d0000104300000001f0530018f0000123706300198000000400200043d0000000004620019000040230000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000406f0000c13d000040230000013d0000001f0530018f0000123706300198000000400200043d0000000004620019000040230000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000407b0000c13d000040230000013d0000001f0530018f0000123706300198000000400200043d0000000004620019000040230000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000040870000c13d000040230000013d0000001f0530018f0000123706300198000000400200043d0000000004620019000040230000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000040930000c13d000040230000013d0000001f0530018f0000123706300198000000400200043d0000000004620019000040b00000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000409f0000c13d000040b00000013d00001235033001970000001f0530018f0000123706300198000000400200043d0000000004620019000040b00000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000040ac0000c13d000000000005004b000040bd0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000012350020009c00001235020080410000004002200210000000000121019f000048d00001043000001235033001970000001f0530018f0000123706300198000000400200043d0000000004620019000040230000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000040cb0000c13d000040230000013d00010000000000020000000101000039000000000201041a000000400c00043d000012b60100004100000000001c04350000000401c00039000012b7030000410000000000310435000000000100041400000008022002700000123802200197000000040020008c000040e30000c13d0000000103000031000000200030008c000000200400003900000000040340190000410e0000013d0000123500c0009c000012350300004100000000030c40190000004003300210000012350010009c0000123501008041000000c001100210000000000131019f00001256011001c700010000000c001d48ce48c90000040f000000010c00002900000060031002700000123503300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c0019000040fe0000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b000040fa0000c13d000000000006004b0000410b0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00000001002001900000417d0000613d0000001f01400039000000600110018f000000000bc1001900000000001b004b000000000200003900000001020040390000124700b0009c000041680000213d0000000100200190000041680000c13d0000004000b0043f0000001f0030008c000041660000a13d00000000020c0433000012380020009c000041660000213d0000000204000039000000000404041a0000004405b00039000012df060000410000000000650435000012d80500004100000000005b04350000000405b0003900000000004504350000002404b0003900000000000404350000000004000414000000040020008c000041590000613d0000123500b0009c000012350100004100000000010b40190000004001100210000012350040009c0000123504008041000000c003400210000000000113019f00001251011001c700010000000b001d48ce48c90000040f000000010b00002900000060031002700000123503300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000041470000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000041430000c13d000000000006004b000041540000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0000000100200190000041890000613d0000001f01400039000000600110018f0000000001b10019000012470010009c000041680000213d000000400010043f000000200030008c000041660000413d00000000020b0433000012380020009c000041660000213d0000000003000411000000000032004b0000416e0000c13d000000000001042d0000000001000019000048d0000104300000125501000041000000000010043f0000004101000039000000040010043f0000125601000041000048d00001043000000044021000390000131c0300004100000000003204350000125002000041000000000021043500000024021000390000002003000039000000000032043500000004021000390000000000320435000012350010009c0000123501008041000000400110021000001251011001c7000048d0000104300000001f0530018f0000123706300198000000400200043d0000000004620019000041940000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000041840000c13d000041940000013d0000001f0530018f0000123706300198000000400200043d0000000004620019000041940000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000041900000c13d000000000005004b000041a10000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000012350020009c00001235020080410000004002200210000000000112019f000048d0000104300010000000000002000c00000005001d000100000001001d000300000003001d000812380030019b000400000002001d000a12380020019b000b00000004001d0000000016040434000700000001001d000000000006004b000600200050003d000042270000613d000000080000006b000000000100003900000001010060390000000a04000029000000000004004b0000000002000039000000010200603900000008004001b00000488e0000613d000000000112019f000000010410018f0000000005000411000000070700003900000000080000190000000c03000029000900000006001d000500000004001d000041cb0000013d000000ff00100190000042230000613d0000000108800039000000000068004b000042270000813d0000000b010000290000000001010433000000000081004b000048920000a13d0000000001030433000000000081004b000048920000a13d000000000004004b000041c80000c13d0000000501800210000000070210002900000000090204330000000601100029000000000a010433000000000107041a00000008021002700000123802200198000041c60000613d000000000025004b000041c80000613d000f0000000a001d001000000009001d000d00000008001d00001243010000410000000000100443000e00000002001d00000004002004430000000001000414000012350010009c0000123501008041000000c00110021000001244011001c7000080020200003948ce48c90000040f00000001002001900000478c0000613d000000000101043b000000000001004b000000000500041100000010020000290000000f03000029000047840000613d000000400900043d000000840190003900000000003104350000006401900039000000000021043500000044019000390000000802000029000000000021043500000024019000390000000a020000290000000000210435000012ff01000041000000000019043500001238015001970000000402900039000000000012043500000000010004140000000e02000029000000040020008c0000421a0000613d000012350090009c000012350300004100000000030940190000004003300210000012350010009c0000123501008041000000c001100210000000000131019f0000131d011001c7001000000009001d48ce48c40000040f000000100900002900000000050004110000006003100270000112350030019d00000001002001900000486f0000613d0000130c0090009c0000000906000029000000050400002900000007070000390000000d08000029000047860000813d000000400090043f0000000c03000029000041c80000013d0000124002000041000000000025004b000041c80000613d000041df0000013d0000000b01000039000000000101041a0000123802100198000042830000613d00001243010000410000000000100443001000000002001d00000004002004430000000001000414000012350010009c0000123501008041000000c00110021000001244011001c7000080020200003948ce48c90000040f00000001002001900000478c0000613d000000000101043b000000000001004b000047840000613d000000400600043d0000006401600039000000a002000039000000000021043500000044016000390000000802000029000000000021043500000024016000390000000a020000290000000000210435000013120100004100000000001604350000000401600039000000000200041000000000002104350000000b040000290000000002040433000000a4016000390000000000210435000000c401600039000000000002004b000042580000613d00000000030000190000002004400039000000000504043300000000015104360000000103300039000000000023004b000042520000413d0000000002610049000000040220008a000000840360003900000000002304350000000c0400002900000000020404330000000001210436000000000002004b000042680000613d00000000030000190000002004400039000000000504043300000000015104360000000103300039000000000023004b000042620000413d00000000040004140000001002000029000000040020008c000042800000613d0000000001610049000012350010009c00001235010080410000006001100210000012350060009c000012350300004100000000030640190000004003300210000000000131019f000012350040009c0000123504008041000000c003400210000000000131019f001000000006001d48ce48c40000040f00000010060000290000006003100270000112350030019d00000001002001900000489c0000613d000012470060009c000047860000213d000000400060043f0000000b030000290000000001030433000000000001004b0000474b0000613d000000400a00043d00000003010000290002006000100218000000040100002900030060001002180000000004000019000042980000013d0000124700a0009c000047860000213d0000004000a0043f0000000c020000290000000b0300002900000000010304330000000f040000290000000104400039000000000014004b0000472f0000813d000f00000004001d0000000502400210000e00000002001d00000007012000290000000001010433001000000001001d0000000101000039000000000201041a000012b60100004100000000001a04350000000401a00039000012b7030000410000000000310435000000000100041400000008022002700000123802200197000000040020008c000042af0000c13d0000000103000031000000200030008c00000020040000390000000004034019000042d90000013d0000123500a0009c000012350300004100000000030a40190000004003300210000012350010009c0000123501008041000000c001100210000000000131019f00001256011001c700090000000a001d48ce48c90000040f000000090a00002900000060031002700000123503300197000000200030008c00000020040000390000000004034019000000200640019000000000056a0019000042c90000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000058004b000042c50000c13d0000001f07400190000042d60000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000100000003001f0000000100200190000047a60000613d0000001f01400039000000600110018f000000000ba1001900000000001b004b000000000200003900000001020040390000124700b0009c000047860000213d0000000100200190000047860000c13d0000004000b0043f000000200030008c000047840000413d00000000020a0433000012380020009c000047840000213d0000000204000039000000000404041a0000004405b00039000012e80600004100000000006504350000002405b0003900000010060000290000000000650435000012ca0500004100000000005b04350000000405b0003900000000004504350000000004000414000000040020008c000043240000613d0000123500b0009c000012350100004100000000010b40190000004001100210000012350040009c0000123504008041000000c003400210000000000113019f00001251011001c7000d0000000b001d48ce48c90000040f0000000d0b00002900000060031002700000123503300197000000200030008c00000020040000390000000004034019000000200640019000000000056b0019000043120000613d000000000701034f00000000080b0019000000007907043c0000000008980436000000000058004b0000430e0000c13d0000001f074001900000431f0000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000100000003001f0000000100200190000047b20000613d0000001f01400039000000600110018f000000000ab100190000124700a0009c000047860000213d0000004000a0043f000000200030008c000047840000413d00000000010b0433000000000001004b0000000002000039000000010200c039000000000021004b000047840000c13d000000000001004b000043360000613d0000000a0000006b000043360000613d000000080000006b0000478d0000c13d0000000c0200002900000000010204330000000f0010006c000048920000a13d0000000e0300002900000006013000290000000001010433000d00000001001d0000000a0000006b0000446d0000613d0000002001a00039000000030200002900000000002104350000003402a0003900000010030000290000000000320435000000340200003900000000002a0435000012ed00a0009c000047860000213d0000006002a00039000000400020043f000012350010009c0000123501008041000000400110021000000000020a0433000012350020009c00001235020080410000006002200210000000000112019f0000000002000414000012350020009c0000123502008041000000c002200210000000000112019f00001249011001c7000080100200003948ce48c90000040f0000000100200190000047840000613d000000000101043b000e00000001001d0000000101000039000000000201041a000000400b00043d000012b60100004100000000001b04350000000401b00039000012b7030000410000000000310435000000000100041400000008022002700000123802200197000000040020008c000043720000c13d0000000103000031000000200030008c000000200400003900000000040340190000439c0000013d0000123500b0009c000012350300004100000000030b40190000004003300210000012350010009c0000123501008041000000c001100210000000000131019f00001256011001c700090000000b001d48ce48c90000040f000000090b00002900000060031002700000123503300197000000200030008c00000020040000390000000004034019000000200640019000000000056b00190000438c0000613d000000000701034f00000000080b0019000000007907043c0000000008980436000000000058004b000043880000c13d0000001f07400190000043990000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000100000003001f0000000100200190000047be0000613d0000001f01400039000000600110018f000000000ab1001900000000001a004b000000000200003900000001020040390000124700a0009c000047860000213d0000000100200190000047860000c13d0000004000a0043f000000200030008c000047840000413d00000000020b0433000012380020009c000047840000213d0000000204000039000000000404041a0000004405a00039000012ee0600004100000000006504350000002405a000390000000e060000290000000000650435000012d90500004100000000005a04350000000405a0003900000000004504350000000004000414000000040020008c000043e70000613d0000123500a0009c000012350100004100000000010a40190000004001100210000012350040009c0000123504008041000000c003400210000000000113019f00001251011001c700090000000a001d48ce48c90000040f000000090a00002900000060031002700000123503300197000000200030008c00000020040000390000000004034019000000200640019000000000056a0019000043d50000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000058004b000043d10000c13d0000001f07400190000043e20000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000100000003001f0000000100200190000047ca0000613d0000001f01400039000000600110018f000000000ba100190000124700b0009c000047860000213d0000004000b0043f000000200030008c000047840000413d00000000010a04330009000d00100074000047a00000413d0000000101000039000000000201041a000012b60100004100000000001b04350000000401b00039000012b7040000410000000000410435000000000100041400000008022002700000123802200197000000040020008c0000002004000039000044270000613d0000123500b0009c000012350300004100000000030b40190000004003300210000012350010009c0000123501008041000000c001100210000000000131019f00001256011001c700050000000b001d48ce48c90000040f000000050b00002900000060031002700000123503300197000000200030008c00000020040000390000000004034019000000200640019000000000056b0019000044170000613d000000000701034f00000000080b0019000000007907043c0000000008980436000000000058004b000044130000c13d0000001f07400190000044240000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000100000003001f0000000100200190000047d60000613d0000001f01400039000000600110018f0000000001b10019000012470010009c000047860000213d000000400010043f000000200030008c000047840000413d00000000020b0433000012380020009c000047840000213d0000000201000039000000000101041a000400000001001d00001243010000410000000000100443000500000002001d00000004002004430000000001000414000012350010009c0000123501008041000000c00110021000001244011001c7000080020200003948ce48c90000040f00000001002001900000478c0000613d000000000101043b000000000001004b0000000503000029000047840000613d000000400a00043d0000006401a00039000000090200002900000000002104350000004401a00039000012ee0200004100000000002104350000002401a000390000000e020000290000000000210435000012e10100004100000000001a04350000000401a00039000000040200002900000000002104350000000001000414000000040030008c000044690000613d0000123500a0009c000012350200004100000000020a40190000004002200210000012350010009c0000123501008041000000c001100210000000000121019f00001254011001c7000000000203001900090000000a001d48ce48c40000040f000000090a0000290000006003100270000112350030019d0000000100200190000047e20000613d0000124700a0009c000047860000213d0000004000a0043f0000000c02000029000000080000006b000042920000613d0000002001a00039000000020200002900000000002104350000003402a0003900000010030000290000000000320435000000340200003900000000002a0435000012ed00a0009c000047860000213d0000006002a00039000000400020043f000012350010009c0000123501008041000000400110021000000000020a0433000012350020009c00001235020080410000006002200210000000000112019f0000000002000414000012350020009c0000123502008041000000c002200210000000000112019f00001249011001c7000080100200003948ce48c90000040f0000000100200190000047840000613d000000000101043b000e00000001001d0000000101000039000000000201041a000000400b00043d000012b60100004100000000001b04350000000401b00039000012b7030000410000000000310435000000000100041400000008022002700000123802200197000000040020008c000044a10000c13d0000000103000031000000200030008c00000020040000390000000004034019000044cb0000013d0000123500b0009c000012350300004100000000030b40190000004003300210000012350010009c0000123501008041000000c001100210000000000131019f00001256011001c700090000000b001d48ce48c90000040f000000090b00002900000060031002700000123503300197000000200030008c00000020040000390000000004034019000000200640019000000000056b0019000044bb0000613d000000000701034f00000000080b0019000000007907043c0000000008980436000000000058004b000044b70000c13d0000001f07400190000044c80000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000100000003001f0000000100200190000047ef0000613d0000001f01400039000000600110018f000000000ab1001900000000001a004b000000000200003900000001020040390000124700a0009c000047860000213d0000000100200190000047860000c13d0000004000a0043f000000200030008c000047840000413d00000000020b0433000012380020009c000047840000213d0000000204000039000000000404041a0000004405a00039000012ee0600004100000000006504350000002405a000390000000e060000290000000000650435000012d90500004100000000005a04350000000405a0003900000000004504350000000004000414000000040020008c000045160000613d0000123500a0009c000012350100004100000000010a40190000004001100210000012350040009c0000123504008041000000c003400210000000000113019f00001251011001c700090000000a001d48ce48c90000040f000000090a00002900000060031002700000123503300197000000200030008c00000020040000390000000004034019000000200640019000000000056a0019000045040000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000058004b000045000000c13d0000001f07400190000045110000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000100000003001f0000000100200190000047fb0000613d0000001f01400039000000600110018f000000000ba100190000124700b0009c000047860000213d0000004000b0043f000000200030008c000047840000413d00000000020a0433000900000002001d0000000d0020002a000047a00000413d0000000101000039000000000201041a000012b60100004100000000001b04350000000401b00039000012b7040000410000000000410435000000000100041400000008022002700000123802200197000000040020008c0000002004000039000045570000613d0000123500b0009c000012350300004100000000030b40190000004003300210000012350010009c0000123501008041000000c001100210000000000131019f00001256011001c700050000000b001d48ce48c90000040f000000050b00002900000060031002700000123503300197000000200030008c00000020040000390000000004034019000000200640019000000000056b0019000045470000613d000000000701034f00000000080b0019000000007907043c0000000008980436000000000058004b000045430000c13d0000001f07400190000045540000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000100000003001f0000000100200190000048070000613d0000001f01400039000000600110018f0000000001b10019000012470010009c000047860000213d000000400010043f000000200030008c000047840000413d00000000020b0433000012380020009c000047840000213d0000000201000039000000000101041a000400000001001d00001243010000410000000000100443000500000002001d00000004002004430000000001000414000012350010009c0000123501008041000000c00110021000001244011001c7000080020200003948ce48c90000040f00000001002001900000478c0000613d000000000101043b000000000001004b0000000503000029000047840000613d00000009020000290000000d01200029000000400a00043d0000006402a0003900000000001204350000004401a00039000012ee0200004100000000002104350000002401a000390000000e020000290000000000210435000012e10100004100000000001a04350000000404a00039000000040100002900000000001404350000000001000414000000040030008c000d0000000a001d0000459c0000613d0000123500a0009c000012350200004100000000020a40190000004002200210000012350010009c0000123501008041000000c001100210000000000121019f00001254011001c70000000002030019000900000004001d48ce48c40000040f00000009040000290000000d0a0000290000006003100270000112350030019d0000000100200190000048130000613d0000124700a0009c000047860000213d0000004000a0043f0000000101000039000000000201041a000012b60100004100000000001a0435000012b7010000410000000000140435000000000100041400000008022002700000123802200197000000040020008c000045af0000c13d0000000103000031000000200030008c00000020040000390000000004034019000045d80000013d0000123500a0009c000012350300004100000000030a40190000004003300210000012350010009c0000123501008041000000c001100210000000000131019f00001256011001c748ce48c90000040f0000000d0a00002900000060031002700000123503300197000000200030008c00000020040000390000000004034019000000200640019000000000056a0019000045c80000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000058004b000045c40000c13d0000001f07400190000045d50000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000100000003001f0000000100200190000048200000613d0000001f01400039000000600110018f000000000ba100190000124700b0009c000047860000213d0000004000b0043f000000200030008c000047840000413d00000000020a0433000012380020009c000047840000213d0000000204000039000000000404041a0000004405b00039000013130600004100000000006504350000002405b000390000000e060000290000000000650435000012d80500004100000000005b04350000000405b0003900000000004504350000000004000414000000040020008c0000461e0000613d0000123500b0009c000012350100004100000000010b40190000004001100210000012350040009c0000123504008041000000c003400210000000000113019f00001251011001c7000d0000000b001d48ce48c90000040f0000000d0b00002900000060031002700000123503300197000000200030008c00000020040000390000000004034019000000200640019000000000056b00190000460c0000613d000000000701034f00000000080b0019000000007907043c0000000008980436000000000058004b000046080000c13d0000001f07400190000046190000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000100000003001f00000001002001900000482c0000613d0000001f01400039000000600110018f000000000ab100190000124700a0009c000047860000213d0000004000a0043f000000200030008c000047840000413d00000000010b0433000012380010009c000047840000213d000000000001004b000042910000c13d0000000101000039000000000201041a000012b60100004100000000001a04350000000401a00039000012b7040000410000000000410435000000000100041400000008022002700000123802200197000000040020008c0000002004000039000046600000613d0000123500a0009c000012350300004100000000030a40190000004003300210000012350010009c0000123501008041000000c001100210000000000131019f00001256011001c700090000000a001d48ce48c90000040f000000090a00002900000060031002700000123503300197000000200030008c00000020040000390000000004034019000000200640019000000000056a0019000046500000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000058004b0000464c0000c13d0000001f074001900000465d0000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000100000003001f0000000100200190000048380000613d0000001f01400039000000600110018f0000000001a10019000012470010009c000047860000213d000000400010043f000000200030008c000047840000413d00000000020a0433000012380020009c000047840000213d0000000201000039000000000101041a000900000001001d00001243010000410000000000100443000d00000002001d00000004002004430000000001000414000012350010009c0000123501008041000000c00110021000001244011001c7000080020200003948ce48c90000040f00000001002001900000478c0000613d000000000101043b000000000001004b0000000d03000029000047840000613d000000400a00043d0000006401a00039000000080200002900000000002104350000004401a00039000013130200004100000000002104350000002401a000390000000e020000290000000000210435000012de0100004100000000001a04350000000404a00039000000090100002900000000001404350000000001000414000000040030008c00050000000a001d000046a40000613d0000123500a0009c000012350200004100000000020a40190000004002200210000012350010009c0000123501008041000000c001100210000000000121019f00001254011001c70000000002030019000d00000004001d48ce48c40000040f0000000d04000029000000050a0000290000006003100270000112350030019d0000000100200190000048440000613d0000124700a0009c000047860000213d0000004000a0043f0000000101000039000000000201041a000012b60100004100000000001a0435000012b7010000410000000000140435000000000100041400000008022002700000123802200197000000040020008c000046b70000c13d0000000103000031000000200030008c00000020040000390000000004034019000046e00000013d0000123500a0009c000012350300004100000000030a40190000004003300210000012350010009c0000123501008041000000c001100210000000000131019f00001256011001c748ce48c90000040f000000050a00002900000060031002700000123503300197000000200030008c00000020040000390000000004034019000000200640019000000000056a0019000046d00000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000058004b000046cc0000c13d0000001f07400190000046dd0000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000100000003001f0000000100200190000048630000613d0000001f01400039000000600110018f0000000001a10019000012470010009c000047860000213d000000400010043f000000200030008c000047840000413d00000000020a0433000012380020009c000047840000213d0000000201000039000000000101041a000900000001001d00001243010000410000000000100443000d00000002001d00000004002004430000000001000414000012350010009c0000123501008041000000c00110021000001244011001c7000080020200003948ce48c90000040f00000001002001900000478c0000613d000000000101043b000000000001004b0000000d03000029000047840000613d000000400a00043d0000006401a00039000000100200002900000000002104350000004401a00039000012e00200004100000000002104350000002401a000390000000e020000290000000000210435000012e10100004100000000001a04350000000401a00039000000090200002900000000002104350000000001000414000000040030008c0000428e0000613d0000123500a0009c000012350200004100000000020a40190000004002200210000012350010009c0000123501008041000000c001100210000000000121019f00001254011001c7000000000203001900090000000a001d48ce48c40000040f000000090a0000290000006003100270000112350030019d00000001002001900000428e0000c13d00001235033001970000001f0530018f0000123706300198000000400200043d00000000046200190000487b0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000472a0000c13d0000487b0000013d000000010010008c0000474b0000c13d0000000001020433000000000001004b000048920000613d0000000701000029000000000101043300000006020000290000000002020433000000400300043d000000200430003900000000002404350000000000130435000012350030009c000012350300804100000040013002100000000002000414000012350020009c0000123502008041000000c002200210000000000112019f00001241011001c7000000010200002900001238052001970000800d020000390000000403000039000012ae040000410000477e0000013d000000400100043d000000400200003900000000022104360000000004030433000000400310003900000000004304350000006003100039000000000004004b0000475c0000613d00000000050000190000000b070000290000002007700039000000000607043300000000036304360000000105500039000000000045004b000047560000413d00000001040000290000123805400197000000000413004900000000004204350000000c0200002900000000040204330000000002430436000000000004004b0000476d0000613d00000000030000190000000c070000290000002007700039000000000607043300000000026204360000000103300039000000000043004b000047670000413d0000000002120049000012350020009c00001235020080410000006002200210000012350010009c00001235010080410000004001100210000000000112019f0000000002000414000012350020009c0000123502008041000000c002200210000000000121019f00001249011001c70000800d020000390000000403000039000012f6040000410000000a06000029000000080700002948ce48c40000040f0000000100200190000047840000613d000000000001042d0000000001000019000048d0000104300000125501000041000000000010043f0000004101000039000000040010043f0000125601000041000048d000010430000000000001042f0000006401a000390000131e0200004100000000002104350000004401a000390000131f0200004100000000002104350000002401a0003900000025020000390000000000210435000012500100004100000000001a04350000000401a00039000000200200003900000000002104350000123500a0009c000012350a0080410000004001a0021000001254011001c7000048d0000104300000125501000041000000000010043f0000001101000039000000040010043f0000125601000041000048d0000104300000001f0530018f0000123706300198000000400200043d00000000046200190000487b0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000047ad0000c13d0000487b0000013d0000001f0530018f0000123706300198000000400200043d00000000046200190000487b0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000047b90000c13d0000487b0000013d0000001f0530018f0000123706300198000000400200043d00000000046200190000487b0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000047c50000c13d0000487b0000013d0000001f0530018f0000123706300198000000400200043d00000000046200190000487b0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000047d10000c13d0000487b0000013d0000001f0530018f0000123706300198000000400200043d00000000046200190000487b0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000047dd0000c13d0000487b0000013d00001235033001970000001f0530018f0000123706300198000000400200043d00000000046200190000487b0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000047ea0000c13d0000487b0000013d0000001f0530018f0000123706300198000000400200043d00000000046200190000487b0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000047f60000c13d0000487b0000013d0000001f0530018f0000123706300198000000400200043d00000000046200190000487b0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000048020000c13d0000487b0000013d0000001f0530018f0000123706300198000000400200043d00000000046200190000487b0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000480e0000c13d0000487b0000013d00001235033001970000001f0530018f0000123706300198000000400200043d00000000046200190000487b0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000481b0000c13d0000487b0000013d0000001f0530018f0000123706300198000000400200043d00000000046200190000487b0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000048270000c13d0000487b0000013d0000001f0530018f0000123706300198000000400200043d00000000046200190000487b0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000048330000c13d0000487b0000013d0000001f0530018f0000123706300198000000400200043d0000000004620019000048500000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000483f0000c13d000048500000013d00001235033001970000001f0530018f0000123706300198000000400200043d0000000004620019000048500000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000484c0000c13d000000000005004b0000485d0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000012350020009c00001235020080410000004002200210000000000121019f000048d0000104300000001f0530018f0000123706300198000000400200043d00000000046200190000487b0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000486a0000c13d0000487b0000013d00001235033001970000001f0530018f0000123706300198000000400200043d00000000046200190000487b0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000048770000c13d000000000005004b000048880000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000006001300210000012350020009c00001235020080410000004002200210000000000112019f000048d0000104300000000c010000290000000001010433000000000001004b000048980000c13d0000125501000041000000000010043f0000003201000039000000040010043f0000125601000041000048d000010430000012af01000041000000000010043f000012b001000041000048d00001043000001235033001970000001f0530018f0000123706300198000000400200043d00000000046200190000487b0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000048a40000c13d0000487b0000013d000000600210003900001320030000410000000000320435000000400210003900001321030000410000000000320435000000200210003900000028030000390000000000320435000000200200003900000000002104350000008001100039000000000001042d000000600210003900001322030000410000000000320435000000400210003900001323030000410000000000320435000000200210003900000034030000390000000000320435000000200200003900000000002104350000008001100039000000000001042d000000000001042f000048c7002104210000000102000039000000000001042d0000000002000019000000000001042d000048cc002104230000000102000039000000000001042d0000000002000019000000000001042d000048ce00000432000048cf0001042e000048d00001043000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffff00000000000000000000000000000000000000000000000000000001ffffffe000000000000000000000000000000000000000000000000000000000ffffffe0000000000000000000000000ffffffffffffffffffffffffffffffffffffffff0000000000000000000000000000000000000000ffffffffffffffffffffffff000000000000000000000000000000000000000000000000ffffffffffffffdfffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffff00a6ece734f20310c441daec80768668ffd0649e14bbd0ab181cf9ad511b7e60def652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f09addddcec1d7ba6ad726df49aeea3e93fb0c1037d551236841a60c0c883f2c1000000000000000000000000721c002b0059009a671d00ad1700c9748146cd1b0200000000000000000000000000000000000040000000000000000000000000cc5dc080ff977b3c3a211fa63ab74f90f658f5ba9d3236e92c8f59570f442aac1806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b830200000200000000000000000000000000000024000000000000000000000000fb2de5d7000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000008be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0000000000000000000000000000000000000000000000000ffffffffffffffbf02000000000000000000000000000000000000200000000000000000000000008a8bae378cb731c5c40b632330c6836c2f916f48edb967699c86736f9a6a76ef0000000200000000000000000000000000000040000001000000000000000000455243323938313a20696e76616c69642072656365697665720000000000000008c379a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000640000000000000000000000002073616c65507269636500000000000000000000000000000000000000000000455243323938313a20726f79616c7479206665652077696c6c2065786365656400000000000000000000000000000000000000840000000000000000000000004e487b71000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024000000000000000000000000000000000000000000000000000000000000000000000000000000007dc0bf3e00000000000000000000000000000000000000000000000000000000b76ac0d600000000000000000000000000000000000000000000000000000000e725f87600000000000000000000000000000000000000000000000000000000f0a8102a00000000000000000000000000000000000000000000000000000000f2fde38a00000000000000000000000000000000000000000000000000000000f2fde38b00000000000000000000000000000000000000000000000000000000f5298aca00000000000000000000000000000000000000000000000000000000f0a8102b00000000000000000000000000000000000000000000000000000000f242432a00000000000000000000000000000000000000000000000000000000e985e9c400000000000000000000000000000000000000000000000000000000e985e9c500000000000000000000000000000000000000000000000000000000ed022ebd00000000000000000000000000000000000000000000000000000000e725f87700000000000000000000000000000000000000000000000000000000e8a3d48500000000000000000000000000000000000000000000000000000000ce62bc8b00000000000000000000000000000000000000000000000000000000d81d0a1400000000000000000000000000000000000000000000000000000000d81d0a1500000000000000000000000000000000000000000000000000000000dd898b2f00000000000000000000000000000000000000000000000000000000ce62bc8c00000000000000000000000000000000000000000000000000000000d7f151e300000000000000000000000000000000000000000000000000000000b76ac0d700000000000000000000000000000000000000000000000000000000c03ad0be00000000000000000000000000000000000000000000000000000000cdb0e89e000000000000000000000000000000000000000000000000000000009b642de000000000000000000000000000000000000000000000000000000000a22cb46400000000000000000000000000000000000000000000000000000000a9fc664d00000000000000000000000000000000000000000000000000000000a9fc664e00000000000000000000000000000000000000000000000000000000af2b8c5200000000000000000000000000000000000000000000000000000000a22cb46500000000000000000000000000000000000000000000000000000000a485b4cf000000000000000000000000000000000000000000000000000000009b642de1000000000000000000000000000000000000000000000000000000009e05d24000000000000000000000000000000000000000000000000000000000a16ad7da0000000000000000000000000000000000000000000000000000000082840eec000000000000000000000000000000000000000000000000000000008da5cb5a000000000000000000000000000000000000000000000000000000008da5cb5b00000000000000000000000000000000000000000000000000000000938e3d7b0000000000000000000000000000000000000000000000000000000082840eed0000000000000000000000000000000000000000000000000000000088e4f1cb000000000000000000000000000000000000000000000000000000007dc0bf3f000000000000000000000000000000000000000000000000000000008129fc1c000000000000000000000000000000000000000000000000000000008245e472000000000000000000000000000000000000000000000000000000002a552059000000000000000000000000000000000000000000000000000000005a2148b8000000000000000000000000000000000000000000000000000000006b20c4530000000000000000000000000000000000000000000000000000000077278ae70000000000000000000000000000000000000000000000000000000077278ae8000000000000000000000000000000000000000000000000000000007b4a5411000000000000000000000000000000000000000000000000000000006b20c45400000000000000000000000000000000000000000000000000000000715018a6000000000000000000000000000000000000000000000000000000005d1ca630000000000000000000000000000000000000000000000000000000005d1ca631000000000000000000000000000000000000000000000000000000006221d13c000000000000000000000000000000000000000000000000000000005a2148b9000000000000000000000000000000000000000000000000000000005c975abb000000000000000000000000000000000000000000000000000000003ac70265000000000000000000000000000000000000000000000000000000004e1273f3000000000000000000000000000000000000000000000000000000004e1273f40000000000000000000000000000000000000000000000000000000055e8f0c5000000000000000000000000000000000000000000000000000000003ac70266000000000000000000000000000000000000000000000000000000004036ab78000000000000000000000000000000000000000000000000000000002a55205a000000000000000000000000000000000000000000000000000000002eb2c2d6000000000000000000000000000000000000000000000000000000002fb0b874000000000000000000000000000000000000000000000000000000000e89341b0000000000000000000000000000000000000000000000000000000015be71fe000000000000000000000000000000000000000000000000000000001f7fdff9000000000000000000000000000000000000000000000000000000001f7fdffa00000000000000000000000000000000000000000000000000000000267659e20000000000000000000000000000000000000000000000000000000015be71ff0000000000000000000000000000000000000000000000000000000016c38b3c000000000000000000000000000000000000000000000000000000000e89341c000000000000000000000000000000000000000000000000000000001328357f00000000000000000000000000000000000000000000000000000000156e29f60000000000000000000000000000000000000000000000000000000001ffc9a600000000000000000000000000000000000000000000000000000000098144d300000000000000000000000000000000000000000000000000000000098144d4000000000000000000000000000000000000000000000000000000000d705df60000000000000000000000000000000000000000000000000000000001ffc9a70000000000000000000000000000000000000000000000000000000006fdde03000000000000000000000000000000000000000000000000000000000035a9ae0000000000000000000000000000000000000000000000000000000000fdd58e000000000000000000000000000000000000000000000000000000000146354664647265737300000000000000000000000000000000000000000000000000004f776e61626c653a206e6577206f776e657220697320746865207a65726f2061000000000000000000000000000000000000000000000000ffffffffffffff7f00000000000000000000ff000000000000000000000000000000000000000000c3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f625cbd9441000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000f23a6e610000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002000000080000000000000000053e41c1e000000000000000000000000000000000000000000000000000000009750ad73d9615445751d3fd0a61d867ae6a6dd1dfb5f65ef07fe835b7d5ca6bd00000000000000000000000000000000000000240000008000000000000000008a4bcc9000000000000000000000000000000000000000000000000000000000dfc4bf0eca7feb04d15ce5df48f53a222054e5a04aff6d9e7b5c7e90debe19447fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff800000000000000000000000000000000000000000000000000000000000000007fef633000000000000000000000000000000000000000000000000000000002361458367e696363fbcc70777d07ebbd2394e89fd0adcaf147faccd1d294d60e217cc52bb17854a0b236c2e7b936de0d03c3e8e627c48d806ac42e6b4fd8b9fc36dd7ea00000000000000000000000000000000000000000000000000000000241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b080000000000000000000000000000000000000044000000800000000000000000ffffffffffffffffffffff0000000000000000000000000000000000000000ffa4b91481000000000000000000000000000000000000000000000000000000000161a64a00000000000000000000000000000000000000000000000000000000e95c048700000000000000000000000000000000000000000000000000000000bfa2ccd2000000000000000000000000000000000000000000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe032483afb00000000000000000000000000000000000000000000000000000000651689700000000000000000000000000000000000000000000000000000000017307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31455243313135353a2073657474696e6720617070726f76616c2073746174757320666f722073656c660000000000000000000000000000000000000000000000000000000000000000000000000000000000008400000080000000000000000007b920aa00000000000000000000000000000000000000000000000000000000ffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff00000000000000000000010000000000000000000000000000000000000000006787c7f9a80aa0f5ceddab2c54f1f5169c0b88e75dd5e19d5e858a64144c7dbc6818841ab9979379b712f05bf5316284ac48e388dba4038f832cb3c37f7aeeaffdffffffffffffffffffffffffffffffffffffc000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffc002000000000000000000000000000000ffffffff000000000000000000000000905d981207a7d0b6c62cc46ab0be2a076d0298e4a86d0ab79882dbd01ac37378e81b22ea00000000000000000000000000000000000000000000000000000000a1b9224c00000000000000000000000000000000000000000000000000000000fc425f2263d0df187444b70e47283d622c70181c5baebb1306a01edba1ce184c476967617665727365202d204974656d730000000000000000000000000000000dc149f000000000000000000000000000000000000000000000000000000000421683f821a0574472445355be6d2b769119e8515f8376a1d7878523dfdecf7b0a41b90f0000000000000000000000000000000000000000000000000000000002016836a56b71f0d02689e69e326f4f4c1b9057164ef592671cf0d37c8040c0a709fd3aa96d9faf770e44a5aef2f4808a6fe3a5ddf546568f36ad3a3873f31d9b29de6900000000000000000000000000000000000000000000000000000000d3dc2a3a14cbd0cdbf3069fc3927e48506f271b9dda2c21625b93e6a99d3eb535c975abb000000000000000000000000000000000000000000000000000000005061757361626c653a20706175736564000000000000000000000000000000006d65206c656e677468000000000000000000000000000000000000000000000049647320616e6420616d6f756e7473206d757374206861766520746865207361f2c071ca000000000000000000000000000000000000000000000000000000009e7ed7f8e6dcd193d98e2fd5ebd44790ad3072ac13a6c8399c17d661a1faa4bd5f7eb40400000000000000000000000000000000000000000000000000000000206d69736d617463680000000000000000000000000000000000000000000000455243313135353a206163636f756e747320616e6420696473206c656e67746800000000000000000000000000000000000000000000003fffffffffffffffe0000000000000000000000000000000000000000000000000ffffffffffffff9fea06f38f7e4f15e87567361213c28f235cccdaa1d7fd34c9db1dfe9489c6a09100000000000000000000000000000000000000600000000000000000000000006572206f7220617070726f766564000000000000000000000000000000000000455243313135353a2063616c6c6572206973206e6f7420746f6b656e206f776e6d69736d61746368000000000000000000000000000000000000000000000000455243313135353a2069647320616e6420616d6f756e7473206c656e6774682072207472616e7366657200000000000000000000000000000000000000000000455243313135353a20696e73756666696369656e742062616c616e636520666f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fbbc197c81000000000000000000000000000000000000000000000000000000006472657373000000000000000000000000000000000000000000000000000000455243313135353a207472616e7366657220746f20746865207a65726f206164000000000000000000000000000000000000004000000000000000000000000065d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2585db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa5061757361626c653a206e6f74207061757365640000000000000000000000001854b241000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000800000000000000000a07d2299ffffffffffffffffffffffffffffffffffffffffffffffffffffffffd9b67a25ffffffffffffffffffffffffffffffffffffffffffffffffffffffffd9b67a2600000000000000000000000000000000000000000000000000000000f6a7d85700000000000000000000000000000000000000000000000000000000a07d229a00000000000000000000000000000000000000000000000000000000ad0d7f6c0000000000000000000000000000000000000000000000000000000001ffc9a7000000000000000000000000000000000000000000000000000000000e89341c000000000000000000000000000000000000000000000000000000002a55205a00000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000ffffffffffffffa07e61c209e219816f2d6552de7fdbac392549e401c2ca89cd18a229b82bce31a27ec44d5489e2b86ed2f87d84b04b5a3949fba967937842e10302a5545dfc6315a4461be494c8ac4161bbebae7582b8b9702b218cee52e3af7374f39c418f8bde9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a6bc4802b000000000000000000000000000000000000000000000000000000000326d994cdb81aaccb84aa1f62bae636dc0aaf98ab22f66b0c9224f1edccd7cc97300000000000000000000000000000000000000000000000000000000000000455243313135353a206d696e7420746f20746865207a65726f20616464726573b6f2b93100000000000000000000000000000000000000000000000000000000616e636500000000000000000000000000000000000000000000000000000000455243313135353a206275726e20616d6f756e7420657863656564732062616c455243313135353a206275726e2066726f6d20746865207a65726f206164647265737300000000000000000000000000000000000000000000000000000000004e6f7420656e6f7567682062616c616e636500000000000000000000000000004f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657200000000000000000000000000000000000000a40000000000000000000000006572726564000000000000000000000000000000000000000000000000000000536f756c626f756e6420746f6b656e2063616e6e6f74206265207472616e73666420746f6b656e73000000000000000000000000000000000000000000000000455243313135353a204552433131353552656365697665722072656a65637465526563656976657220696d706c656d656e746572000000000000000000000000455243313135353a207472616e7366657220746f206e6f6e2d45524331313535ff401d9295ae89a99e0837dd3d294fdeae42a22a2f8cc01a0668d9b5023ff56f
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000074eb92b33f2400eb14f6d6725b14f76078d5e731000000000000000000000000f62dceddd3a9aa9239f068a6dcd7a08c95d903d000000000000000000000000000000000000000000000000000000000000001f4
-----Decoded View---------------
Arg [0] : gameRegistryAddress (address): 0x74eb92b33f2400EB14F6D6725B14F76078d5E731
Arg [1] : royaltiesAddress (address): 0xF62DcedDd3A9Aa9239f068A6DCD7a08C95D903D0
Arg [2] : feeNumerator (uint96): 500
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 00000000000000000000000074eb92b33f2400eb14f6d6725b14f76078d5e731
Arg [1] : 000000000000000000000000f62dceddd3a9aa9239f068a6dcd7a08c95d903d0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000001f4
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 31 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
[ Download: CSV Export ]
[ 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.