Abstract Testnet

Token

GigaRomNFT (ROM)
ERC-721

Overview

Max Total Supply

29 ROM

Holders

7

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
Balance
1 ROM
0x917a67de1a4e29d8820e1aeafd1e7e53f19f2df7
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
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:
GigaRomNFT

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)

File 1 of 30 : GigaRomNFT.sol
// SPDX-License-Identifier: MIT LICENSE

pragma solidity ^0.8.9;

import {GameNFT} from "../gamenft/GameNFT.sol";
import {LEVEL_CID, IS_NOOB_CID} from "../../constants/ColumnConstants.sol";
import {MINTER_ROLE, GAME_LOGIC_CONTRACT_ROLE, DEPLOYER_ROLE} from "../../constants/RoleConstants.sol";
import {IGigaRomNFT, ID } from "./IGigaRomNFT.sol";
import {IERC721} from "@openzeppelin/contracts/token/ERC721/IERC721.sol";

/** @title GigaRom NFTs on L2 */
contract GigaRomNFT is GameNFT, IGigaRomNFT {

    uint256 public immutable MAX_SUPPLY;

    /** SETUP */
    constructor(uint256 maxSupply, address gameRegistryAddress) GameNFT(maxSupply, "GIGA-ROM", "ROM", "GIGA-ROM #", gameRegistryAddress, ID) {
        MAX_SUPPLY = maxSupply;
    }

    function initialize() external override onlyRole(DEPLOYER_ROLE) {
        initializeTable("GigaRomNFT", ID);
        _initialize();
    }

    /** Initializes traits for the given tokenId */
    function _initializeTraits(uint256 tokenId) internal override {
        _setDocBoolValue(tokenId, IS_NOOB_CID, true);
        _setDocUint256Value(tokenId, LEVEL_CID, 1);
        super._initializeTraits(tokenId);
    }

    /**
     * Mints multiple ERC721 tokens
     *
     * @param to        Recipient of the tokens
     * @param quantity  Number of tokens to mint
     * @return tokenIds Array of minted token IDs
     */
    function mint(
        address to,
        uint256 quantity
    ) external onlyRole(MINTER_ROLE) whenNotPaused returns (uint256[] memory tokenIds) {
        tokenIds = new uint256[](quantity);
        for (uint256 i = 0; i < quantity; i++) {
            tokenIds[i] = _confirmMint(to);
        }
        return tokenIds;
    }

    function batchAirDrop(
        address[] memory to,
        uint256[] memory quantities
    ) external onlyRole(MINTER_ROLE) whenNotPaused returns (uint256[] memory tokenIds) {
        tokenIds = new uint256[](to.length);
        for (uint256 i = 0; i < to.length; i++) {
            for (uint256 j = 0; j < quantities[i]; j++) {
                tokenIds[i] = _confirmMint(to[i]);
            }
        }
        return tokenIds;
    }

    function _confirmMint(address to) internal returns (uint256) {
        require(1 + getTotalSupply() <= MAX_SUPPLY, "Exceeds max supply");
        uint256 nextTokenId = _getAndIncrementAutoIncId();
        _safeMint(to, nextTokenId);
        return nextTokenId;
    }

    /**
     * @return The total number of tokens minted
     */
    function totalSupply() external view returns (uint256) {
        return super.getTotalSupply();
    }

    /**
     * @dev Burn a token by the game contract
     * @param id        Id of the token to burn
     */
    function burnByGameContract(
        uint256 id
    ) external onlyRole(GAME_LOGIC_CONTRACT_ROLE) whenNotPaused {
        _burn(id);
    }

    function _cleanupAfterBurn(uint256 tokenId) override internal {
        super._cleanupAfterBurn(tokenId);
    }

    function totalMinted() public view returns (uint256) {
        return super.getTotalMinted();
    }

    function getMaxSupply() external view returns (uint256) {
        return MAX_SUPPLY;
    }
}

File 2 of 30 : GameNFT.sol
// SPDX-License-Identifier: MIT LICENSE

pragma solidity ^0.8.9;

import "@openzeppelin/contracts/utils/math/SafeCast.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import {IGameNFT} from "./IGameNFT.sol";
import {MANAGER_ROLE, DEPLOYER_ROLE} from "../../constants/RoleConstants.sol";
import {BALANCE_CID, NAME_CID, MINT_COUNT_CID, BURN_COUNT_CID,ADDRESS_CID, MAX_SUPPLY_CID, IS_SOULBOUND_CID, INITIALIZED_CID, OWNER_CID, BASE_NAME_CID, BASE_URI_CID, LAST_TRANSFER_TIME_CID, OWNER_CID} from "../../constants/ColumnConstants.sol";
import {DataTable} from "../../db/DataTable.sol";
import {ERC721} from "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import {IERC721UpdateHandler} from "../IERC721UpdateHandler.sol";
import {IERC721} from "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import {IERC165} from "@openzeppelin/contracts/utils/introspection/IERC165.sol";

/** @title NFT base contract for all game NFTs. Exposes traits for the NFT and respects GameRegistry/Soulbound access control */
abstract contract GameNFT is
    ERC721,
    DataTable,
    IGameNFT
    {
    using Strings for uint256;

    address public beforeUpdateHandler;
    address public afterUpdateHandler;

    /** ERRORS **/

    /// @notice Account must be non-null
    error InvalidAccountAddress();

    /// @notice Token id is not valid
    error InvalidTokenId();

    /// @notice Exceeds max supply
    error ExceedsMaxSupply();

    /// @notice Amount to mint exceeds max supply
    error NotEnoughSupply(uint256 needed, uint256 actual);

    /** EVENTS **/

    /// @notice Emitted when time held time is updated
    event TimeHeldSet(uint256 tokenId, address account, uint32 timeHeld);

    /// @notice Emitted when last transfer time is updated
    event LastTransferSet(uint256 tokenId, uint32 lastTransferTime);

    uint256 private _tokenMaxSupply;
    string private _baseTokenName;


    /** SETUP **/
    constructor(uint256 tokenMaxSupply,
        string memory nameToSet,
        string memory symbol,
        string memory baseTokenName,
        address gameRegistryAddress,
        uint256 id) DataTable(gameRegistryAddress, id) ERC721(nameToSet, symbol) {
        _tokenMaxSupply = tokenMaxSupply;
        _baseTokenName = baseTokenName;
    }

    function _initialize() internal {
        _setTableUint256Value(MAX_SUPPLY_CID, _tokenMaxSupply);
        _setTableStringValue(BASE_NAME_CID, _baseTokenName);
    }

    /**
     * @param tokenId token id to check
     * @return Whether or not the given tokenId has been minted
     */
    function exists(uint256 tokenId) public view returns (bool) {

        return _ownerOf(tokenId) != address(0);
    }

    function name() public view override(DataTable, ERC721) returns (string memory) {
        return DataTable.name(); 
    }

    function setBaseURI(string memory uri) external onlyRole(MANAGER_ROLE) {
        _setTableStringValue(BASE_URI_CID, uri);
    }

    function withdraw(uint256 amount) external nonReentrant onlyRole(MANAGER_ROLE) {
        (bool success, ) = payable(msg.sender).call{value: amount}("");
        require(success, "Transfer failed");
    }
    
    /**
     * @param tokenId token id to check
     * @return Whether or not the given tokenId has had its traits initialized
     */

    /**
     * @return Generates a dynamic tokenURI based on the traits associated with the given token
     */
    function tokenURI(
        uint256 tokenId
    ) public view override returns (string memory) {
        // Make sure this still errors according to ERC721 spec
        require(
            exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

        return super.tokenURI(tokenId);
    }

    function _baseURI() internal override view returns (string memory) {
        return getTableStringValue(BASE_URI_CID);
    }

    /**
     * @dev a method that bulk sets initialized imported NFTs
     * @param tokenIds List of TokenIds to be initialized
     */
    function setTraitsInitialized(
        uint256[] calldata tokenIds
    ) external onlyRole(MANAGER_ROLE) {
        for (uint256 i = 0; i < tokenIds.length; i++) {
            _setDocBoolValue(tokenIds[i], INITIALIZED_CID, true);
        }
    }

    function getAccountKey(address account) internal pure returns (uint256) {
        return uint256(keccak256(abi.encode(account)));
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override(ERC721, IERC721) returns (uint256) {
        return getDocUint256Value(getAccountKey(owner), BALANCE_CID);
    }

    /**
     * @dev Returns the owner of the `tokenId`. Does NOT revert if token doesn't exist
     *
     * IMPORTANT: Any overrides to this function that add ownership of tokens not tracked by the
     * core ERC721 logic MUST be matched with the use of {_increaseBalance} to keep balances
     * consistent with ownership. The invariant to preserve is that for any address `a` the value returned by
     * `balanceOf(a)` must be equal to the number of tokens such that `_ownerOf(tokenId)` is `a`.
     */
    function _ownerOf(uint256 tokenId) internal view override returns (address) {
        return getDocAddressValue(tokenId, OWNER_CID);
    }

    /**
     * @param account Account to check hold time of
     * @param tokenId Id of the token
     * @return The time in seconds a given account has held a token
     */
    function getTimeHeld(
        address account,
        uint256 tokenId
    ) external view override returns (uint32) {
        address owner = ownerOf(tokenId);
        if (account == address(0)) {
            revert InvalidAccountAddress();
        }

        if (owner == account) {
            uint32 lastTransferTime = uint32(getDocUint256Value(tokenId, LAST_TRANSFER_TIME_CID));
            uint32 currentTime = SafeCast.toUint32(block.timestamp);
            return currentTime - lastTransferTime;
        }

        return 0;
    }

    /** @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.toString()));
        }
    }

    /**
     * @inheritdoc IERC165
     */
    function supportsInterface(
        bytes4 interfaceId
    )
        public
        view
        virtual
        override(
            ERC721,
            IERC165
        )
        returns (bool)
    {
        return
            interfaceId == type(IGameNFT).interfaceId ||
            ERC721.supportsInterface(interfaceId);
    }

    /**
     * Sets the before token transfer handler
     *
     * @param handlerAddress  Address to the transfer hook handler contract
     */
    function setUpdateHandler(
        address handlerAddress,
        bool before
    ) external onlyRole(MANAGER_ROLE) {
        if (before) {
            beforeUpdateHandler = handlerAddress;
        } else {
            afterUpdateHandler = handlerAddress;
        }
    }

    /** INTERNAL **/

    /** Initializes traits for the given tokenId */
    function _initializeTraits(uint256 tokenId) internal virtual {
        _setDocBoolValue(tokenId, INITIALIZED_CID, true);
    }

    function maxSupply() public view returns (uint256) {
        return getTableUint256Value(MAX_SUPPLY_CID);
    }

    /**
     * Mint token to recipient
     *
     * @param to        The recipient of the token
     * @param tokenId   Id of the token to mint
     */
    function _safeMint(address to, uint256 tokenId, bytes memory data) internal override {
        uint256 _maxSupply = maxSupply();
        if (_maxSupply != 0 && getTotalSupply() >= _maxSupply) {
            revert ExceedsMaxSupply();
        }

        if (tokenId == 0) {
            revert InvalidTokenId();
        }

        super._safeMint(to, tokenId, data);

        // Conditionally initialize traits
        if (getDocBoolValue(tokenId, INITIALIZED_CID) == false) {
            _initializeTraits(tokenId);
        }
    }

    /**
     * @notice Checks for soulbound status before transfer
     * @inheritdoc ERC721
     */
    function _update(
        address to,
        uint256 tokenId,
        address auth
    )
        internal
        virtual
        override(
            ERC721
        ) returns (address)
    {

         if (beforeUpdateHandler != address(0)) {
            IERC721UpdateHandler(
                    beforeUpdateHandler
                ).update(
                address(this),
                to,
                tokenId,
                auth
            );
        }

        address prevOwner = _ownerOf(tokenId);
        
        _setDocUint256Value(tokenId, LAST_TRANSFER_TIME_CID, SafeCast.toUint32(block.timestamp)); 
        bool isSoulbound = getTableBoolValue(IS_SOULBOUND_CID);
        require(!isSoulbound || prevOwner == address(0) || to == address(0), "GameNFT: Token is soulbound");
        
        
        address result = super._update(to, tokenId, auth);

        if (prevOwner != address(0)) {
            _decrementAmount(getAccountKey(prevOwner), BALANCE_CID, 1);
        } else {
            _incrementAmount(0, MINT_COUNT_CID, 1);
        }

        if (afterUpdateHandler != address(0)) {
            IERC721UpdateHandler(
                    afterUpdateHandler
                ).update(
                address(this),
                to,
                tokenId,
                auth
            );
        }
        _setDocAddressValue(tokenId, OWNER_CID, to);
        if (to == address(0)) {
            _incrementAmount(0, BURN_COUNT_CID, 1);
            _cleanupAfterBurn(tokenId);
        } else {
            _incrementAmount(getAccountKey(to), BALANCE_CID, 1);
        }
        return result;
    }

    function getLastTransfer(
        uint256 tokenId
    ) external view returns (uint32) {
        return uint32(getDocUint256Value(tokenId, LAST_TRANSFER_TIME_CID));
    }


    function mintBatch(address /*to*/, uint256 /*amount*/) pure external returns (uint256[] memory) {
        return new uint256[](0);
    }

    function setSoulbound(bool soulbound) external onlyRole(MANAGER_ROLE) {
        _setTableBoolValue(IS_SOULBOUND_CID, soulbound);
    }

    function _cleanupAfterBurn(uint256 tokenId) virtual internal {
        _setDocBoolValue(tokenId, INITIALIZED_CID, false);
    }

    function getTotalMinted() public view returns (uint256) {
        return getTableUint256Value(MINT_COUNT_CID);
    }

    function getTotalBurned() public view returns (uint256) {
        return getTableUint256Value(BURN_COUNT_CID);
    }

    function getTotalSupply() public view returns (uint256) {
        return getTotalMinted() - getTotalBurned();
    }

    function burn(uint256 tokenId) external {
        require(ownerOf(tokenId) == msg.sender, "You are not the owner of this token");
        _burn(tokenId);
    }
}

File 3 of 30 : ColumnConstants.sol
// 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"));

File 4 of 30 : RoleConstants.sol
// 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");

File 5 of 30 : IGigaRomNFT.sol
// SPDX-License-Identifier: MIT LICENSE

pragma solidity ^0.8.9;

import {IGameNFT} from "../gamenft/IGameNFT.sol";
import {IMintableERC721} from "../../mint/interfaces/IMintableERC721.sol";
uint256 constant ID = uint256(keccak256("game.gigaverse.gigaromnft"));

interface IGigaRomNFT is IGameNFT, IMintableERC721 {
    function totalMinted() external view returns (uint256);
    function getMaxSupply() external view returns (uint256);
}

File 6 of 30 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.20;

import {IERC165} from "../../utils/introspection/IERC165.sol";

/**
 * @dev Required interface of an ERC-721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon
     *   a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external;

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC-721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or
     *   {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon
     *   a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC-721
     * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must
     * understand this adds an external call which potentially creates a reentrancy vulnerability.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address from, address to, uint256 tokenId) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the address zero.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool approved) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);
}

File 7 of 30 : SafeCast.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (utils/math/SafeCast.sol)
// This file was procedurally generated from scripts/generate/templates/SafeCast.js.

pragma solidity ^0.8.20;

/**
 * @dev Wrappers over Solidity's uintXX/intXX/bool casting operators with added overflow
 * checks.
 *
 * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can
 * easily result in undesired exploitation or bugs, since developers usually
 * assume that overflows raise errors. `SafeCast` restores this intuition by
 * reverting the transaction when such an operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeCast {
    /**
     * @dev Value doesn't fit in an uint of `bits` size.
     */
    error SafeCastOverflowedUintDowncast(uint8 bits, uint256 value);

    /**
     * @dev An int value doesn't fit in an uint of `bits` size.
     */
    error SafeCastOverflowedIntToUint(int256 value);

    /**
     * @dev Value doesn't fit in an int of `bits` size.
     */
    error SafeCastOverflowedIntDowncast(uint8 bits, int256 value);

    /**
     * @dev An uint value doesn't fit in an int of `bits` size.
     */
    error SafeCastOverflowedUintToInt(uint256 value);

    /**
     * @dev Returns the downcasted uint248 from uint256, reverting on
     * overflow (when the input is greater than largest uint248).
     *
     * Counterpart to Solidity's `uint248` operator.
     *
     * Requirements:
     *
     * - input must fit into 248 bits
     */
    function toUint248(uint256 value) internal pure returns (uint248) {
        if (value > type(uint248).max) {
            revert SafeCastOverflowedUintDowncast(248, value);
        }
        return uint248(value);
    }

    /**
     * @dev Returns the downcasted uint240 from uint256, reverting on
     * overflow (when the input is greater than largest uint240).
     *
     * Counterpart to Solidity's `uint240` operator.
     *
     * Requirements:
     *
     * - input must fit into 240 bits
     */
    function toUint240(uint256 value) internal pure returns (uint240) {
        if (value > type(uint240).max) {
            revert SafeCastOverflowedUintDowncast(240, value);
        }
        return uint240(value);
    }

    /**
     * @dev Returns the downcasted uint232 from uint256, reverting on
     * overflow (when the input is greater than largest uint232).
     *
     * Counterpart to Solidity's `uint232` operator.
     *
     * Requirements:
     *
     * - input must fit into 232 bits
     */
    function toUint232(uint256 value) internal pure returns (uint232) {
        if (value > type(uint232).max) {
            revert SafeCastOverflowedUintDowncast(232, value);
        }
        return uint232(value);
    }

    /**
     * @dev Returns the downcasted uint224 from uint256, reverting on
     * overflow (when the input is greater than largest uint224).
     *
     * Counterpart to Solidity's `uint224` operator.
     *
     * Requirements:
     *
     * - input must fit into 224 bits
     */
    function toUint224(uint256 value) internal pure returns (uint224) {
        if (value > type(uint224).max) {
            revert SafeCastOverflowedUintDowncast(224, value);
        }
        return uint224(value);
    }

    /**
     * @dev Returns the downcasted uint216 from uint256, reverting on
     * overflow (when the input is greater than largest uint216).
     *
     * Counterpart to Solidity's `uint216` operator.
     *
     * Requirements:
     *
     * - input must fit into 216 bits
     */
    function toUint216(uint256 value) internal pure returns (uint216) {
        if (value > type(uint216).max) {
            revert SafeCastOverflowedUintDowncast(216, value);
        }
        return uint216(value);
    }

    /**
     * @dev Returns the downcasted uint208 from uint256, reverting on
     * overflow (when the input is greater than largest uint208).
     *
     * Counterpart to Solidity's `uint208` operator.
     *
     * Requirements:
     *
     * - input must fit into 208 bits
     */
    function toUint208(uint256 value) internal pure returns (uint208) {
        if (value > type(uint208).max) {
            revert SafeCastOverflowedUintDowncast(208, value);
        }
        return uint208(value);
    }

    /**
     * @dev Returns the downcasted uint200 from uint256, reverting on
     * overflow (when the input is greater than largest uint200).
     *
     * Counterpart to Solidity's `uint200` operator.
     *
     * Requirements:
     *
     * - input must fit into 200 bits
     */
    function toUint200(uint256 value) internal pure returns (uint200) {
        if (value > type(uint200).max) {
            revert SafeCastOverflowedUintDowncast(200, value);
        }
        return uint200(value);
    }

    /**
     * @dev Returns the downcasted uint192 from uint256, reverting on
     * overflow (when the input is greater than largest uint192).
     *
     * Counterpart to Solidity's `uint192` operator.
     *
     * Requirements:
     *
     * - input must fit into 192 bits
     */
    function toUint192(uint256 value) internal pure returns (uint192) {
        if (value > type(uint192).max) {
            revert SafeCastOverflowedUintDowncast(192, value);
        }
        return uint192(value);
    }

    /**
     * @dev Returns the downcasted uint184 from uint256, reverting on
     * overflow (when the input is greater than largest uint184).
     *
     * Counterpart to Solidity's `uint184` operator.
     *
     * Requirements:
     *
     * - input must fit into 184 bits
     */
    function toUint184(uint256 value) internal pure returns (uint184) {
        if (value > type(uint184).max) {
            revert SafeCastOverflowedUintDowncast(184, value);
        }
        return uint184(value);
    }

    /**
     * @dev Returns the downcasted uint176 from uint256, reverting on
     * overflow (when the input is greater than largest uint176).
     *
     * Counterpart to Solidity's `uint176` operator.
     *
     * Requirements:
     *
     * - input must fit into 176 bits
     */
    function toUint176(uint256 value) internal pure returns (uint176) {
        if (value > type(uint176).max) {
            revert SafeCastOverflowedUintDowncast(176, value);
        }
        return uint176(value);
    }

    /**
     * @dev Returns the downcasted uint168 from uint256, reverting on
     * overflow (when the input is greater than largest uint168).
     *
     * Counterpart to Solidity's `uint168` operator.
     *
     * Requirements:
     *
     * - input must fit into 168 bits
     */
    function toUint168(uint256 value) internal pure returns (uint168) {
        if (value > type(uint168).max) {
            revert SafeCastOverflowedUintDowncast(168, value);
        }
        return uint168(value);
    }

    /**
     * @dev Returns the downcasted uint160 from uint256, reverting on
     * overflow (when the input is greater than largest uint160).
     *
     * Counterpart to Solidity's `uint160` operator.
     *
     * Requirements:
     *
     * - input must fit into 160 bits
     */
    function toUint160(uint256 value) internal pure returns (uint160) {
        if (value > type(uint160).max) {
            revert SafeCastOverflowedUintDowncast(160, value);
        }
        return uint160(value);
    }

    /**
     * @dev Returns the downcasted uint152 from uint256, reverting on
     * overflow (when the input is greater than largest uint152).
     *
     * Counterpart to Solidity's `uint152` operator.
     *
     * Requirements:
     *
     * - input must fit into 152 bits
     */
    function toUint152(uint256 value) internal pure returns (uint152) {
        if (value > type(uint152).max) {
            revert SafeCastOverflowedUintDowncast(152, value);
        }
        return uint152(value);
    }

    /**
     * @dev Returns the downcasted uint144 from uint256, reverting on
     * overflow (when the input is greater than largest uint144).
     *
     * Counterpart to Solidity's `uint144` operator.
     *
     * Requirements:
     *
     * - input must fit into 144 bits
     */
    function toUint144(uint256 value) internal pure returns (uint144) {
        if (value > type(uint144).max) {
            revert SafeCastOverflowedUintDowncast(144, value);
        }
        return uint144(value);
    }

    /**
     * @dev Returns the downcasted uint136 from uint256, reverting on
     * overflow (when the input is greater than largest uint136).
     *
     * Counterpart to Solidity's `uint136` operator.
     *
     * Requirements:
     *
     * - input must fit into 136 bits
     */
    function toUint136(uint256 value) internal pure returns (uint136) {
        if (value > type(uint136).max) {
            revert SafeCastOverflowedUintDowncast(136, value);
        }
        return uint136(value);
    }

    /**
     * @dev Returns the downcasted uint128 from uint256, reverting on
     * overflow (when the input is greater than largest uint128).
     *
     * Counterpart to Solidity's `uint128` operator.
     *
     * Requirements:
     *
     * - input must fit into 128 bits
     */
    function toUint128(uint256 value) internal pure returns (uint128) {
        if (value > type(uint128).max) {
            revert SafeCastOverflowedUintDowncast(128, value);
        }
        return uint128(value);
    }

    /**
     * @dev Returns the downcasted uint120 from uint256, reverting on
     * overflow (when the input is greater than largest uint120).
     *
     * Counterpart to Solidity's `uint120` operator.
     *
     * Requirements:
     *
     * - input must fit into 120 bits
     */
    function toUint120(uint256 value) internal pure returns (uint120) {
        if (value > type(uint120).max) {
            revert SafeCastOverflowedUintDowncast(120, value);
        }
        return uint120(value);
    }

    /**
     * @dev Returns the downcasted uint112 from uint256, reverting on
     * overflow (when the input is greater than largest uint112).
     *
     * Counterpart to Solidity's `uint112` operator.
     *
     * Requirements:
     *
     * - input must fit into 112 bits
     */
    function toUint112(uint256 value) internal pure returns (uint112) {
        if (value > type(uint112).max) {
            revert SafeCastOverflowedUintDowncast(112, value);
        }
        return uint112(value);
    }

    /**
     * @dev Returns the downcasted uint104 from uint256, reverting on
     * overflow (when the input is greater than largest uint104).
     *
     * Counterpart to Solidity's `uint104` operator.
     *
     * Requirements:
     *
     * - input must fit into 104 bits
     */
    function toUint104(uint256 value) internal pure returns (uint104) {
        if (value > type(uint104).max) {
            revert SafeCastOverflowedUintDowncast(104, value);
        }
        return uint104(value);
    }

    /**
     * @dev Returns the downcasted uint96 from uint256, reverting on
     * overflow (when the input is greater than largest uint96).
     *
     * Counterpart to Solidity's `uint96` operator.
     *
     * Requirements:
     *
     * - input must fit into 96 bits
     */
    function toUint96(uint256 value) internal pure returns (uint96) {
        if (value > type(uint96).max) {
            revert SafeCastOverflowedUintDowncast(96, value);
        }
        return uint96(value);
    }

    /**
     * @dev Returns the downcasted uint88 from uint256, reverting on
     * overflow (when the input is greater than largest uint88).
     *
     * Counterpart to Solidity's `uint88` operator.
     *
     * Requirements:
     *
     * - input must fit into 88 bits
     */
    function toUint88(uint256 value) internal pure returns (uint88) {
        if (value > type(uint88).max) {
            revert SafeCastOverflowedUintDowncast(88, value);
        }
        return uint88(value);
    }

    /**
     * @dev Returns the downcasted uint80 from uint256, reverting on
     * overflow (when the input is greater than largest uint80).
     *
     * Counterpart to Solidity's `uint80` operator.
     *
     * Requirements:
     *
     * - input must fit into 80 bits
     */
    function toUint80(uint256 value) internal pure returns (uint80) {
        if (value > type(uint80).max) {
            revert SafeCastOverflowedUintDowncast(80, value);
        }
        return uint80(value);
    }

    /**
     * @dev Returns the downcasted uint72 from uint256, reverting on
     * overflow (when the input is greater than largest uint72).
     *
     * Counterpart to Solidity's `uint72` operator.
     *
     * Requirements:
     *
     * - input must fit into 72 bits
     */
    function toUint72(uint256 value) internal pure returns (uint72) {
        if (value > type(uint72).max) {
            revert SafeCastOverflowedUintDowncast(72, value);
        }
        return uint72(value);
    }

    /**
     * @dev Returns the downcasted uint64 from uint256, reverting on
     * overflow (when the input is greater than largest uint64).
     *
     * Counterpart to Solidity's `uint64` operator.
     *
     * Requirements:
     *
     * - input must fit into 64 bits
     */
    function toUint64(uint256 value) internal pure returns (uint64) {
        if (value > type(uint64).max) {
            revert SafeCastOverflowedUintDowncast(64, value);
        }
        return uint64(value);
    }

    /**
     * @dev Returns the downcasted uint56 from uint256, reverting on
     * overflow (when the input is greater than largest uint56).
     *
     * Counterpart to Solidity's `uint56` operator.
     *
     * Requirements:
     *
     * - input must fit into 56 bits
     */
    function toUint56(uint256 value) internal pure returns (uint56) {
        if (value > type(uint56).max) {
            revert SafeCastOverflowedUintDowncast(56, value);
        }
        return uint56(value);
    }

    /**
     * @dev Returns the downcasted uint48 from uint256, reverting on
     * overflow (when the input is greater than largest uint48).
     *
     * Counterpart to Solidity's `uint48` operator.
     *
     * Requirements:
     *
     * - input must fit into 48 bits
     */
    function toUint48(uint256 value) internal pure returns (uint48) {
        if (value > type(uint48).max) {
            revert SafeCastOverflowedUintDowncast(48, value);
        }
        return uint48(value);
    }

    /**
     * @dev Returns the downcasted uint40 from uint256, reverting on
     * overflow (when the input is greater than largest uint40).
     *
     * Counterpart to Solidity's `uint40` operator.
     *
     * Requirements:
     *
     * - input must fit into 40 bits
     */
    function toUint40(uint256 value) internal pure returns (uint40) {
        if (value > type(uint40).max) {
            revert SafeCastOverflowedUintDowncast(40, value);
        }
        return uint40(value);
    }

    /**
     * @dev Returns the downcasted uint32 from uint256, reverting on
     * overflow (when the input is greater than largest uint32).
     *
     * Counterpart to Solidity's `uint32` operator.
     *
     * Requirements:
     *
     * - input must fit into 32 bits
     */
    function toUint32(uint256 value) internal pure returns (uint32) {
        if (value > type(uint32).max) {
            revert SafeCastOverflowedUintDowncast(32, value);
        }
        return uint32(value);
    }

    /**
     * @dev Returns the downcasted uint24 from uint256, reverting on
     * overflow (when the input is greater than largest uint24).
     *
     * Counterpart to Solidity's `uint24` operator.
     *
     * Requirements:
     *
     * - input must fit into 24 bits
     */
    function toUint24(uint256 value) internal pure returns (uint24) {
        if (value > type(uint24).max) {
            revert SafeCastOverflowedUintDowncast(24, value);
        }
        return uint24(value);
    }

    /**
     * @dev Returns the downcasted uint16 from uint256, reverting on
     * overflow (when the input is greater than largest uint16).
     *
     * Counterpart to Solidity's `uint16` operator.
     *
     * Requirements:
     *
     * - input must fit into 16 bits
     */
    function toUint16(uint256 value) internal pure returns (uint16) {
        if (value > type(uint16).max) {
            revert SafeCastOverflowedUintDowncast(16, value);
        }
        return uint16(value);
    }

    /**
     * @dev Returns the downcasted uint8 from uint256, reverting on
     * overflow (when the input is greater than largest uint8).
     *
     * Counterpart to Solidity's `uint8` operator.
     *
     * Requirements:
     *
     * - input must fit into 8 bits
     */
    function toUint8(uint256 value) internal pure returns (uint8) {
        if (value > type(uint8).max) {
            revert SafeCastOverflowedUintDowncast(8, value);
        }
        return uint8(value);
    }

    /**
     * @dev Converts a signed int256 into an unsigned uint256.
     *
     * Requirements:
     *
     * - input must be greater than or equal to 0.
     */
    function toUint256(int256 value) internal pure returns (uint256) {
        if (value < 0) {
            revert SafeCastOverflowedIntToUint(value);
        }
        return uint256(value);
    }

    /**
     * @dev Returns the downcasted int248 from int256, reverting on
     * overflow (when the input is less than smallest int248 or
     * greater than largest int248).
     *
     * Counterpart to Solidity's `int248` operator.
     *
     * Requirements:
     *
     * - input must fit into 248 bits
     */
    function toInt248(int256 value) internal pure returns (int248 downcasted) {
        downcasted = int248(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(248, value);
        }
    }

    /**
     * @dev Returns the downcasted int240 from int256, reverting on
     * overflow (when the input is less than smallest int240 or
     * greater than largest int240).
     *
     * Counterpart to Solidity's `int240` operator.
     *
     * Requirements:
     *
     * - input must fit into 240 bits
     */
    function toInt240(int256 value) internal pure returns (int240 downcasted) {
        downcasted = int240(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(240, value);
        }
    }

    /**
     * @dev Returns the downcasted int232 from int256, reverting on
     * overflow (when the input is less than smallest int232 or
     * greater than largest int232).
     *
     * Counterpart to Solidity's `int232` operator.
     *
     * Requirements:
     *
     * - input must fit into 232 bits
     */
    function toInt232(int256 value) internal pure returns (int232 downcasted) {
        downcasted = int232(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(232, value);
        }
    }

    /**
     * @dev Returns the downcasted int224 from int256, reverting on
     * overflow (when the input is less than smallest int224 or
     * greater than largest int224).
     *
     * Counterpart to Solidity's `int224` operator.
     *
     * Requirements:
     *
     * - input must fit into 224 bits
     */
    function toInt224(int256 value) internal pure returns (int224 downcasted) {
        downcasted = int224(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(224, value);
        }
    }

    /**
     * @dev Returns the downcasted int216 from int256, reverting on
     * overflow (when the input is less than smallest int216 or
     * greater than largest int216).
     *
     * Counterpart to Solidity's `int216` operator.
     *
     * Requirements:
     *
     * - input must fit into 216 bits
     */
    function toInt216(int256 value) internal pure returns (int216 downcasted) {
        downcasted = int216(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(216, value);
        }
    }

    /**
     * @dev Returns the downcasted int208 from int256, reverting on
     * overflow (when the input is less than smallest int208 or
     * greater than largest int208).
     *
     * Counterpart to Solidity's `int208` operator.
     *
     * Requirements:
     *
     * - input must fit into 208 bits
     */
    function toInt208(int256 value) internal pure returns (int208 downcasted) {
        downcasted = int208(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(208, value);
        }
    }

    /**
     * @dev Returns the downcasted int200 from int256, reverting on
     * overflow (when the input is less than smallest int200 or
     * greater than largest int200).
     *
     * Counterpart to Solidity's `int200` operator.
     *
     * Requirements:
     *
     * - input must fit into 200 bits
     */
    function toInt200(int256 value) internal pure returns (int200 downcasted) {
        downcasted = int200(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(200, value);
        }
    }

    /**
     * @dev Returns the downcasted int192 from int256, reverting on
     * overflow (when the input is less than smallest int192 or
     * greater than largest int192).
     *
     * Counterpart to Solidity's `int192` operator.
     *
     * Requirements:
     *
     * - input must fit into 192 bits
     */
    function toInt192(int256 value) internal pure returns (int192 downcasted) {
        downcasted = int192(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(192, value);
        }
    }

    /**
     * @dev Returns the downcasted int184 from int256, reverting on
     * overflow (when the input is less than smallest int184 or
     * greater than largest int184).
     *
     * Counterpart to Solidity's `int184` operator.
     *
     * Requirements:
     *
     * - input must fit into 184 bits
     */
    function toInt184(int256 value) internal pure returns (int184 downcasted) {
        downcasted = int184(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(184, value);
        }
    }

    /**
     * @dev Returns the downcasted int176 from int256, reverting on
     * overflow (when the input is less than smallest int176 or
     * greater than largest int176).
     *
     * Counterpart to Solidity's `int176` operator.
     *
     * Requirements:
     *
     * - input must fit into 176 bits
     */
    function toInt176(int256 value) internal pure returns (int176 downcasted) {
        downcasted = int176(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(176, value);
        }
    }

    /**
     * @dev Returns the downcasted int168 from int256, reverting on
     * overflow (when the input is less than smallest int168 or
     * greater than largest int168).
     *
     * Counterpart to Solidity's `int168` operator.
     *
     * Requirements:
     *
     * - input must fit into 168 bits
     */
    function toInt168(int256 value) internal pure returns (int168 downcasted) {
        downcasted = int168(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(168, value);
        }
    }

    /**
     * @dev Returns the downcasted int160 from int256, reverting on
     * overflow (when the input is less than smallest int160 or
     * greater than largest int160).
     *
     * Counterpart to Solidity's `int160` operator.
     *
     * Requirements:
     *
     * - input must fit into 160 bits
     */
    function toInt160(int256 value) internal pure returns (int160 downcasted) {
        downcasted = int160(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(160, value);
        }
    }

    /**
     * @dev Returns the downcasted int152 from int256, reverting on
     * overflow (when the input is less than smallest int152 or
     * greater than largest int152).
     *
     * Counterpart to Solidity's `int152` operator.
     *
     * Requirements:
     *
     * - input must fit into 152 bits
     */
    function toInt152(int256 value) internal pure returns (int152 downcasted) {
        downcasted = int152(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(152, value);
        }
    }

    /**
     * @dev Returns the downcasted int144 from int256, reverting on
     * overflow (when the input is less than smallest int144 or
     * greater than largest int144).
     *
     * Counterpart to Solidity's `int144` operator.
     *
     * Requirements:
     *
     * - input must fit into 144 bits
     */
    function toInt144(int256 value) internal pure returns (int144 downcasted) {
        downcasted = int144(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(144, value);
        }
    }

    /**
     * @dev Returns the downcasted int136 from int256, reverting on
     * overflow (when the input is less than smallest int136 or
     * greater than largest int136).
     *
     * Counterpart to Solidity's `int136` operator.
     *
     * Requirements:
     *
     * - input must fit into 136 bits
     */
    function toInt136(int256 value) internal pure returns (int136 downcasted) {
        downcasted = int136(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(136, value);
        }
    }

    /**
     * @dev Returns the downcasted int128 from int256, reverting on
     * overflow (when the input is less than smallest int128 or
     * greater than largest int128).
     *
     * Counterpart to Solidity's `int128` operator.
     *
     * Requirements:
     *
     * - input must fit into 128 bits
     */
    function toInt128(int256 value) internal pure returns (int128 downcasted) {
        downcasted = int128(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(128, value);
        }
    }

    /**
     * @dev Returns the downcasted int120 from int256, reverting on
     * overflow (when the input is less than smallest int120 or
     * greater than largest int120).
     *
     * Counterpart to Solidity's `int120` operator.
     *
     * Requirements:
     *
     * - input must fit into 120 bits
     */
    function toInt120(int256 value) internal pure returns (int120 downcasted) {
        downcasted = int120(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(120, value);
        }
    }

    /**
     * @dev Returns the downcasted int112 from int256, reverting on
     * overflow (when the input is less than smallest int112 or
     * greater than largest int112).
     *
     * Counterpart to Solidity's `int112` operator.
     *
     * Requirements:
     *
     * - input must fit into 112 bits
     */
    function toInt112(int256 value) internal pure returns (int112 downcasted) {
        downcasted = int112(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(112, value);
        }
    }

    /**
     * @dev Returns the downcasted int104 from int256, reverting on
     * overflow (when the input is less than smallest int104 or
     * greater than largest int104).
     *
     * Counterpart to Solidity's `int104` operator.
     *
     * Requirements:
     *
     * - input must fit into 104 bits
     */
    function toInt104(int256 value) internal pure returns (int104 downcasted) {
        downcasted = int104(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(104, value);
        }
    }

    /**
     * @dev Returns the downcasted int96 from int256, reverting on
     * overflow (when the input is less than smallest int96 or
     * greater than largest int96).
     *
     * Counterpart to Solidity's `int96` operator.
     *
     * Requirements:
     *
     * - input must fit into 96 bits
     */
    function toInt96(int256 value) internal pure returns (int96 downcasted) {
        downcasted = int96(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(96, value);
        }
    }

    /**
     * @dev Returns the downcasted int88 from int256, reverting on
     * overflow (when the input is less than smallest int88 or
     * greater than largest int88).
     *
     * Counterpart to Solidity's `int88` operator.
     *
     * Requirements:
     *
     * - input must fit into 88 bits
     */
    function toInt88(int256 value) internal pure returns (int88 downcasted) {
        downcasted = int88(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(88, value);
        }
    }

    /**
     * @dev Returns the downcasted int80 from int256, reverting on
     * overflow (when the input is less than smallest int80 or
     * greater than largest int80).
     *
     * Counterpart to Solidity's `int80` operator.
     *
     * Requirements:
     *
     * - input must fit into 80 bits
     */
    function toInt80(int256 value) internal pure returns (int80 downcasted) {
        downcasted = int80(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(80, value);
        }
    }

    /**
     * @dev Returns the downcasted int72 from int256, reverting on
     * overflow (when the input is less than smallest int72 or
     * greater than largest int72).
     *
     * Counterpart to Solidity's `int72` operator.
     *
     * Requirements:
     *
     * - input must fit into 72 bits
     */
    function toInt72(int256 value) internal pure returns (int72 downcasted) {
        downcasted = int72(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(72, value);
        }
    }

    /**
     * @dev Returns the downcasted int64 from int256, reverting on
     * overflow (when the input is less than smallest int64 or
     * greater than largest int64).
     *
     * Counterpart to Solidity's `int64` operator.
     *
     * Requirements:
     *
     * - input must fit into 64 bits
     */
    function toInt64(int256 value) internal pure returns (int64 downcasted) {
        downcasted = int64(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(64, value);
        }
    }

    /**
     * @dev Returns the downcasted int56 from int256, reverting on
     * overflow (when the input is less than smallest int56 or
     * greater than largest int56).
     *
     * Counterpart to Solidity's `int56` operator.
     *
     * Requirements:
     *
     * - input must fit into 56 bits
     */
    function toInt56(int256 value) internal pure returns (int56 downcasted) {
        downcasted = int56(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(56, value);
        }
    }

    /**
     * @dev Returns the downcasted int48 from int256, reverting on
     * overflow (when the input is less than smallest int48 or
     * greater than largest int48).
     *
     * Counterpart to Solidity's `int48` operator.
     *
     * Requirements:
     *
     * - input must fit into 48 bits
     */
    function toInt48(int256 value) internal pure returns (int48 downcasted) {
        downcasted = int48(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(48, value);
        }
    }

    /**
     * @dev Returns the downcasted int40 from int256, reverting on
     * overflow (when the input is less than smallest int40 or
     * greater than largest int40).
     *
     * Counterpart to Solidity's `int40` operator.
     *
     * Requirements:
     *
     * - input must fit into 40 bits
     */
    function toInt40(int256 value) internal pure returns (int40 downcasted) {
        downcasted = int40(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(40, value);
        }
    }

    /**
     * @dev Returns the downcasted int32 from int256, reverting on
     * overflow (when the input is less than smallest int32 or
     * greater than largest int32).
     *
     * Counterpart to Solidity's `int32` operator.
     *
     * Requirements:
     *
     * - input must fit into 32 bits
     */
    function toInt32(int256 value) internal pure returns (int32 downcasted) {
        downcasted = int32(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(32, value);
        }
    }

    /**
     * @dev Returns the downcasted int24 from int256, reverting on
     * overflow (when the input is less than smallest int24 or
     * greater than largest int24).
     *
     * Counterpart to Solidity's `int24` operator.
     *
     * Requirements:
     *
     * - input must fit into 24 bits
     */
    function toInt24(int256 value) internal pure returns (int24 downcasted) {
        downcasted = int24(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(24, value);
        }
    }

    /**
     * @dev Returns the downcasted int16 from int256, reverting on
     * overflow (when the input is less than smallest int16 or
     * greater than largest int16).
     *
     * Counterpart to Solidity's `int16` operator.
     *
     * Requirements:
     *
     * - input must fit into 16 bits
     */
    function toInt16(int256 value) internal pure returns (int16 downcasted) {
        downcasted = int16(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(16, value);
        }
    }

    /**
     * @dev Returns the downcasted int8 from int256, reverting on
     * overflow (when the input is less than smallest int8 or
     * greater than largest int8).
     *
     * Counterpart to Solidity's `int8` operator.
     *
     * Requirements:
     *
     * - input must fit into 8 bits
     */
    function toInt8(int256 value) internal pure returns (int8 downcasted) {
        downcasted = int8(value);
        if (downcasted != value) {
            revert SafeCastOverflowedIntDowncast(8, value);
        }
    }

    /**
     * @dev Converts an unsigned uint256 into a signed int256.
     *
     * Requirements:
     *
     * - input must be less than or equal to maxInt256.
     */
    function toInt256(uint256 value) internal pure returns (int256) {
        // Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive
        if (value > uint256(type(int256).max)) {
            revert SafeCastOverflowedUintToInt(value);
        }
        return int256(value);
    }

    /**
     * @dev Cast a boolean (false or true) to a uint256 (0 or 1) with no jump.
     */
    function toUint(bool b) internal pure returns (uint256 u) {
        assembly ("memory-safe") {
            u := iszero(iszero(b))
        }
    }
}

File 8 of 30 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.2.0) (utils/Strings.sol)

pragma solidity ^0.8.20;

import {Math} from "./math/Math.sol";
import {SafeCast} from "./math/SafeCast.sol";
import {SignedMath} from "./math/SignedMath.sol";

/**
 * @dev String operations.
 */
library Strings {
    using SafeCast for *;

    bytes16 private constant HEX_DIGITS = "0123456789abcdef";
    uint8 private constant ADDRESS_LENGTH = 20;

    /**
     * @dev The `value` string doesn't fit in the specified `length`.
     */
    error StringsInsufficientHexLength(uint256 value, uint256 length);

    /**
     * @dev The string being parsed contains characters that are not in scope of the given base.
     */
    error StringsInvalidChar();

    /**
     * @dev The string being parsed is not a properly formatted address.
     */
    error StringsInvalidAddressFormat();

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            assembly ("memory-safe") {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                assembly ("memory-safe") {
                    mstore8(ptr, byte(mod(value, 10), HEX_DIGITS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `int256` to its ASCII `string` decimal representation.
     */
    function toStringSigned(int256 value) internal pure returns (string memory) {
        return string.concat(value < 0 ? "-" : "", toString(SignedMath.abs(value)));
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, Math.log256(value) + 1);
        }
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        uint256 localValue = value;
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = HEX_DIGITS[localValue & 0xf];
            localValue >>= 4;
        }
        if (localValue != 0) {
            revert StringsInsufficientHexLength(value, length);
        }
        return string(buffer);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal
     * representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), ADDRESS_LENGTH);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its checksummed ASCII `string` hexadecimal
     * representation, according to EIP-55.
     */
    function toChecksumHexString(address addr) internal pure returns (string memory) {
        bytes memory buffer = bytes(toHexString(addr));

        // hash the hex part of buffer (skip length + 2 bytes, length 40)
        uint256 hashValue;
        assembly ("memory-safe") {
            hashValue := shr(96, keccak256(add(buffer, 0x22), 40))
        }

        for (uint256 i = 41; i > 1; --i) {
            // possible values for buffer[i] are 48 (0) to 57 (9) and 97 (a) to 102 (f)
            if (hashValue & 0xf > 7 && uint8(buffer[i]) > 96) {
                // case shift by xoring with 0x20
                buffer[i] ^= 0x20;
            }
            hashValue >>= 4;
        }
        return string(buffer);
    }

    /**
     * @dev Returns true if the two strings are equal.
     */
    function equal(string memory a, string memory b) internal pure returns (bool) {
        return bytes(a).length == bytes(b).length && keccak256(bytes(a)) == keccak256(bytes(b));
    }

    /**
     * @dev Parse a decimal string and returns the value as a `uint256`.
     *
     * Requirements:
     * - The string must be formatted as `[0-9]*`
     * - The result must fit into an `uint256` type
     */
    function parseUint(string memory input) internal pure returns (uint256) {
        return parseUint(input, 0, bytes(input).length);
    }

    /**
     * @dev Variant of {parseUint} that parses a substring of `input` located between position `begin` (included) and
     * `end` (excluded).
     *
     * Requirements:
     * - The substring must be formatted as `[0-9]*`
     * - The result must fit into an `uint256` type
     */
    function parseUint(string memory input, uint256 begin, uint256 end) internal pure returns (uint256) {
        (bool success, uint256 value) = tryParseUint(input, begin, end);
        if (!success) revert StringsInvalidChar();
        return value;
    }

    /**
     * @dev Variant of {parseUint-string} that returns false if the parsing fails because of an invalid character.
     *
     * NOTE: This function will revert if the result does not fit in a `uint256`.
     */
    function tryParseUint(string memory input) internal pure returns (bool success, uint256 value) {
        return _tryParseUintUncheckedBounds(input, 0, bytes(input).length);
    }

    /**
     * @dev Variant of {parseUint-string-uint256-uint256} that returns false if the parsing fails because of an invalid
     * character.
     *
     * NOTE: This function will revert if the result does not fit in a `uint256`.
     */
    function tryParseUint(
        string memory input,
        uint256 begin,
        uint256 end
    ) internal pure returns (bool success, uint256 value) {
        if (end > bytes(input).length || begin > end) return (false, 0);
        return _tryParseUintUncheckedBounds(input, begin, end);
    }

    /**
     * @dev Implementation of {tryParseUint} that does not check bounds. Caller should make sure that
     * `begin <= end <= input.length`. Other inputs would result in undefined behavior.
     */
    function _tryParseUintUncheckedBounds(
        string memory input,
        uint256 begin,
        uint256 end
    ) private pure returns (bool success, uint256 value) {
        bytes memory buffer = bytes(input);

        uint256 result = 0;
        for (uint256 i = begin; i < end; ++i) {
            uint8 chr = _tryParseChr(bytes1(_unsafeReadBytesOffset(buffer, i)));
            if (chr > 9) return (false, 0);
            result *= 10;
            result += chr;
        }
        return (true, result);
    }

    /**
     * @dev Parse a decimal string and returns the value as a `int256`.
     *
     * Requirements:
     * - The string must be formatted as `[-+]?[0-9]*`
     * - The result must fit in an `int256` type.
     */
    function parseInt(string memory input) internal pure returns (int256) {
        return parseInt(input, 0, bytes(input).length);
    }

    /**
     * @dev Variant of {parseInt-string} that parses a substring of `input` located between position `begin` (included) and
     * `end` (excluded).
     *
     * Requirements:
     * - The substring must be formatted as `[-+]?[0-9]*`
     * - The result must fit in an `int256` type.
     */
    function parseInt(string memory input, uint256 begin, uint256 end) internal pure returns (int256) {
        (bool success, int256 value) = tryParseInt(input, begin, end);
        if (!success) revert StringsInvalidChar();
        return value;
    }

    /**
     * @dev Variant of {parseInt-string} that returns false if the parsing fails because of an invalid character or if
     * the result does not fit in a `int256`.
     *
     * NOTE: This function will revert if the absolute value of the result does not fit in a `uint256`.
     */
    function tryParseInt(string memory input) internal pure returns (bool success, int256 value) {
        return _tryParseIntUncheckedBounds(input, 0, bytes(input).length);
    }

    uint256 private constant ABS_MIN_INT256 = 2 ** 255;

    /**
     * @dev Variant of {parseInt-string-uint256-uint256} that returns false if the parsing fails because of an invalid
     * character or if the result does not fit in a `int256`.
     *
     * NOTE: This function will revert if the absolute value of the result does not fit in a `uint256`.
     */
    function tryParseInt(
        string memory input,
        uint256 begin,
        uint256 end
    ) internal pure returns (bool success, int256 value) {
        if (end > bytes(input).length || begin > end) return (false, 0);
        return _tryParseIntUncheckedBounds(input, begin, end);
    }

    /**
     * @dev Implementation of {tryParseInt} that does not check bounds. Caller should make sure that
     * `begin <= end <= input.length`. Other inputs would result in undefined behavior.
     */
    function _tryParseIntUncheckedBounds(
        string memory input,
        uint256 begin,
        uint256 end
    ) private pure returns (bool success, int256 value) {
        bytes memory buffer = bytes(input);

        // Check presence of a negative sign.
        bytes1 sign = begin == end ? bytes1(0) : bytes1(_unsafeReadBytesOffset(buffer, begin)); // don't do out-of-bound (possibly unsafe) read if sub-string is empty
        bool positiveSign = sign == bytes1("+");
        bool negativeSign = sign == bytes1("-");
        uint256 offset = (positiveSign || negativeSign).toUint();

        (bool absSuccess, uint256 absValue) = tryParseUint(input, begin + offset, end);

        if (absSuccess && absValue < ABS_MIN_INT256) {
            return (true, negativeSign ? -int256(absValue) : int256(absValue));
        } else if (absSuccess && negativeSign && absValue == ABS_MIN_INT256) {
            return (true, type(int256).min);
        } else return (false, 0);
    }

    /**
     * @dev Parse a hexadecimal string (with or without "0x" prefix), and returns the value as a `uint256`.
     *
     * Requirements:
     * - The string must be formatted as `(0x)?[0-9a-fA-F]*`
     * - The result must fit in an `uint256` type.
     */
    function parseHexUint(string memory input) internal pure returns (uint256) {
        return parseHexUint(input, 0, bytes(input).length);
    }

    /**
     * @dev Variant of {parseHexUint} that parses a substring of `input` located between position `begin` (included) and
     * `end` (excluded).
     *
     * Requirements:
     * - The substring must be formatted as `(0x)?[0-9a-fA-F]*`
     * - The result must fit in an `uint256` type.
     */
    function parseHexUint(string memory input, uint256 begin, uint256 end) internal pure returns (uint256) {
        (bool success, uint256 value) = tryParseHexUint(input, begin, end);
        if (!success) revert StringsInvalidChar();
        return value;
    }

    /**
     * @dev Variant of {parseHexUint-string} that returns false if the parsing fails because of an invalid character.
     *
     * NOTE: This function will revert if the result does not fit in a `uint256`.
     */
    function tryParseHexUint(string memory input) internal pure returns (bool success, uint256 value) {
        return _tryParseHexUintUncheckedBounds(input, 0, bytes(input).length);
    }

    /**
     * @dev Variant of {parseHexUint-string-uint256-uint256} that returns false if the parsing fails because of an
     * invalid character.
     *
     * NOTE: This function will revert if the result does not fit in a `uint256`.
     */
    function tryParseHexUint(
        string memory input,
        uint256 begin,
        uint256 end
    ) internal pure returns (bool success, uint256 value) {
        if (end > bytes(input).length || begin > end) return (false, 0);
        return _tryParseHexUintUncheckedBounds(input, begin, end);
    }

    /**
     * @dev Implementation of {tryParseHexUint} that does not check bounds. Caller should make sure that
     * `begin <= end <= input.length`. Other inputs would result in undefined behavior.
     */
    function _tryParseHexUintUncheckedBounds(
        string memory input,
        uint256 begin,
        uint256 end
    ) private pure returns (bool success, uint256 value) {
        bytes memory buffer = bytes(input);

        // skip 0x prefix if present
        bool hasPrefix = (end > begin + 1) && bytes2(_unsafeReadBytesOffset(buffer, begin)) == bytes2("0x"); // don't do out-of-bound (possibly unsafe) read if sub-string is empty
        uint256 offset = hasPrefix.toUint() * 2;

        uint256 result = 0;
        for (uint256 i = begin + offset; i < end; ++i) {
            uint8 chr = _tryParseChr(bytes1(_unsafeReadBytesOffset(buffer, i)));
            if (chr > 15) return (false, 0);
            result *= 16;
            unchecked {
                // Multiplying by 16 is equivalent to a shift of 4 bits (with additional overflow check).
                // This guaratees that adding a value < 16 will not cause an overflow, hence the unchecked.
                result += chr;
            }
        }
        return (true, result);
    }

    /**
     * @dev Parse a hexadecimal string (with or without "0x" prefix), and returns the value as an `address`.
     *
     * Requirements:
     * - The string must be formatted as `(0x)?[0-9a-fA-F]{40}`
     */
    function parseAddress(string memory input) internal pure returns (address) {
        return parseAddress(input, 0, bytes(input).length);
    }

    /**
     * @dev Variant of {parseAddress} that parses a substring of `input` located between position `begin` (included) and
     * `end` (excluded).
     *
     * Requirements:
     * - The substring must be formatted as `(0x)?[0-9a-fA-F]{40}`
     */
    function parseAddress(string memory input, uint256 begin, uint256 end) internal pure returns (address) {
        (bool success, address value) = tryParseAddress(input, begin, end);
        if (!success) revert StringsInvalidAddressFormat();
        return value;
    }

    /**
     * @dev Variant of {parseAddress-string} that returns false if the parsing fails because the input is not a properly
     * formatted address. See {parseAddress} requirements.
     */
    function tryParseAddress(string memory input) internal pure returns (bool success, address value) {
        return tryParseAddress(input, 0, bytes(input).length);
    }

    /**
     * @dev Variant of {parseAddress-string-uint256-uint256} that returns false if the parsing fails because input is not a properly
     * formatted address. See {parseAddress} requirements.
     */
    function tryParseAddress(
        string memory input,
        uint256 begin,
        uint256 end
    ) internal pure returns (bool success, address value) {
        if (end > bytes(input).length || begin > end) return (false, address(0));

        bool hasPrefix = (end > begin + 1) && bytes2(_unsafeReadBytesOffset(bytes(input), begin)) == bytes2("0x"); // don't do out-of-bound (possibly unsafe) read if sub-string is empty
        uint256 expectedLength = 40 + hasPrefix.toUint() * 2;

        // check that input is the correct length
        if (end - begin == expectedLength) {
            // length guarantees that this does not overflow, and value is at most type(uint160).max
            (bool s, uint256 v) = _tryParseHexUintUncheckedBounds(input, begin, end);
            return (s, address(uint160(v)));
        } else {
            return (false, address(0));
        }
    }

    function _tryParseChr(bytes1 chr) private pure returns (uint8) {
        uint8 value = uint8(chr);

        // Try to parse `chr`:
        // - Case 1: [0-9]
        // - Case 2: [a-f]
        // - Case 3: [A-F]
        // - otherwise not supported
        unchecked {
            if (value > 47 && value < 58) value -= 48;
            else if (value > 96 && value < 103) value -= 87;
            else if (value > 64 && value < 71) value -= 55;
            else return type(uint8).max;
        }

        return value;
    }

    /**
     * @dev Reads a bytes32 from a bytes array without bounds checking.
     *
     * NOTE: making this function internal would mean it could be used with memory unsafe offset, and marking the
     * assembly block as such would prevent some optimizations.
     */
    function _unsafeReadBytesOffset(bytes memory buffer, uint256 offset) private pure returns (bytes32 value) {
        // This is not memory safe in the general case, but all calls to this private function are within bounds.
        assembly ("memory-safe") {
            value := mload(add(buffer, add(0x20, offset)))
        }
    }
}

File 9 of 30 : IGameNFT.sol
// SPDX-License-Identifier: MIT LICENSE

pragma solidity ^0.8.13;

import {IERC721} from "@openzeppelin/contracts/token/ERC721/IERC721.sol";

/**
 * @title Interface for game NFTs that have stats and other properties
 */
interface IGameNFT is IERC721 {
    /**
     * @param account Account to check hold time of
     * @param tokenId Id of the token
     * @return The time in seconds a given account has held a token
     */
    function getTimeHeld(
        address account,
        uint256 tokenId
    ) external view returns (uint32);

    function getLastTransfer(
        uint256 tokenId
    ) external view returns (uint32);

    /**
     * Mints a batch of ERC721 token
     *
     * @param to        Recipient of the token
     * @param amount    Quantity of token to mint
     */
    function mintBatch(address to, uint256 amount) external returns (uint256[] memory);

    function exists(uint256 tokenId) external view returns (bool);
}

File 10 of 30 : DataTable.sol
// 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));
    }
}

File 11 of 30 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.20;

import {IERC721} from "./IERC721.sol";
import {IERC721Metadata} from "./extensions/IERC721Metadata.sol";
import {ERC721Utils} from "./utils/ERC721Utils.sol";
import {Context} from "../../utils/Context.sol";
import {Strings} from "../../utils/Strings.sol";
import {IERC165, ERC165} from "../../utils/introspection/ERC165.sol";
import {IERC721Errors} from "../../interfaces/draft-IERC6093.sol";

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC-721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
abstract contract ERC721 is Context, ERC165, IERC721, IERC721Metadata, IERC721Errors {
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    mapping(uint256 tokenId => address) private _owners;

    mapping(address owner => uint256) private _balances;

    mapping(uint256 tokenId => address) private _tokenApprovals;

    mapping(address owner => mapping(address operator => bool)) private _operatorApprovals;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual returns (uint256) {
        if (owner == address(0)) {
            revert ERC721InvalidOwner(address(0));
        }
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual returns (address) {
        return _requireOwned(tokenId);
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual returns (string memory) {
        _requireOwned(tokenId);

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string.concat(baseURI, tokenId.toString()) : "";
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual {
        _approve(to, tokenId, _msgSender());
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual returns (address) {
        _requireOwned(tokenId);

        return _getApproved(tokenId);
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(address from, address to, uint256 tokenId) public virtual {
        if (to == address(0)) {
            revert ERC721InvalidReceiver(address(0));
        }
        // Setting an "auth" arguments enables the `_isAuthorized` check which verifies that the token exists
        // (from != 0). Therefore, it is not needed to verify that the return value is not 0 here.
        address previousOwner = _update(to, tokenId, _msgSender());
        if (previousOwner != from) {
            revert ERC721IncorrectOwner(from, tokenId, previousOwner);
        }
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId) public {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public virtual {
        transferFrom(from, to, tokenId);
        ERC721Utils.checkOnERC721Received(_msgSender(), from, to, tokenId, data);
    }

    /**
     * @dev Returns the owner of the `tokenId`. Does NOT revert if token doesn't exist
     *
     * IMPORTANT: Any overrides to this function that add ownership of tokens not tracked by the
     * core ERC-721 logic MUST be matched with the use of {_increaseBalance} to keep balances
     * consistent with ownership. The invariant to preserve is that for any address `a` the value returned by
     * `balanceOf(a)` must be equal to the number of tokens such that `_ownerOf(tokenId)` is `a`.
     */
    function _ownerOf(uint256 tokenId) internal view virtual returns (address) {
        return _owners[tokenId];
    }

    /**
     * @dev Returns the approved address for `tokenId`. Returns 0 if `tokenId` is not minted.
     */
    function _getApproved(uint256 tokenId) internal view virtual returns (address) {
        return _tokenApprovals[tokenId];
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `owner`'s tokens, or `tokenId` in
     * particular (ignoring whether it is owned by `owner`).
     *
     * WARNING: This function assumes that `owner` is the actual owner of `tokenId` and does not verify this
     * assumption.
     */
    function _isAuthorized(address owner, address spender, uint256 tokenId) internal view virtual returns (bool) {
        return
            spender != address(0) &&
            (owner == spender || isApprovedForAll(owner, spender) || _getApproved(tokenId) == spender);
    }

    /**
     * @dev Checks if `spender` can operate on `tokenId`, assuming the provided `owner` is the actual owner.
     * Reverts if:
     * - `spender` does not have approval from `owner` for `tokenId`.
     * - `spender` does not have approval to manage all of `owner`'s assets.
     *
     * WARNING: This function assumes that `owner` is the actual owner of `tokenId` and does not verify this
     * assumption.
     */
    function _checkAuthorized(address owner, address spender, uint256 tokenId) internal view virtual {
        if (!_isAuthorized(owner, spender, tokenId)) {
            if (owner == address(0)) {
                revert ERC721NonexistentToken(tokenId);
            } else {
                revert ERC721InsufficientApproval(spender, tokenId);
            }
        }
    }

    /**
     * @dev Unsafe write access to the balances, used by extensions that "mint" tokens using an {ownerOf} override.
     *
     * NOTE: the value is limited to type(uint128).max. This protect against _balance overflow. It is unrealistic that
     * a uint256 would ever overflow from increments when these increments are bounded to uint128 values.
     *
     * WARNING: Increasing an account's balance using this function tends to be paired with an override of the
     * {_ownerOf} function to resolve the ownership of the corresponding tokens so that balances and ownership
     * remain consistent with one another.
     */
    function _increaseBalance(address account, uint128 value) internal virtual {
        unchecked {
            _balances[account] += value;
        }
    }

    /**
     * @dev Transfers `tokenId` from its current owner to `to`, or alternatively mints (or burns) if the current owner
     * (or `to`) is the zero address. Returns the owner of the `tokenId` before the update.
     *
     * The `auth` argument is optional. If the value passed is non 0, then this function will check that
     * `auth` is either the owner of the token, or approved to operate on the token (by the owner).
     *
     * Emits a {Transfer} event.
     *
     * NOTE: If overriding this function in a way that tracks balances, see also {_increaseBalance}.
     */
    function _update(address to, uint256 tokenId, address auth) internal virtual returns (address) {
        address from = _ownerOf(tokenId);

        // Perform (optional) operator check
        if (auth != address(0)) {
            _checkAuthorized(from, auth, tokenId);
        }

        // Execute the update
        if (from != address(0)) {
            // Clear approval. No need to re-authorize or emit the Approval event
            _approve(address(0), tokenId, address(0), false);

            unchecked {
                _balances[from] -= 1;
            }
        }

        if (to != address(0)) {
            unchecked {
                _balances[to] += 1;
            }
        }

        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        return from;
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal {
        if (to == address(0)) {
            revert ERC721InvalidReceiver(address(0));
        }
        address previousOwner = _update(to, tokenId, address(0));
        if (previousOwner != address(0)) {
            revert ERC721InvalidSender(address(0));
        }
    }

    /**
     * @dev Mints `tokenId`, transfers it to `to` and checks for `to` acceptance.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(address to, uint256 tokenId, bytes memory data) internal virtual {
        _mint(to, tokenId);
        ERC721Utils.checkOnERC721Received(_msgSender(), address(0), to, tokenId, data);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     * This is an internal function that does not check if the sender is authorized to operate on the token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal {
        address previousOwner = _update(address(0), tokenId, address(0));
        if (previousOwner == address(0)) {
            revert ERC721NonexistentToken(tokenId);
        }
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(address from, address to, uint256 tokenId) internal {
        if (to == address(0)) {
            revert ERC721InvalidReceiver(address(0));
        }
        address previousOwner = _update(to, tokenId, address(0));
        if (previousOwner == address(0)) {
            revert ERC721NonexistentToken(tokenId);
        } else if (previousOwner != from) {
            revert ERC721IncorrectOwner(from, tokenId, previousOwner);
        }
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking that contract recipients
     * are aware of the ERC-721 standard to prevent tokens from being forever locked.
     *
     * `data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is like {safeTransferFrom} in the sense that it invokes
     * {IERC721Receiver-onERC721Received} on the receiver, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `tokenId` token must exist and be owned by `from`.
     * - `to` cannot be the zero address.
     * - `from` cannot be the zero address.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(address from, address to, uint256 tokenId) internal {
        _safeTransfer(from, to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeTransfer-address-address-uint256-}[`_safeTransfer`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeTransfer(address from, address to, uint256 tokenId, bytes memory data) internal virtual {
        _transfer(from, to, tokenId);
        ERC721Utils.checkOnERC721Received(_msgSender(), from, to, tokenId, data);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * The `auth` argument is optional. If the value passed is non 0, then this function will check that `auth` is
     * either the owner of the token, or approved to operate on all tokens held by this owner.
     *
     * Emits an {Approval} event.
     *
     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
     */
    function _approve(address to, uint256 tokenId, address auth) internal {
        _approve(to, tokenId, auth, true);
    }

    /**
     * @dev Variant of `_approve` with an optional flag to enable or disable the {Approval} event. The event is not
     * emitted in the context of transfers.
     */
    function _approve(address to, uint256 tokenId, address auth, bool emitEvent) internal virtual {
        // Avoid reading the owner unless necessary
        if (emitEvent || auth != address(0)) {
            address owner = _requireOwned(tokenId);

            // We do not use _isAuthorized because single-token approvals should not be able to call approve
            if (auth != address(0) && owner != auth && !isApprovedForAll(owner, auth)) {
                revert ERC721InvalidApprover(auth);
            }

            if (emitEvent) {
                emit Approval(owner, to, tokenId);
            }
        }

        _tokenApprovals[tokenId] = to;
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Requirements:
     * - operator can't be the address zero.
     *
     * Emits an {ApprovalForAll} event.
     */
    function _setApprovalForAll(address owner, address operator, bool approved) internal virtual {
        if (operator == address(0)) {
            revert ERC721InvalidOperator(operator);
        }
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Reverts if the `tokenId` doesn't have a current owner (it hasn't been minted, or it has been burned).
     * Returns the owner.
     *
     * Overrides to ownership logic should be done to {_ownerOf}.
     */
    function _requireOwned(uint256 tokenId) internal view returns (address) {
        address owner = _ownerOf(tokenId);
        if (owner == address(0)) {
            revert ERC721NonexistentToken(tokenId);
        }
        return owner;
    }
}

File 12 of 30 : IERC721UpdateHandler.sol
// SPDX-License-Identifier: MIT LICENSE

pragma solidity ^0.8.9;

interface IERC721UpdateHandler {
    /**
     * Before transfer hook for NFTs. Performs any trait checks needed before transfer
     *
     * @param tokenContract     Address of the token contract
     * @param to           Address of the recipient
     * @param tokenId             Token ID
     * @param auth               Auth address
     */
    function update(
        address tokenContract,
        address to,
        uint256 tokenId,
        address auth
    ) external;
}

File 13 of 30 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (utils/introspection/IERC165.sol)

pragma solidity ^0.8.20;

/**
 * @dev Interface of the ERC-165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[ERC].
 *
 * 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[ERC 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);
}

File 14 of 30 : IMintableERC721.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.23;

import {IERC721} from "@openzeppelin/contracts/token/ERC721/IERC721.sol";

interface IMintableERC721 is IERC721 {
    function mint(address to, uint256 quantity) external returns (uint256[] memory tokenIds);

    function totalSupply() external view returns (uint256);
}

File 15 of 30 : Math.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (utils/math/Math.sol)

pragma solidity ^0.8.20;

import {Panic} from "../Panic.sol";
import {SafeCast} from "./SafeCast.sol";

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    enum Rounding {
        Floor, // Toward negative infinity
        Ceil, // Toward positive infinity
        Trunc, // Toward zero
        Expand // Away from zero
    }

    /**
     * @dev Returns the addition of two unsigned integers, with an success flag (no overflow).
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an success flag (no overflow).
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an success flag (no overflow).
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a success flag (no division by zero).
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a success flag (no division by zero).
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Branchless ternary evaluation for `a ? b : c`. Gas costs are constant.
     *
     * IMPORTANT: This function may reduce bytecode size and consume less gas when used standalone.
     * However, the compiler may optimize Solidity ternary operations (i.e. `a ? b : c`) to only compute
     * one branch when needed, making this function more expensive.
     */
    function ternary(bool condition, uint256 a, uint256 b) internal pure returns (uint256) {
        unchecked {
            // branchless ternary works because:
            // b ^ (a ^ b) == a
            // b ^ 0 == b
            return b ^ ((a ^ b) * SafeCast.toUint(condition));
        }
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return ternary(a > b, a, b);
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return ternary(a < b, a, b);
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds towards infinity instead
     * of rounding towards zero.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        if (b == 0) {
            // Guarantee the same behavior as in a regular Solidity division.
            Panic.panic(Panic.DIVISION_BY_ZERO);
        }

        // The following calculation ensures accurate ceiling division without overflow.
        // Since a is non-zero, (a - 1) / b will not overflow.
        // The largest possible result occurs when (a - 1) / b is type(uint256).max,
        // but the largest value we can obtain is type(uint256).max - 1, which happens
        // when a = type(uint256).max and b = 1.
        unchecked {
            return SafeCast.toUint(a > 0) * ((a - 1) / b + 1);
        }
    }

    /**
     * @dev Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or
     * denominator == 0.
     *
     * Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) with further edits by
     * Uniswap Labs also under MIT license.
     */
    function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2²⁵⁶ and mod 2²⁵⁶ - 1, then use
            // the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2²⁵⁶ + prod0.
            uint256 prod0 = x * y; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                // Solidity will revert if denominator == 0, unlike the div opcode on its own.
                // The surrounding unchecked block does not change this fact.
                // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.
                return prod0 / denominator;
            }

            // Make sure the result is less than 2²⁵⁶. Also prevents denominator == 0.
            if (denominator <= prod1) {
                Panic.panic(ternary(denominator == 0, Panic.DIVISION_BY_ZERO, Panic.UNDER_OVERFLOW));
            }

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator.
            // Always >= 1. See https://cs.stackexchange.com/q/138556/92363.

            uint256 twos = denominator & (0 - denominator);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2²⁵⁶ / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2²⁵⁶. Now that denominator is an odd number, it has an inverse modulo 2²⁵⁶ such
            // that denominator * inv ≡ 1 mod 2²⁵⁶. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv ≡ 1 mod 2⁴.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also
            // works in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2⁸
            inverse *= 2 - denominator * inverse; // inverse mod 2¹⁶
            inverse *= 2 - denominator * inverse; // inverse mod 2³²
            inverse *= 2 - denominator * inverse; // inverse mod 2⁶⁴
            inverse *= 2 - denominator * inverse; // inverse mod 2¹²⁸
            inverse *= 2 - denominator * inverse; // inverse mod 2²⁵⁶

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2²⁵⁶. Since the preconditions guarantee that the outcome is
            // less than 2²⁵⁶, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @dev Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) {
        return mulDiv(x, y, denominator) + SafeCast.toUint(unsignedRoundsUp(rounding) && mulmod(x, y, denominator) > 0);
    }

    /**
     * @dev Calculate the modular multiplicative inverse of a number in Z/nZ.
     *
     * If n is a prime, then Z/nZ is a field. In that case all elements are inversible, except 0.
     * If n is not a prime, then Z/nZ is not a field, and some elements might not be inversible.
     *
     * If the input value is not inversible, 0 is returned.
     *
     * NOTE: If you know for sure that n is (big) a prime, it may be cheaper to use Fermat's little theorem and get the
     * inverse using `Math.modExp(a, n - 2, n)`. See {invModPrime}.
     */
    function invMod(uint256 a, uint256 n) internal pure returns (uint256) {
        unchecked {
            if (n == 0) return 0;

            // The inverse modulo is calculated using the Extended Euclidean Algorithm (iterative version)
            // Used to compute integers x and y such that: ax + ny = gcd(a, n).
            // When the gcd is 1, then the inverse of a modulo n exists and it's x.
            // ax + ny = 1
            // ax = 1 + (-y)n
            // ax ≡ 1 (mod n) # x is the inverse of a modulo n

            // If the remainder is 0 the gcd is n right away.
            uint256 remainder = a % n;
            uint256 gcd = n;

            // Therefore the initial coefficients are:
            // ax + ny = gcd(a, n) = n
            // 0a + 1n = n
            int256 x = 0;
            int256 y = 1;

            while (remainder != 0) {
                uint256 quotient = gcd / remainder;

                (gcd, remainder) = (
                    // The old remainder is the next gcd to try.
                    remainder,
                    // Compute the next remainder.
                    // Can't overflow given that (a % gcd) * (gcd // (a % gcd)) <= gcd
                    // where gcd is at most n (capped to type(uint256).max)
                    gcd - remainder * quotient
                );

                (x, y) = (
                    // Increment the coefficient of a.
                    y,
                    // Decrement the coefficient of n.
                    // Can overflow, but the result is casted to uint256 so that the
                    // next value of y is "wrapped around" to a value between 0 and n - 1.
                    x - y * int256(quotient)
                );
            }

            if (gcd != 1) return 0; // No inverse exists.
            return ternary(x < 0, n - uint256(-x), uint256(x)); // Wrap the result if it's negative.
        }
    }

    /**
     * @dev Variant of {invMod}. More efficient, but only works if `p` is known to be a prime greater than `2`.
     *
     * From https://en.wikipedia.org/wiki/Fermat%27s_little_theorem[Fermat's little theorem], we know that if p is
     * prime, then `a**(p-1) ≡ 1 mod p`. As a consequence, we have `a * a**(p-2) ≡ 1 mod p`, which means that
     * `a**(p-2)` is the modular multiplicative inverse of a in Fp.
     *
     * NOTE: this function does NOT check that `p` is a prime greater than `2`.
     */
    function invModPrime(uint256 a, uint256 p) internal view returns (uint256) {
        unchecked {
            return Math.modExp(a, p - 2, p);
        }
    }

    /**
     * @dev Returns the modular exponentiation of the specified base, exponent and modulus (b ** e % m)
     *
     * Requirements:
     * - modulus can't be zero
     * - underlying staticcall to precompile must succeed
     *
     * IMPORTANT: The result is only valid if the underlying call succeeds. When using this function, make
     * sure the chain you're using it on supports the precompiled contract for modular exponentiation
     * at address 0x05 as specified in https://eips.ethereum.org/EIPS/eip-198[EIP-198]. Otherwise,
     * the underlying function will succeed given the lack of a revert, but the result may be incorrectly
     * interpreted as 0.
     */
    function modExp(uint256 b, uint256 e, uint256 m) internal view returns (uint256) {
        (bool success, uint256 result) = tryModExp(b, e, m);
        if (!success) {
            Panic.panic(Panic.DIVISION_BY_ZERO);
        }
        return result;
    }

    /**
     * @dev Returns the modular exponentiation of the specified base, exponent and modulus (b ** e % m).
     * It includes a success flag indicating if the operation succeeded. Operation will be marked as failed if trying
     * to operate modulo 0 or if the underlying precompile reverted.
     *
     * IMPORTANT: The result is only valid if the success flag is true. When using this function, make sure the chain
     * you're using it on supports the precompiled contract for modular exponentiation at address 0x05 as specified in
     * https://eips.ethereum.org/EIPS/eip-198[EIP-198]. Otherwise, the underlying function will succeed given the lack
     * of a revert, but the result may be incorrectly interpreted as 0.
     */
    function tryModExp(uint256 b, uint256 e, uint256 m) internal view returns (bool success, uint256 result) {
        if (m == 0) return (false, 0);
        assembly ("memory-safe") {
            let ptr := mload(0x40)
            // | Offset    | Content    | Content (Hex)                                                      |
            // |-----------|------------|--------------------------------------------------------------------|
            // | 0x00:0x1f | size of b  | 0x0000000000000000000000000000000000000000000000000000000000000020 |
            // | 0x20:0x3f | size of e  | 0x0000000000000000000000000000000000000000000000000000000000000020 |
            // | 0x40:0x5f | size of m  | 0x0000000000000000000000000000000000000000000000000000000000000020 |
            // | 0x60:0x7f | value of b | 0x<.............................................................b> |
            // | 0x80:0x9f | value of e | 0x<.............................................................e> |
            // | 0xa0:0xbf | value of m | 0x<.............................................................m> |
            mstore(ptr, 0x20)
            mstore(add(ptr, 0x20), 0x20)
            mstore(add(ptr, 0x40), 0x20)
            mstore(add(ptr, 0x60), b)
            mstore(add(ptr, 0x80), e)
            mstore(add(ptr, 0xa0), m)

            // Given the result < m, it's guaranteed to fit in 32 bytes,
            // so we can use the memory scratch space located at offset 0.
            success := staticcall(gas(), 0x05, ptr, 0xc0, 0x00, 0x20)
            result := mload(0x00)
        }
    }

    /**
     * @dev Variant of {modExp} that supports inputs of arbitrary length.
     */
    function modExp(bytes memory b, bytes memory e, bytes memory m) internal view returns (bytes memory) {
        (bool success, bytes memory result) = tryModExp(b, e, m);
        if (!success) {
            Panic.panic(Panic.DIVISION_BY_ZERO);
        }
        return result;
    }

    /**
     * @dev Variant of {tryModExp} that supports inputs of arbitrary length.
     */
    function tryModExp(
        bytes memory b,
        bytes memory e,
        bytes memory m
    ) internal view returns (bool success, bytes memory result) {
        if (_zeroBytes(m)) return (false, new bytes(0));

        uint256 mLen = m.length;

        // Encode call args in result and move the free memory pointer
        result = abi.encodePacked(b.length, e.length, mLen, b, e, m);

        assembly ("memory-safe") {
            let dataPtr := add(result, 0x20)
            // Write result on top of args to avoid allocating extra memory.
            success := staticcall(gas(), 0x05, dataPtr, mload(result), dataPtr, mLen)
            // Overwrite the length.
            // result.length > returndatasize() is guaranteed because returndatasize() == m.length
            mstore(result, mLen)
            // Set the memory pointer after the returned data.
            mstore(0x40, add(dataPtr, mLen))
        }
    }

    /**
     * @dev Returns whether the provided byte array is zero.
     */
    function _zeroBytes(bytes memory byteArray) private pure returns (bool) {
        for (uint256 i = 0; i < byteArray.length; ++i) {
            if (byteArray[i] != 0) {
                return false;
            }
        }
        return true;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded
     * towards zero.
     *
     * This method is based on Newton's method for computing square roots; the algorithm is restricted to only
     * using integer operations.
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        unchecked {
            // Take care of easy edge cases when a == 0 or a == 1
            if (a <= 1) {
                return a;
            }

            // In this function, we use Newton's method to get a root of `f(x) := x² - a`. It involves building a
            // sequence x_n that converges toward sqrt(a). For each iteration x_n, we also define the error between
            // the current value as `ε_n = | x_n - sqrt(a) |`.
            //
            // For our first estimation, we consider `e` the smallest power of 2 which is bigger than the square root
            // of the target. (i.e. `2**(e-1) ≤ sqrt(a) < 2**e`). We know that `e ≤ 128` because `(2¹²⁸)² = 2²⁵⁶` is
            // bigger than any uint256.
            //
            // By noticing that
            // `2**(e-1) ≤ sqrt(a) < 2**e → (2**(e-1))² ≤ a < (2**e)² → 2**(2*e-2) ≤ a < 2**(2*e)`
            // we can deduce that `e - 1` is `log2(a) / 2`. We can thus compute `x_n = 2**(e-1)` using a method similar
            // to the msb function.
            uint256 aa = a;
            uint256 xn = 1;

            if (aa >= (1 << 128)) {
                aa >>= 128;
                xn <<= 64;
            }
            if (aa >= (1 << 64)) {
                aa >>= 64;
                xn <<= 32;
            }
            if (aa >= (1 << 32)) {
                aa >>= 32;
                xn <<= 16;
            }
            if (aa >= (1 << 16)) {
                aa >>= 16;
                xn <<= 8;
            }
            if (aa >= (1 << 8)) {
                aa >>= 8;
                xn <<= 4;
            }
            if (aa >= (1 << 4)) {
                aa >>= 4;
                xn <<= 2;
            }
            if (aa >= (1 << 2)) {
                xn <<= 1;
            }

            // We now have x_n such that `x_n = 2**(e-1) ≤ sqrt(a) < 2**e = 2 * x_n`. This implies ε_n ≤ 2**(e-1).
            //
            // We can refine our estimation by noticing that the middle of that interval minimizes the error.
            // If we move x_n to equal 2**(e-1) + 2**(e-2), then we reduce the error to ε_n ≤ 2**(e-2).
            // This is going to be our x_0 (and ε_0)
            xn = (3 * xn) >> 1; // ε_0 := | x_0 - sqrt(a) | ≤ 2**(e-2)

            // From here, Newton's method give us:
            // x_{n+1} = (x_n + a / x_n) / 2
            //
            // One should note that:
            // x_{n+1}² - a = ((x_n + a / x_n) / 2)² - a
            //              = ((x_n² + a) / (2 * x_n))² - a
            //              = (x_n⁴ + 2 * a * x_n² + a²) / (4 * x_n²) - a
            //              = (x_n⁴ + 2 * a * x_n² + a² - 4 * a * x_n²) / (4 * x_n²)
            //              = (x_n⁴ - 2 * a * x_n² + a²) / (4 * x_n²)
            //              = (x_n² - a)² / (2 * x_n)²
            //              = ((x_n² - a) / (2 * x_n))²
            //              ≥ 0
            // Which proves that for all n ≥ 1, sqrt(a) ≤ x_n
            //
            // This gives us the proof of quadratic convergence of the sequence:
            // ε_{n+1} = | x_{n+1} - sqrt(a) |
            //         = | (x_n + a / x_n) / 2 - sqrt(a) |
            //         = | (x_n² + a - 2*x_n*sqrt(a)) / (2 * x_n) |
            //         = | (x_n - sqrt(a))² / (2 * x_n) |
            //         = | ε_n² / (2 * x_n) |
            //         = ε_n² / | (2 * x_n) |
            //
            // For the first iteration, we have a special case where x_0 is known:
            // ε_1 = ε_0² / | (2 * x_0) |
            //     ≤ (2**(e-2))² / (2 * (2**(e-1) + 2**(e-2)))
            //     ≤ 2**(2*e-4) / (3 * 2**(e-1))
            //     ≤ 2**(e-3) / 3
            //     ≤ 2**(e-3-log2(3))
            //     ≤ 2**(e-4.5)
            //
            // For the following iterations, we use the fact that, 2**(e-1) ≤ sqrt(a) ≤ x_n:
            // ε_{n+1} = ε_n² / | (2 * x_n) |
            //         ≤ (2**(e-k))² / (2 * 2**(e-1))
            //         ≤ 2**(2*e-2*k) / 2**e
            //         ≤ 2**(e-2*k)
            xn = (xn + a / xn) >> 1; // ε_1 := | x_1 - sqrt(a) | ≤ 2**(e-4.5)  -- special case, see above
            xn = (xn + a / xn) >> 1; // ε_2 := | x_2 - sqrt(a) | ≤ 2**(e-9)    -- general case with k = 4.5
            xn = (xn + a / xn) >> 1; // ε_3 := | x_3 - sqrt(a) | ≤ 2**(e-18)   -- general case with k = 9
            xn = (xn + a / xn) >> 1; // ε_4 := | x_4 - sqrt(a) | ≤ 2**(e-36)   -- general case with k = 18
            xn = (xn + a / xn) >> 1; // ε_5 := | x_5 - sqrt(a) | ≤ 2**(e-72)   -- general case with k = 36
            xn = (xn + a / xn) >> 1; // ε_6 := | x_6 - sqrt(a) | ≤ 2**(e-144)  -- general case with k = 72

            // Because e ≤ 128 (as discussed during the first estimation phase), we know have reached a precision
            // ε_6 ≤ 2**(e-144) < 1. Given we're operating on integers, then we can ensure that xn is now either
            // sqrt(a) or sqrt(a) + 1.
            return xn - SafeCast.toUint(xn > a / xn);
        }
    }

    /**
     * @dev Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + SafeCast.toUint(unsignedRoundsUp(rounding) && result * result < a);
        }
    }

    /**
     * @dev Return the log in base 2 of a positive value rounded towards zero.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        uint256 exp;
        unchecked {
            exp = 128 * SafeCast.toUint(value > (1 << 128) - 1);
            value >>= exp;
            result += exp;

            exp = 64 * SafeCast.toUint(value > (1 << 64) - 1);
            value >>= exp;
            result += exp;

            exp = 32 * SafeCast.toUint(value > (1 << 32) - 1);
            value >>= exp;
            result += exp;

            exp = 16 * SafeCast.toUint(value > (1 << 16) - 1);
            value >>= exp;
            result += exp;

            exp = 8 * SafeCast.toUint(value > (1 << 8) - 1);
            value >>= exp;
            result += exp;

            exp = 4 * SafeCast.toUint(value > (1 << 4) - 1);
            value >>= exp;
            result += exp;

            exp = 2 * SafeCast.toUint(value > (1 << 2) - 1);
            value >>= exp;
            result += exp;

            result += SafeCast.toUint(value > 1);
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + SafeCast.toUint(unsignedRoundsUp(rounding) && 1 << result < value);
        }
    }

    /**
     * @dev Return the log in base 10 of a positive value rounded towards zero.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10 ** 64) {
                value /= 10 ** 64;
                result += 64;
            }
            if (value >= 10 ** 32) {
                value /= 10 ** 32;
                result += 32;
            }
            if (value >= 10 ** 16) {
                value /= 10 ** 16;
                result += 16;
            }
            if (value >= 10 ** 8) {
                value /= 10 ** 8;
                result += 8;
            }
            if (value >= 10 ** 4) {
                value /= 10 ** 4;
                result += 4;
            }
            if (value >= 10 ** 2) {
                value /= 10 ** 2;
                result += 2;
            }
            if (value >= 10 ** 1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + SafeCast.toUint(unsignedRoundsUp(rounding) && 10 ** result < value);
        }
    }

    /**
     * @dev Return the log in base 256 of a positive value rounded towards zero.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        uint256 isGt;
        unchecked {
            isGt = SafeCast.toUint(value > (1 << 128) - 1);
            value >>= isGt * 128;
            result += isGt * 16;

            isGt = SafeCast.toUint(value > (1 << 64) - 1);
            value >>= isGt * 64;
            result += isGt * 8;

            isGt = SafeCast.toUint(value > (1 << 32) - 1);
            value >>= isGt * 32;
            result += isGt * 4;

            isGt = SafeCast.toUint(value > (1 << 16) - 1);
            value >>= isGt * 16;
            result += isGt * 2;

            result += SafeCast.toUint(value > (1 << 8) - 1);
        }
        return result;
    }

    /**
     * @dev Return the log in base 256, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + SafeCast.toUint(unsignedRoundsUp(rounding) && 1 << (result << 3) < value);
        }
    }

    /**
     * @dev Returns whether a provided rounding mode is considered rounding up for unsigned integers.
     */
    function unsignedRoundsUp(Rounding rounding) internal pure returns (bool) {
        return uint8(rounding) % 2 == 1;
    }
}

File 16 of 30 : SignedMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (utils/math/SignedMath.sol)

pragma solidity ^0.8.20;

import {SafeCast} from "./SafeCast.sol";

/**
 * @dev Standard signed math utilities missing in the Solidity language.
 */
library SignedMath {
    /**
     * @dev Branchless ternary evaluation for `a ? b : c`. Gas costs are constant.
     *
     * IMPORTANT: This function may reduce bytecode size and consume less gas when used standalone.
     * However, the compiler may optimize Solidity ternary operations (i.e. `a ? b : c`) to only compute
     * one branch when needed, making this function more expensive.
     */
    function ternary(bool condition, int256 a, int256 b) internal pure returns (int256) {
        unchecked {
            // branchless ternary works because:
            // b ^ (a ^ b) == a
            // b ^ 0 == b
            return b ^ ((a ^ b) * int256(SafeCast.toUint(condition)));
        }
    }

    /**
     * @dev Returns the largest of two signed numbers.
     */
    function max(int256 a, int256 b) internal pure returns (int256) {
        return ternary(a > b, a, b);
    }

    /**
     * @dev Returns the smallest of two signed numbers.
     */
    function min(int256 a, int256 b) internal pure returns (int256) {
        return ternary(a < b, a, b);
    }

    /**
     * @dev Returns the average of two signed numbers without overflow.
     * The result is rounded towards zero.
     */
    function average(int256 a, int256 b) internal pure returns (int256) {
        // Formula from the book "Hacker's Delight"
        int256 x = (a & b) + ((a ^ b) >> 1);
        return x + (int256(uint256(x) >> 255) & (a ^ b));
    }

    /**
     * @dev Returns the absolute unsigned value of a signed value.
     */
    function abs(int256 n) internal pure returns (uint256) {
        unchecked {
            // Formula from the "Bit Twiddling Hacks" by Sean Eron Anderson.
            // Since `n` is a signed integer, the generated bytecode will use the SAR opcode to perform the right shift,
            // taking advantage of the most significant (or "sign" bit) in two's complement representation.
            // This opcode adds new most significant bits set to the value of the previous most significant bit. As a result,
            // the mask will either be `bytes32(0)` (if n is positive) or `~bytes32(0)` (if n is negative).
            int256 mask = n >> 255;

            // A `bytes32(0)` mask leaves the input unchanged, while a `~bytes32(0)` mask complements it.
            return uint256((n + mask) ^ mask);
        }
    }
}

File 17 of 30 : DataStore.sol
// 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(""));
    }
}

File 18 of 30 : GameRegistryConsumer.sol
// SPDX-License-Identifier: MIT LICENSE

pragma solidity ^0.8.13;

import {ReentrancyGuard} from "@openzeppelin/contracts/utils/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;
    }

}

File 19 of 30 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.20;

import {IERC721} from "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

File 20 of 30 : ERC721Utils.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC721/utils/ERC721Utils.sol)

pragma solidity ^0.8.20;

import {IERC721Receiver} from "../IERC721Receiver.sol";
import {IERC721Errors} from "../../../interfaces/draft-IERC6093.sol";

/**
 * @dev Library that provide common ERC-721 utility functions.
 *
 * See https://eips.ethereum.org/EIPS/eip-721[ERC-721].
 *
 * _Available since v5.1._
 */
library ERC721Utils {
    /**
     * @dev Performs an acceptance check for the provided `operator` by calling {IERC721-onERC721Received}
     * on the `to` address. The `operator` is generally the address that initiated the token transfer (i.e. `msg.sender`).
     *
     * The acceptance call is not executed and treated as a no-op if the target address doesn't contain code (i.e. an EOA).
     * Otherwise, the recipient must implement {IERC721Receiver-onERC721Received} and return the acceptance magic value to accept
     * the transfer.
     */
    function checkOnERC721Received(
        address operator,
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) internal {
        if (to.code.length > 0) {
            try IERC721Receiver(to).onERC721Received(operator, from, tokenId, data) returns (bytes4 retval) {
                if (retval != IERC721Receiver.onERC721Received.selector) {
                    // Token rejected
                    revert IERC721Errors.ERC721InvalidReceiver(to);
                }
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    // non-IERC721Receiver implementer
                    revert IERC721Errors.ERC721InvalidReceiver(to);
                } else {
                    assembly ("memory-safe") {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        }
    }
}

File 21 of 30 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

pragma solidity ^0.8.20;

/**
 * @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;
    }

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

File 22 of 30 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (utils/introspection/ERC165.sol)

pragma solidity ^0.8.20;

import {IERC165} from "./IERC165.sol";

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC-165 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);
 * }
 * ```
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

File 23 of 30 : draft-IERC6093.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (interfaces/draft-IERC6093.sol)
pragma solidity ^0.8.20;

/**
 * @dev Standard ERC-20 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-20 tokens.
 */
interface IERC20Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC20InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC20InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     * @param allowance Amount of tokens a `spender` is allowed to operate with.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC20InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `spender` to be approved. Used in approvals.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC20InvalidSpender(address spender);
}

/**
 * @dev Standard ERC-721 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-721 tokens.
 */
interface IERC721Errors {
    /**
     * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in ERC-20.
     * Used in balance queries.
     * @param owner Address of the current owner of a token.
     */
    error ERC721InvalidOwner(address owner);

    /**
     * @dev Indicates a `tokenId` whose `owner` is the zero address.
     * @param tokenId Identifier number of a token.
     */
    error ERC721NonexistentToken(uint256 tokenId);

    /**
     * @dev Indicates an error related to the ownership over a particular token. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param tokenId Identifier number of a token.
     * @param owner Address of the current owner of a token.
     */
    error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC721InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC721InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param tokenId Identifier number of a token.
     */
    error ERC721InsufficientApproval(address operator, uint256 tokenId);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC721InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC721InvalidOperator(address operator);
}

/**
 * @dev Standard ERC-1155 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-1155 tokens.
 */
interface IERC1155Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     * @param tokenId Identifier number of a token.
     */
    error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC1155InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC1155InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param owner Address of the current owner of a token.
     */
    error ERC1155MissingApprovalForAll(address operator, address owner);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC1155InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC1155InvalidOperator(address operator);

    /**
     * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
     * Used in batch transfers.
     * @param idsLength Length of the array of token identifiers
     * @param valuesLength Length of the array of token amounts
     */
    error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}

File 24 of 30 : Panic.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (utils/Panic.sol)

pragma solidity ^0.8.20;

/**
 * @dev Helper library for emitting standardized panic codes.
 *
 * ```solidity
 * contract Example {
 *      using Panic for uint256;
 *
 *      // Use any of the declared internal constants
 *      function foo() { Panic.GENERIC.panic(); }
 *
 *      // Alternatively
 *      function foo() { Panic.panic(Panic.GENERIC); }
 * }
 * ```
 *
 * Follows the list from https://github.com/ethereum/solidity/blob/v0.8.24/libsolutil/ErrorCodes.h[libsolutil].
 *
 * _Available since v5.1._
 */
// slither-disable-next-line unused-state
library Panic {
    /// @dev generic / unspecified error
    uint256 internal constant GENERIC = 0x00;
    /// @dev used by the assert() builtin
    uint256 internal constant ASSERT = 0x01;
    /// @dev arithmetic underflow or overflow
    uint256 internal constant UNDER_OVERFLOW = 0x11;
    /// @dev division or modulo by zero
    uint256 internal constant DIVISION_BY_ZERO = 0x12;
    /// @dev enum conversion error
    uint256 internal constant ENUM_CONVERSION_ERROR = 0x21;
    /// @dev invalid encoding in storage
    uint256 internal constant STORAGE_ENCODING_ERROR = 0x22;
    /// @dev empty array pop
    uint256 internal constant EMPTY_ARRAY_POP = 0x31;
    /// @dev array out of bounds access
    uint256 internal constant ARRAY_OUT_OF_BOUNDS = 0x32;
    /// @dev resource error (too large allocation or too large array)
    uint256 internal constant RESOURCE_ERROR = 0x41;
    /// @dev calling invalid internal function
    uint256 internal constant INVALID_INTERNAL_FUNCTION = 0x51;

    /// @dev Reverts with a panic code. Recommended to use with
    /// the internal constants with predefined codes.
    function panic(uint256 code) internal pure {
        assembly ("memory-safe") {
            mstore(0x00, 0x4e487b71)
            mstore(0x20, code)
            revert(0x1c, 0x24)
        }
    }
}

File 25 of 30 : DataTypes.sol
// 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;
    }
}

File 26 of 30 : IDataStore.sol
// 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);
}

File 27 of 30 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (utils/ReentrancyGuard.sol)

pragma solidity ^0.8.20;

/**
 * @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 EIP-1153 (transient storage) is available on the chain you're deploying at,
 * consider using {ReentrancyGuardTransient} instead.
 *
 * 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;

    /**
     * @dev Unauthorized reentrant call.
     */
    error ReentrancyGuardReentrantCall();

    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
        if (_status == ENTERED) {
            revert ReentrancyGuardReentrantCall();
        }

        // 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;
    }

    /**
     * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a
     * `nonReentrant` function in the call stack.
     */
    function _reentrancyGuardEntered() internal view returns (bool) {
        return _status == ENTERED;
    }
}

File 28 of 30 : ISystem.sol
// 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;
}

File 29 of 30 : IGameRegistry.sol
// 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);
}

File 30 of 30 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.20;

/**
 * @title ERC-721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC-721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be
     * reverted.
     *
     * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

Settings
{
  "viaIR": false,
  "codegen": "yul",
  "remappings": [
    "@openzeppelin/contracts/=lib/openzeppelin-contracts/contracts/",
    "@openzeppelin/contracts-upgradeable/=lib/openzeppelin-contracts-upgradeable/contracts/",
    "erc4626-tests/=lib/openzeppelin-contracts/lib/erc4626-tests/",
    "forge-std/=lib/forge-std/src/",
    "forge-zksync-std/=lib/forge-zksync-std/src/",
    "halmos-cheatcodes/=lib/openzeppelin-contracts/lib/halmos-cheatcodes/src/",
    "openzeppelin-contracts/=lib/openzeppelin-contracts/"
  ],
  "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 ABI

[{"inputs":[{"internalType":"uint256","name":"maxSupply","type":"uint256"},{"internalType":"address","name":"gameRegistryAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AlreadyInitialized","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"owner","type":"address"}],"name":"ERC721IncorrectOwner","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ERC721InsufficientApproval","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC721InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"ERC721InvalidOperator","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"ERC721InvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC721InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC721InvalidSender","type":"error"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ERC721NonexistentToken","type":"error"},{"inputs":[],"name":"ExceedsMaxSupply","type":"error"},{"inputs":[],"name":"InvalidAccountAddress","type":"error"},{"inputs":[],"name":"InvalidGameRegistry","type":"error"},{"inputs":[],"name":"InvalidTokenId","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bytes32","name":"expectedRole","type":"bytes32"}],"name":"MissingRole","type":"error"},{"inputs":[{"internalType":"uint256","name":"needed","type":"uint256"},{"internalType":"uint256","name":"actual","type":"uint256"}],"name":"NotEnoughSupply","type":"error"},{"inputs":[],"name":"ReentrancyGuardReentrantCall","type":"error"},{"inputs":[{"internalType":"uint8","name":"bits","type":"uint8"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"SafeCastOverflowedUintDowncast","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","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":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint32","name":"lastTransferTime","type":"uint32"}],"name":"LastTransferSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint32","name":"timeHeld","type":"uint32"}],"name":"TimeHeldSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"afterUpdateHandler","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"to","type":"address[]"},{"internalType":"uint256[]","name":"quantities","type":"uint256[]"}],"name":"batchAirDrop","outputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"beforeUpdateHandler","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"burnByGameContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"uint256","name":"tokenId","type":"uint256"}],"name":"getLastTransfer","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMaxSupply","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":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getTimeHeld","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalBurned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"mintBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"pure","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseURI","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":"bool","name":"soulbound","type":"bool"}],"name":"setSoulbound","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"setTraitsInitialized","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"handlerAddress","type":"address"},{"internalType":"bool","name":"before","type":"bool"}],"name":"setUpdateHandler","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenName","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"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":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

9c4d535b00000000000000000000000000000000000000000000000000000000000000000100146f601a991255320c15a8290eaf5e12f5da189d6d1313c128f4de0c995b000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000002710000000000000000000000000b5f84708957e5628c363709ae1d4cb346081fbf6

Deployed Bytecode

0x00040000000000020009000000000002000000000401034f00000060011002700000138e0010019d0000138e03100197000300000034035500020000000403550000000100200190000000450000c13d0000008001000039000000400010043f000000040030008c000000690000413d000000000134034f000000000204043b000000e002200270000013a20020009c0000006b0000213d000013cc0020009c000000c30000a13d000013cd0020009c000001240000a13d000013ce0020009c000001890000213d000013d40020009c000002d60000213d000013d70020009c000004e10000613d000013d80020009c000000690000c13d000000440030008c000000690000413d0000000001000416000000000001004b000000690000c13d0000000401400370000000000101043b000900000001001d000013910010009c000000690000213d0000002401400370000000000201043b000000000002004b0000000001000039000000010100c039000800000002001d000000000012004b000000690000c13d0000000701000039000000000201041a0000141901000041000000800010043f0000141f01000041000000840010043f00000000010004110000139103100197000000a40030043f000000000100041400000008022002700000139102200197000000040020008c000700000003001d000011490000c13d0000000103000031000000200030008c000000200400003900000000040340190000116e0000013d000000a002000039000000400020043f0000000001000416000000000001004b000000690000c13d0000001f013000390000138f01100197000000a001100039000000400010043f0000001f0530018f0000139006300198000000a001600039000000570000613d000000000704034f000000007807043c0000000002820436000000000012004b000000530000c13d000000000005004b000000640000613d000000000264034f0000000304500210000000000501043300000000054501cf000000000545022f000000000202043b0000010004400089000000000242022f00000000024201cf000000000252019f0000000000210435000000400030008c000000690000413d000000c00600043d000013910060009c000000980000a13d000000000100001900004e3400010430000013a30020009c000001070000a13d000013a40020009c0000013d0000a13d000013a50020009c0000019b0000213d000013ab0020009c000002e20000213d000013ae0020009c000005310000613d000013af0020009c000000690000c13d000000240030008c000000690000413d0000000001000416000000000001004b000000690000c13d0000000401400370000000000201043b000000000002004b0000000001000039000000010100c039000900000002001d000000000012004b000000690000c13d0000000701000039000000000201041a0000141901000041000000800010043f0000141f01000041000000840010043f00000000010004110000139103100197000000a40030043f000000000100041400000008022002700000139102200197000000040020008c000800000003001d00000efc0000c13d0000000103000031000000200030008c0000002004000039000000000403401900000f210000013d000000400500043d000013920050009c000000bd0000213d000000a00100043d000900000001001d0000004001500039000000400010043f0000000801000039000000000115043600001393020000410000000000210435000000400700043d000013920070009c000000bd0000213d0000004002700039000000400020043f000000030200003900000000032704360000139402000041000700000003001d0000000000230435000000400200043d000800000002001d000013920020009c000000bd0000213d00000008030000290000004002300039000000400020043f0000000a0200003900000000032304360000139502000041000500000003001d00000000002304350000000002050433000600000002001d000013960020009c000006160000a13d0000143d01000041000000000010043f0000004101000039000000040010043f000013fd0100004100004e3400010430000013e20020009c000001600000213d000013ec0020009c000001f00000a13d000013ed0020009c000002580000213d000013f00020009c000003630000613d000013f10020009c000000690000c13d000000440030008c000000690000413d0000000001000416000000000001004b000000690000c13d0000000401400370000000000101043b000900000001001d000013910010009c000000690000213d0000002401400370000000000101043b000800000001001d4e3231c60000040f00001391051001970000000001000411000000000001004b00000e160000613d000000000015004b00000e160000613d000700000005001d000000000050043f0000000501000039000000200010043f00000000010004140000138e0010009c0000138e01008041000000c0011002100000142e011001c700008010020000394e324e2d0000040f0000000100200190000000690000613d000000000101043b00000000020004110000139102200197000000000020043f000000200010043f00000000010004140000138e0010009c0000138e01008041000000c0011002100000142e011001c700008010020000394e324e2d0000040f0000000100200190000000690000613d000000000101043b000000000101041a000000ff001001900000000705000029000000000200041100000e160000c13d0000144b01000041000000000010043f000000040020043f000013fd0100004100004e3400010430000013b90020009c0000017c0000213d000013c30020009c000002090000a13d000013c40020009c000002710000213d000013c70020009c000002da0000613d000013c80020009c000000690000c13d0000000001000416000000000001004b000000690000c13d0000000701000039000000000201041a000013f701000041000000800010043f000013f801000041000000840010043f000000000100041400000008022002700000139102200197000000040020008c0000064f0000c13d0000000103000031000000200030008c00000020040000390000000004034019000006740000013d000013d90020009c000001c20000a13d000013da0020009c000002410000213d000013dd0020009c0000032b0000613d000013de0020009c000000690000c13d000000240030008c000000690000413d0000000001000416000000000001004b000000690000c13d0000000401400370000000000101043b000900000001001d4e3231c60000040f00001391011001970000000002000411000000000021004b000006c10000c13d00000009010000294e3243f60000040f000000000100001900004e330001042e000013b00020009c000001e90000a13d000013b10020009c0000024f0000213d000013b40020009c000003450000613d000013b50020009c000000690000c13d000000440030008c000000690000413d0000000002000416000000000002004b000000690000c13d0000002402400370000000000502043b0000000402400370000000000402043b0000000702000039000000000202041a000013f703000041000000800030043f000013f803000041000000840030043f000000000300041400000008022002700000139102200197000000040020008c000900000004001d000800000005001d000006d50000c13d0000000103000031000000200030008c00000020040000390000000004034019000006fa0000013d000013e30020009c000002260000a13d000013e40020009c000002a10000213d000013e70020009c000003760000613d000013e80020009c000000690000c13d000000440030008c000000690000413d0000000001000416000000000001004b000000690000c13d0000000401400370000000000101043b000013910010009c000000690000213d000000a001000039000000400010043f000000800000043f00000080020000394e3222d60000040f000000a00110008a0000138e0010009c0000138e01008041000000600110021000001446011001c700004e330001042e000013ba0020009c0000023a0000a13d000013bb0020009c000002b20000213d000013be0020009c0000037e0000613d000013bf0020009c000000690000c13d0000000001000416000000000001004b000000690000c13d4e3224240000040f0000057d0000013d000013cf0020009c000002fe0000213d000013d20020009c0000054f0000613d000013d30020009c000000690000c13d000000240030008c000000690000413d0000000001000416000000000001004b000000690000c13d0000000401400370000000000101043b000013910010009c000000690000213d4e324cd60000040f4e3230140000040f0000057d0000013d000013a60020009c000003170000213d000013a90020009c000005590000613d000013aa0020009c000000690000c13d000000440030008c000000690000413d0000000001000416000000000001004b000000690000c13d0000000401400370000000000101043b000013910010009c000000690000213d0000002402400370000000000202043b000900000002001d000013910020009c000000690000213d000000000010043f0000000501000039000000200010043f000000400200003900000000010000194e324df50000040f0000000902000029000000000020043f000000200010043f000000000100001900000040020000394e324df50000040f000000000101041a000000ff001001900000000001000039000000010100c039000000800010043f000013f60100004100004e330001042e000013df0020009c000003ed0000613d000013e00020009c0000032a0000613d000013e10020009c000000690000c13d000000440030008c000000690000413d0000000001000416000000000001004b000000690000c13d0000000401400370000000000101043b000800000001001d000013910010009c000000690000213d0000002401400370000000000101043b000700000001001d0000000701000039000000000201041a0000141901000041000000800010043f0000141a01000041000000840010043f00000000010004110000139101100197000900000001001d000000a40010043f000000000100041400000008022002700000139102200197000000040020008c00000e970000c13d0000000103000031000000200030008c0000002004000039000000000403401900000ebc0000013d000013b60020009c000004080000613d000013b70020009c000004680000613d000013b80020009c0000022c0000613d000000690000013d000013f20020009c0000040d0000613d000013f30020009c000004830000613d000013f40020009c000000690000c13d0000000002000416000000000002004b000000690000c13d0000000702000039000000000202041a000013f703000041000000800030043f000013f803000041000000840030043f000000000300041400000008022002700000139102200197000000040020008c000007d70000c13d0000000103000031000000200030008c00000020040000390000000004034019000007fc0000013d000013c90020009c000004280000613d000013ca0020009c000004940000613d000013cb0020009c000000690000c13d000000240030008c000000690000413d0000000001000416000000000001004b000000690000c13d0000000701000039000000000201041a0000141901000041000000800010043f0000143301000041000000840010043f0000000001000411000000a40010043f000000000100041400000008022002700000139102200197000000040020008c0000087d0000c13d0000000103000031000000200030008c00000020040000390000000004034019000008a20000013d000013e90020009c000004430000613d000013ea0020009c000004a90000613d000013eb0020009c000000690000c13d0000000001000416000000000001004b000000690000c13d4e32234d0000040f000900000001001d4e3224240000040f000000090110006b0000057d0000813d0000143d01000041000000000010043f0000001101000039000000040010043f000013fd0100004100004e3400010430000013c00020009c0000044d0000613d000013c10020009c000004c80000613d000013c20020009c000003250000613d000000690000013d000013db0020009c0000032a0000613d000013dc0020009c000000690000c13d000000240030008c000000690000413d0000000001000416000000000001004b000000690000c13d0000000401400370000000000101043b4e322ec10000040f00001391001001980000057b0000013d000013b20020009c0000035a0000613d000013b30020009c000000690000c13d0000000001000416000000000001004b000000690000c13d4e3224fb0000040f0000057d0000013d000013ee0020009c000003250000613d000013ef0020009c000000690000c13d000000240030008c000000690000413d0000000001000416000000000001004b000000690000c13d0000000701000039000000000201041a000013f701000041000000800010043f000013f801000041000000840010043f000000000100041400000008022002700000139102200197000000040020008c0000077c0000c13d0000000103000031000000200030008c00000020040000390000000004034019000007a10000013d000013c50020009c000003930000613d000013c60020009c000000690000c13d000000240030008c000000690000413d0000000001000416000000000001004b000000690000c13d0000000401400370000000000101043b000013960010009c000000690000213d0000002302100039000000000032004b000000690000813d0000000402100039000000000224034f000000000202043b000500000002001d000013960020009c000000690000213d00000005020000290000000502200210000400240010003d0000000401200029000000000031004b000000690000213d0000000701000039000000000201041a0000141901000041000000800010043f0000141f01000041000000840010043f00000000010004110000139103100197000000a40030043f000000000100041400000008022002700000139102200197000000040020008c000900000003001d000014400000c13d0000000103000031000000200030008c00000020040000390000000004034019000014650000013d000013e50020009c000003bd0000613d000013e60020009c000000690000c13d000000240030008c000000690000413d0000000002000416000000000002004b000000690000c13d0000000603000039000000000203041a000000020020008c000007c10000c13d0000144501000041000000000010043f000014060100004100004e3400010430000013bc0020009c000003d20000613d000013bd0020009c000000690000c13d000000840030008c000000690000413d0000000001000416000000000001004b000000690000c13d0000000401400370000000000101043b000900000001001d000013910010009c000000690000213d0000002401400370000000000101043b000800000001001d000013910010009c000000690000213d0000006401400370000000000101043b000013960010009c000000690000213d0000002302100039000000000032004b000000690000813d0000000402100039000000000224034f000000000202043b0000004404400370000000000404043b000700000004001d00000024011000394e3223150000040f000600000001001d000003390000013d000013d50020009c000005760000613d000013d60020009c000000690000c13d0000000001000416000000000001004b000000690000c13d0000000801000039000000000101041a000000800010043f000013f60100004100004e330001042e000013ac0020009c000005840000613d000013ad0020009c000000690000c13d000000240030008c000000690000413d0000000002000416000000000002004b000000690000c13d0000000402400370000000000202043b000900000002001d0000000702000039000000000202041a000013f703000041000000800030043f000013f803000041000000840030043f000000000300041400000008022002700000139102200197000000040020008c000008f40000c13d0000000103000031000000200030008c00000020040000390000000004034019000009190000013d000013d00020009c000005f70000613d000013d10020009c000000690000c13d0000000001000416000000000001004b000000690000c13d0000000701000039000000000201041a0000141901000041000000800010043f0000143401000041000000840010043f0000000001000411000000a40010043f000000000100041400000008022002700000139102200197000000040020008c000008b80000c13d0000000103000031000000200030008c00000020040000390000000004034019000008dd0000013d000013a70020009c0000060c0000613d000013a80020009c000000690000c13d000000240030008c000000690000413d0000000001000416000000000001004b000000690000c13d0000000401400370000000000101043b4e3230ed0000040f0000138e011001970000057d0000013d0000000001000416000000000001004b000000690000c13d4e32234d0000040f0000057d0000013d4e3222e50000040f0000000001000416000000000001004b000000690000c13d00000000010300194e3222c40000040f000900000001001d000800000002001d000700000003001d000000400100043d000600000001001d00000020020000394e3223030000040f000000060100002900000000000104350000000901000029000000080200002900000007030000294e3225d20000040f000000000100041100000009020000290000000803000029000000070400002900000006050000294e324cfb0000040f000000000100001900004e330001042e000000240030008c000000690000413d0000000001000416000000000001004b000000690000c13d0000000401400370000000000101043b000900000001001d4e322ec10000040f0000139100100198000009ce0000c13d000000400100043d00000064021000390000142a03000041000000000032043500000044021000390000142b03000041000000000032043500000024021000390000002f03000039000006ca0000013d0000000001000416000000000001004b000000690000c13d0000000a01000039000000000101041a0000139101100197000000800010043f000013f60100004100004e330001042e000000240030008c000000690000413d0000000001000416000000000001004b000000690000c13d0000000401400370000000000101043b000900000001001d4e3231c60000040f0000000901000029000000000010043f0000000401000039000000200010043f000000400200003900000000010000194e324df50000040f000000000101041a00001391011001970000057d0000013d0000000001000416000000000001004b000000690000c13d00000000010300194e3222c40000040f4e3225d20000040f000000000100001900004e330001042e000000240030008c000000690000413d0000000001000416000000000001004b000000690000c13d0000000701000039000000000201041a000013f701000041000000800010043f000013f801000041000000840010043f000000000100041400000008022002700000139102200197000000040020008c000009e20000c13d0000000103000031000000200030008c0000002004000039000000000403401900000a070000013d0000000001000416000000000001004b000000690000c13d0000000101000039000000000601041a000000010360019000000001056002700000007f0250018f00000000050260190000001f0050008c00000000040000390000000104002039000000000446013f00000001004001900000061f0000c13d000000800050043f000000000003004b00000eeb0000c13d0000145301600197000000a00010043f000000000002004b000000c001000039000000a001006039000000800210008a00000080010000394e3223030000040f0000002001000039000000400200043d000900000002001d000000000212043600000080010000394e3222920000040f000000090200002900000000012100490000138e0010009c0000138e0100804100000060011002100000138e0020009c0000138e020080410000004002200210000000000121019f00004e330001042e000000240030008c000000690000413d0000000002000416000000000002004b000000690000c13d0000000702000039000000000202041a000013f703000041000000800030043f000013f803000041000000840030043f000000000300041400000008022002700000139102200197000000040020008c00000a260000c13d0000000103000031000000200030008c0000002004000039000000000403401900000a4b0000013d000000440030008c000000690000413d0000000002000416000000000002004b000000690000c13d0000002402400370000000000202043b000800000002001d0000000402400370000000000202043b000900000002001d0000000702000039000000000202041a000013f703000041000000800030043f000013f803000041000000840030043f000000000300041400000008022002700000139102200197000000040020008c00000ad10000c13d0000000103000031000000200030008c0000002004000039000000000403401900000af60000013d000000440030008c000000690000413d0000000001000416000000000001004b000000690000c13d0000002401400370000000000501043b0000000401400370000000000301043b0000000701000039000000000201041a000013f701000041000000800010043f000013f801000041000000840010043f000000000100041400000008022002700000139102200197000000040020008c000900000003001d000800000005001d00000b6f0000c13d0000000103000031000000200030008c0000002004000039000000000403401900000b940000013d0000000001000416000000000001004b000000690000c13d0000000901000039000006100000013d000000440030008c000000690000413d0000000001000416000000000001004b000000690000c13d0000002401400370000000000101043b000800000001001d0000000401400370000000000101043b000900000001001d0000000701000039000000000201041a000013f701000041000000800010043f000013f801000041000000840010043f000000000100041400000008022002700000139102200197000000040020008c00000bb20000c13d0000000103000031000000200030008c0000002004000039000000000403401900000bd70000013d000000440030008c000000690000413d0000000001000416000000000001004b000000690000c13d0000002401400370000000000101043b000800000001001d0000000401400370000000000101043b000900000001001d0000000701000039000000000201041a000013f701000041000000800010043f000013f801000041000000840010043f000000000100041400000008022002700000139102200197000000040020008c00000c250000c13d0000000103000031000000200030008c0000002004000039000000000403401900000c4a0000013d000000240030008c000000690000413d0000000001000416000000000001004b000000690000c13d0000000401400370000000000101043b000013910010009c000006130000a13d000000690000013d000000440030008c000000690000413d0000000001000416000000000001004b000000690000c13d0000002401400370000000000101043b000800000001001d0000000401400370000000000101043b000900000001001d0000000701000039000000000201041a000013f701000041000000800010043f000013f801000041000000840010043f000000000100041400000008022002700000139102200197000000040020008c00000c690000c13d0000000103000031000000200030008c0000002004000039000000000403401900000c8e0000013d000000440030008c000000690000413d0000000001000416000000000001004b000000690000c13d0000002401400370000000000101043b000800000001001d0000000401400370000000000101043b000900000001001d0000000701000039000000000201041a000013f701000041000000800010043f000013f801000041000000840010043f000000000100041400000008022002700000139102200197000000040020008c00000cd70000c13d0000000103000031000000200030008c0000002004000039000000000403401900000cfc0000013d000000240030008c000000690000413d0000000001000416000000000001004b000000690000c13d0000000401400370000000000201043b0000144d00200198000000690000c13d00000001010000390000144e0020009c000010400000213d000014510020009c000006130000613d000014520020009c000006130000613d000010440000013d000000240030008c000000690000413d0000000001000416000000000001004b000000690000c13d0000000701000039000000000201041a000013f701000041000000800010043f000013f801000041000000840010043f000000000100041400000008022002700000139102200197000000040020008c00000d200000c13d0000000103000031000000200030008c0000002004000039000000000403401900000d450000013d000000240030008c000000690000413d0000000001000416000000000001004b000000690000c13d0000000401400370000000000201043b000000000002004b0000000001000039000000010100c039000900000002001d000000000012004b000000690000c13d0000000701000039000000000201041a0000141901000041000000800010043f0000144701000041000000840010043f0000000001000411000000a40010043f000000000100041400000008022002700000139102200197000000040020008c000010470000c13d0000000103000031000000200030008c000000200400003900000000040340190000106c0000013d000000440030008c000000690000413d0000000001000416000000000001004b000000690000c13d0000000401400370000000000101043b000900000001001d000013910010009c000000690000213d0000002401400370000000000201043b000000000002004b0000000001000039000000010100c039000800000002001d000000000012004b000000690000c13d000000090000006b000011980000c13d0000143001000041000000000010043f000000040000043f000013fd0100004100004e3400010430000000240030008c000000690000413d0000000001000416000000000001004b000000690000c13d0000000401400370000000000201043b000013960020009c000000690000213d0000002301200039000000000031004b000000690000813d0000000405200039000000000154034f000000000101043b000013960010009c000000bd0000213d0000001f0610003900001454066001970000003f066000390000145406600197000014180060009c000000bd0000213d00000024022000390000008006600039000000400060043f000000800010043f0000000002210019000000000032004b000000690000213d0000002002500039000000000324034f00001454041001980000001f0510018f000000a0024000390000050b0000613d000000a006000039000000000703034f000000007807043c0000000006860436000000000026004b000005070000c13d000000000005004b000005180000613d000000000343034f0000000304500210000000000502043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000320435000000a00110003900000000000104350000000701000039000000000201041a000000400500043d0000141901000041000000000015043500000004015000390000141f030000410000000000310435000000000100041100001391031001970000002401500039000800000003001d0000000000310435000000000100041400000008022002700000139102200197000000040020008c000016730000c13d0000000103000031000000200030008c00000020040000390000000004034019000016a00000013d000000240030008c000000690000413d0000000001000416000000000001004b000000690000c13d0000000401400370000000000101043b000900000001001d000013910010009c000000690000213d0000000701000039000000000201041a0000141901000041000000800010043f0000141f01000041000000840010043f00000000010004110000139101100197000800000001001d000000a40010043f000000000100041400000008022002700000139102200197000000040020008c0000108e0000c13d0000000103000031000000200030008c00000020040000390000000004034019000010b30000013d000000240030008c000000690000413d0000000001000416000000000001004b000000690000c13d0000000401400370000000000101043b4e3231c60000040f00001391011001970000057d0000013d000000440030008c000000690000413d0000000001000416000000000001004b000000690000c13d0000000401400370000000000101043b000900000001001d000013910010009c000000690000213d0000002401400370000000000101043b000700000001001d0000000701000039000000000201041a000013f701000041000000800010043f000013f801000041000000840010043f000000000100041400000008022002700000139102200197000000040020008c000010c90000c13d0000000103000031000000200030008c00000020040000390000000004034019000010ee0000013d0000000001000416000000000001004b000000690000c13d4e322f9c0000040f000000000001004b0000000001000039000000010100c039000000400200043d00000000001204350000138e0020009c0000138e020080410000004001200210000013f5011001c700004e330001042e000000440030008c000000690000413d0000000001000416000000000001004b000000690000c13d0000000401400370000000000101043b000013960010009c000000690000213d0000002302100039000000000032004b000000690000813d0000000402100039000000000224034f000000000502043b000013960050009c000000bd0000213d00000005025002100000003f062000390000141706600197000014180060009c000000bd0000213d0000008006600039000000400060043f000000800050043f00000024011000390000000002210019000000000032004b000000690000213d000000000005004b000005ac0000613d000000a005000039000000000614034f000000000606043b000013910060009c000000690000213d00000000056504360000002001100039000000000021004b000005a40000413d0000002401400370000000000101043b000013960010009c000000690000213d0000002302100039000000000032004b00000000050000190000140c050040410000140c02200197000000000002004b00000000060000190000140c060020410000140c0020009c000000000605c019000000000006004b000000690000613d0000000402100039000000000224034f000000000202043b000013960020009c000000bd0000213d00000005052002100000003f065000390000141706600197000000400700043d0000000006670019000700000007001d000000000076004b00000000070000390000000107004039000013960060009c000000bd0000213d0000000100700190000000bd0000c13d000000400060043f00000007060000290000000006260436000200000006001d00000024011000390000000005510019000000000035004b000000690000213d000000000002004b000005df0000613d0000000202000029000000000314034f000000000303043b00000000023204360000002001100039000000000051004b000005d90000413d0000000701000039000000000201041a000000400400043d0000141901000041000000000014043500000004014000390000141a03000041000000000031043500000000010004110000139103100197000900000004001d0000002401400039000600000003001d0000000000310435000000000100041400000008022002700000139102200197000000040020008c00001af50000c13d0000000103000031000000200030008c0000002004000039000000000403401900001b1f0000013d000000240030008c000000690000413d0000000002000416000000000002004b000000690000c13d0000000702000039000000000202041a000013f703000041000000800030043f000013f803000041000000840030043f000000000300041400000008022002700000139102200197000000040020008c00000d6a0000c13d0000000103000031000000200030008c0000002004000039000000000403401900000d8f0000013d0000000001000416000000000001004b000000690000c13d0000000701000039000000000101041a00000008011002700000139101100197000000800010043f000013f60100004100004e330001042e000000000200041a000000010420019000000001032002700000007f0330618f0000001f0030008c00000000020000390000000102002039000000000024004b000006250000613d0000143d01000041000000000010043f0000002201000039000000040010043f000013fd0100004100004e3400010430000000200030008c0000000604000029000006370000413d0000001f024000390000000502200270000013970220009a000000200040008c0000139802004041000000000000043f0000001f033000390000000503300270000013970330009a000000000032004b000006370000813d000000000002041b0000000102200039000000000032004b000006330000413d0000001f0040008c00000e0b0000a13d000200000005001d000300000007001d000000000000043f00000000010004140000138e0010009c0000138e01008041000000c00110021000001399011001c70000801002000039000400000006001d4e324e2d0000040f00000004060000290000000100200190000000690000613d00000006090000290000145402900198000000000101043b0000000208000029000011ed0000c13d00000020030000390000000307000029000011fa0000013d0000138e0010009c0000138e01008041000000c001100210000013f9011001c74e324e2d0000040f00000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000006630000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b0000065f0000c13d000000000006004b000006700000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000000e300000613d0000001f01400039000000600110018f00000080021001bf000900000002001d000000400020043f000000200030008c000000690000413d000000800200043d000013910020009c000000690000213d0000000803000039000000000303041a000013fa040000410000000905000029000000000045043500000084041001bf0000000000340435000000c403100039000013fb040000410000000000430435000000a40310003900000000000304350000000003000414000000040020008c00000d600000613d0000138e0030009c0000138e03008041000000c0013002100000004003500210000000000131019f000013fc011001c74e324e2d0000040f000000090b00002900000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000006a40000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000006a00000c13d000000000006004b000006b10000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000142d0000c13d0000001f0530018f0000139006300198000000400200043d000000000462001900001ce40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000006bc0000c13d00001ce40000013d000000400100043d00000064021000390000143f0300004100000000003204350000004402100039000014400300004100000000003204350000002402100039000000230300003900000000003204350000141d0200004100000000002104350000000402100039000000200300003900000000003204350000138e0010009c0000138e01008041000000400110021000001425011001c700004e34000104300000138e0030009c0000138e03008041000000c001300210000013f9011001c74e324e2d0000040f00000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000006e90000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000006e50000c13d000000000006004b000006f60000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000000e3c0000613d0000001f02400039000000600420018f00000080024001bf000700000002001d000000400020043f000000200030008c000000690000413d000000800200043d000013910020009c000000690000213d0000000805000039000000000505041a0000140a06000041000000070a00002900000000006a043500000084064001bf0000000000560435000000c40540003900000008060000290000000000650435000000a404400039000000090500002900000000005404350000000004000414000000040020008c000007220000613d0000004001a002100000138e0040009c0000138e04008041000000c003400210000000000113019f000013fc011001c74e324e2d0000040f00000060031002700001138e0030019d0000138e03300197000300000001035500000001002001900000151e0000613d000000070a00002900001454053001980000001f0630018f00000000045a00190000072c0000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000048004b000007280000c13d000000000006004b000007390000613d000000000151034f0000000305600210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000001f0130003900001454041001970000000001a40019000000000041004b00000000040000390000000104004039000013960010009c000000bd0000213d0000000100400190000000bd0000c13d000000400010043f0000140b0030009c000000690000213d000000200030008c000000690000413d00000007040000290000000004040433000013960040009c000000690000213d000000070630002900000007034000290000001f04300039000000000064004b00000000050000190000140c050080410000140c044001970000140c07600197000000000874013f000000000074004b00000000040000190000140c040040410000140c0080009c000000000405c019000000000004004b000000690000c13d0000000043030434000013960030009c000000bd0000213d0000001f0530003900001454055001970000003f0550003900001454055001970000000005150019000013960050009c000000bd0000213d000000400050043f00000000053104360000000007430019000000000067004b000000690000213d00001454063001970000001f0230018f000000000054004b00001bb30000813d000000000006004b00000acd0000613d00000000082400190000000007250019000000200770008a000000200880008a0000000009670019000000000a680019000000000a0a04330000000000a90435000000200660008c000007750000c13d00000acd0000013d0000138e0010009c0000138e01008041000000c001100210000013f9011001c74e324e2d0000040f00000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000007900000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b0000078c0000c13d000000000006004b0000079d0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000000e480000613d0000001f01400039000000600110018f00000080021001bf000900000002001d000000400020043f000000200030008c000000690000413d000000800200043d000013910020009c000000690000213d0000000803000039000000000303041a000013fe040000410000000905000029000000000045043500000084041001bf0000000000340435000000a403100039000000000003043500000004030000390000000203300367000000000303043b000000c40410003900000000003404350000000003000414000000040020008c0000123f0000c13d0000000001150019000000400010043f0000000902000029000000000202043300000d660000013d0000000202000039000000000023041b0000000702000039000000000202041a0000141903000041000000800030043f0000141f03000041000000840030043f00000000030004110000139103300197000900000003001d000000a40030043f000000000300041400000008022002700000139102200197000000040020008c00000e540000c13d0000000104000031000000200040008c0000002003000039000000000304401900000e790000013d0000138e0030009c0000138e03008041000000c001300210000013f9011001c74e324e2d0000040f00000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000007eb0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000007e70000c13d000000000006004b000007f80000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000000e8b0000613d0000001f02400039000000600420018f00000080024001bf000900000002001d000000400020043f000000200030008c000000690000413d000000800200043d000013910020009c000000690000213d0000000805000039000000000505041a0000140a06000041000000090a00002900000000006a043500000084064001bf0000000000560435000000c40540003900001409060000410000000000650435000000a40440003900000000000404350000000004000414000000040020008c000008230000613d0000004001a002100000138e0040009c0000138e04008041000000c003400210000000000113019f000013fc011001c74e324e2d0000040f00000060031002700001138e0030019d0000138e0330019700030000000103550000000100200190000015410000613d000000090a00002900001454053001980000001f0630018f00000000045a00190000082d0000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000048004b000008290000c13d000000000006004b0000083a0000613d000000000151034f0000000305600210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000001f0130003900001454041001970000000001a40019000000000041004b00000000040000390000000104004039000013960010009c000000bd0000213d0000000100400190000000bd0000c13d000000400010043f0000140b0030009c000000690000213d000000200030008c000000690000413d00000009040000290000000004040433000013960040009c000000690000213d000000090630002900000009034000290000001f04300039000000000064004b00000000050000190000140c050080410000140c044001970000140c07600197000000000874013f000000000074004b00000000040000190000140c040040410000140c0080009c000000000405c019000000000004004b000000690000c13d0000000043030434000013960030009c000000bd0000213d0000001f0530003900001454055001970000003f0550003900001454055001970000000005150019000013960050009c000000bd0000213d000000400050043f00000000053104360000000007430019000000000067004b000000690000213d00001454063001970000001f0230018f000000000054004b00001bbd0000813d000000000006004b00000acd0000613d00000000082400190000000007250019000000200770008a000000200880008a0000000009670019000000000a680019000000000a0a04330000000000a90435000000200660008c000008760000c13d00000acd0000013d0000138e0010009c0000138e01008041000000c00110021000001420011001c74e324e2d0000040f00000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000008910000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b0000088d0000c13d000000000006004b0000089e0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000000ed30000613d0000001f01400039000000600110018f00000080011001bf000000400010043f000000200030008c000000690000413d000000800100043d000000000001004b0000000002000039000000010200c039000000000021004b000000690000c13d000000000001004b0000126e0000c13d0000141e01000041000000000010043f0000000001000411000000040010043f0000143301000041000000240010043f000014040100004100004e34000104300000138e0010009c0000138e01008041000000c00110021000001420011001c74e324e2d0000040f00000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000008cc0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000008c80000c13d000000000006004b000008d90000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000000edf0000613d0000001f01400039000000600110018f00000080021001bf000900000002001d000000400020043f000000200030008c000000690000413d000000800200043d000000000002004b0000000004000039000000010400c039000000000042004b000000690000c13d000000000002004b000012750000c13d0000141e01000041000000000010043f0000000001000411000000040010043f0000143401000041000000240010043f000014040100004100004e34000104300000138e0030009c0000138e03008041000000c001300210000013f9011001c74e324e2d0000040f00000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000009080000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000009040000c13d000000000006004b000009150000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000000f850000613d0000001f02400039000000600420018f00000080024001bf000800000002001d000000400020043f000000200030008c000000690000413d000000800200043d000013910020009c000000690000213d0000000805000039000000000505041a00001408060000410000000807000029000000000067043500000084064001bf0000000000560435000000c40540003900001409060000410000000000650435000000a405400039000000090600002900000000006504350000000005000414000000040020008c000013190000c13d0000000002470019000700000002001d000000400020043f00000008020000290000000005020433000000000005004b0000000002000039000000010200c039000000000025004b000000690000c13d0000000702000039000000000202041a000013f7060000410000000707000029000000000067043500000004067001bf000013f807000041000000000076043500000008022002700000139102200197000000000005004b000016c60000c13d0000000005000414000000040020008c000018990000c13d0000000702400029000800000002001d000000400020043f00000007020000290000000002020433000013910020009c000000690000213d0000000804000039000000000404041a000000080700002900000044057000390000140d0600004100000000006504350000140a05000041000000000057043500000004057000390000000000450435000000240470003900000000000404350000000004000414000000040020008c000009700000613d000000080100002900000040011002100000138e0040009c0000138e04008041000000c003400210000000000131019f000013fc011001c74e324e2d0000040f00000060031002700001138e0030019d0000138e033001970003000000010355000000010020019000001a130000613d000000200200008a00000000052301700000001f0630018f00000008045000290000097b0000613d000000000701034f0000000808000029000000007907043c0000000008980436000000000048004b000009770000c13d000000000006004b000009880000613d000000000151034f0000000305600210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000001f01300039000000000421016f0000000801400029000000000041004b00000000040000390000000104004039000013960010009c000000bd0000213d0000000100400190000000bd0000c13d000000400010043f0000140b0030009c000000690000213d000000200030008c000000690000413d00000008040000290000000004040433000013960040009c000000690000213d000000080630002900000008034000290000001f04300039000000000064004b00000000050000190000140c050080410000140c044001970000140c07600197000000000874013f000000000074004b00000000040000190000140c040040410000140c0080009c000000000405c019000000000004004b000000690000c13d0000000054030434000013960040009c000000bd0000213d0000001f03400039000000000323016f0000003f03300039000000000323016f0000000003130019000013960030009c000000bd0000213d000000400030043f00000000034104360000000007540019000000000067004b000000690000213d000000000724016f0000001f0640018f000000000035004b00001e280000813d000000000007004b000009ca0000613d00000000096500190000000008630019000000200880008a000000200990008a000000000a780019000000000b790019000000000b0b04330000000000ba0435000000200770008c000009c40000c13d000000000006004b00001e3e0000613d000000000803001900001e340000013d00000009010000294e3231c60000040f0000000701000039000000000201041a000000400b00043d000013f70100004100000000001b04350000000401b00039000013f8030000410000000000310435000000000100041400000008022002700000139102200197000000040020008c00000f910000c13d0000000103000031000000200030008c0000002004000039000000000403401900000fbd0000013d0000138e0010009c0000138e01008041000000c001100210000013f9011001c74e324e2d0000040f00000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000009f60000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000009f20000c13d000000000006004b00000a030000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000000fe00000613d0000001f01400039000000600110018f00000080021001bf000900000002001d000000400020043f000000200030008c000000690000413d000000800200043d000013910020009c000000690000213d0000000803000039000000000303041a0000142d040000410000000905000029000000000045043500000084041001bf0000000000340435000000a403100039000000000003043500000004030000390000000203300367000000000303043b000000c40410003900000000003404350000000003000414000000040020008c000013490000c13d0000000001150019000000400010043f000000090200002900000d190000013d0000138e0030009c0000138e03008041000000c001300210000013f9011001c74e324e2d0000040f00000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000a3a0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000a360000c13d000000000006004b00000a470000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000000fec0000613d0000001f02400039000000600420018f00000080024001bf000900000002001d000000400020043f000000200030008c000000690000413d000000800200043d000013910020009c000000690000213d0000000805000039000000000505041a0000140a06000041000000090a00002900000000006a043500000084064001bf0000000000560435000000a405400039000000000005043500000004050000390000000205500367000000000505043b000000c40440003900000000005404350000000004000414000000040020008c00000a740000613d0000004001a002100000138e0040009c0000138e04008041000000c003400210000000000113019f000013fc011001c74e324e2d0000040f00000060031002700001138e0030019d0000138e0330019700030000000103550000000100200190000015aa0000613d000000090a00002900001454053001980000001f0630018f00000000045a001900000a7e0000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000048004b00000a7a0000c13d000000000006004b00000a8b0000613d000000000151034f0000000305600210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000001f0130003900001454041001970000000001a40019000000000041004b00000000040000390000000104004039000013960010009c000000bd0000213d0000000100400190000000bd0000c13d000000400010043f0000140b0030009c000000690000213d000000200030008c000000690000413d00000009040000290000000004040433000013960040009c000000690000213d000000090630002900000009034000290000001f04300039000000000064004b00000000050000190000140c050080410000140c044001970000140c07600197000000000874013f000000000074004b00000000040000190000140c040040410000140c0080009c000000000405c019000000000004004b000000690000c13d0000000043030434000013960030009c000000bd0000213d0000001f0530003900001454055001970000003f0550003900001454055001970000000005150019000013960050009c000000bd0000213d000000400050043f00000000053104360000000007430019000000000067004b000000690000213d00001454063001970000001f0230018f000000000054004b00001bc70000813d000000000006004b00000acd0000613d00000000082400190000000007250019000000200770008a000000200880008a0000000009670019000000000a680019000000000a0a04330000000000a90435000000200660008c00000ac70000c13d000000000002004b00001bdd0000613d000000000705001900001bd30000013d0000138e0030009c0000138e03008041000000c001300210000013f9011001c74e324e2d0000040f00000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000ae50000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000ae10000c13d000000000006004b00000af20000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000000ff80000613d0000001f02400039000000600420018f00000080024001bf000700000002001d000000400020043f000000200030008c000000690000413d000000800200043d000013910020009c000000690000213d0000000805000039000000000505041a0000142c06000041000000070a00002900000000006a043500000084064001bf0000000000560435000000c40540003900000008060000290000000000650435000000a404400039000000090500002900000000005404350000000004000414000000040020008c00000b1e0000613d0000004001a002100000138e0040009c0000138e04008041000000c003400210000000000113019f000013fc011001c74e324e2d0000040f00000060031002700001138e0030019d0000138e0330019700030000000103550000000100200190000015b60000613d000000070a00002900001454053001980000001f0630018f00000000045a001900000b280000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000048004b00000b240000c13d000000000006004b00000b350000613d000000000151034f0000000305600210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000001f0130003900001454011001970000000002a10019000000000012004b00000000010000390000000101004039000013960020009c000000bd0000213d0000000100100190000000bd0000c13d000000400020043f0000140b0030009c000000690000213d000000200030008c000000690000413d00000007010000290000000001010433000013960010009c000000690000213d000000070330002900000007011000290000001f04100039000000000034004b00000000050000190000140c050080410000140c044001970000140c06300197000000000764013f000000000064004b00000000040000190000140c040040410000140c0070009c000000000405c019000000000004004b000000690000c13d0000000015010434000013960050009c000000bd0000213d00000005045002100000003f0640003900001417066001970000000006260019000013960060009c000000bd0000213d000000400060043f00000000005204350000000004140019000000000034004b000000690000213d000000000005004b00000e080000613d0000000003020019000000200330003900000000150104340000000000530435000000000041004b00000b690000413d00000e080000013d0000138e0010009c0000138e01008041000000c001100210000013f9011001c74e324e2d0000040f00000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000b830000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000b7f0000c13d000000000006004b00000b900000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000010040000613d0000001f01400039000000600110018f00000080021001bf000700000002001d000000400020043f000000200030008c000000690000413d000000800200043d000013910020009c000000690000213d0000000803000039000000000303041a000013fa040000410000000705000029000000000045043500000084041001bf0000000000340435000000c40310003900000008040000290000000000430435000000a403100039000000090400002900000000004304350000000003000414000000040020008c000013780000c13d0000000001150019000000400010043f000000070200002900000d630000013d0000138e0010009c0000138e01008041000000c001100210000013f9011001c74e324e2d0000040f00000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000bc60000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000bc20000c13d000000000006004b00000bd30000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000010100000613d0000001f01400039000000600110018f00000080021001bf000700000002001d000000400020043f000000200030008c000000690000413d000000800200043d000013910020009c000000690000213d0000000803000039000000000303041a0000142d040000410000000705000029000000000045043500000084041001bf0000000000340435000000c40310003900000008040000290000000000430435000000a403100039000000090400002900000000004304350000000003000414000000040020008c00000d160000613d0000138e0030009c0000138e03008041000000c0013002100000004003500210000000000131019f000013fc011001c74e324e2d0000040f000000070b00002900000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900000c080000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00000c040000c13d000000000006004b00000c150000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000000cd00000c13d0000001f0530018f0000139006300198000000400200043d000000000462001900001ce40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000c200000c13d00001ce40000013d0000138e0010009c0000138e01008041000000c001100210000013f9011001c74e324e2d0000040f00000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000c390000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000c350000c13d000000000006004b00000c460000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000101c0000613d0000001f01400039000000600110018f00000080021001bf000700000002001d000000400020043f000000200030008c000000690000413d000000800200043d000013910020009c000000690000213d0000000803000039000000000303041a000013fe040000410000000705000029000000000045043500000084041001bf0000000000340435000000c40310003900000008040000290000000000430435000000a403100039000000090400002900000000004304350000000003000414000000040020008c000013a70000c13d0000000001150019000000400010043f0000000702000029000000000202043300000d660000013d0000138e0010009c0000138e01008041000000c001100210000013f9011001c74e324e2d0000040f00000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000c7d0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000c790000c13d000000000006004b00000c8a0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000010280000613d0000001f01400039000000600110018f00000080021001bf000700000002001d000000400020043f000000200030008c000000690000413d000000800200043d000013910020009c000000690000213d0000000803000039000000000303041a00001431040000410000000705000029000000000045043500000084041001bf0000000000340435000000c40310003900000008040000290000000000430435000000a403100039000000090400002900000000004304350000000003000414000000040020008c00000d160000613d0000138e0030009c0000138e03008041000000c0013002100000004003500210000000000131019f000013fc011001c74e324e2d0000040f000000070b00002900000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900000cbf0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00000cbb0000c13d000000000006004b00000ccc0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000015ce0000613d0000001f01400039000000600110018f0000000001b10019000000400010043f000000200030008c000000690000413d00000d180000013d0000138e0010009c0000138e01008041000000c001100210000013f9011001c74e324e2d0000040f00000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000ceb0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000ce70000c13d000000000006004b00000cf80000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000010340000613d0000001f01400039000000600110018f00000080021001bf000700000002001d000000400020043f000000200030008c000000690000413d000000800200043d000013910020009c000000690000213d0000000803000039000000000303041a00001408040000410000000705000029000000000045043500000084041001bf0000000000340435000000c40310003900000008040000290000000000430435000000a403100039000000090400002900000000004304350000000003000414000000040020008c000013d60000c13d0000000001150019000000400010043f00000007020000290000000002020433000000000002004b0000000003000039000000010300c039000000000032004b000000690000c13d00000d660000013d0000138e0010009c0000138e01008041000000c001100210000013f9011001c74e324e2d0000040f00000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000d340000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000d300000c13d000000000006004b00000d410000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000010820000613d0000001f01400039000000600110018f00000080021001bf000900000002001d000000400020043f000000200030008c000000690000413d000000800200043d000013910020009c000000690000213d0000000803000039000000000303041a000013fa040000410000000905000029000000000045043500000084041001bf0000000000340435000000a403100039000000000003043500000004030000390000000203300367000000000303043b000000c40410003900000000003404350000000003000414000000040020008c000014050000c13d0000000001150019000000400010043f00000009020000290000000002020433000013910020009c000000690000213d00000000002104350000004001100210000013f5011001c700004e330001042e0000138e0030009c0000138e03008041000000c001300210000013f9011001c74e324e2d0000040f00000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000d7e0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000d7a0000c13d000000000006004b00000d8b0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000011170000613d0000001f02400039000000600420018f00000080024001bf000900000002001d000000400020043f000000200030008c000000690000413d000000800200043d000013910020009c000000690000213d0000000805000039000000000505041a0000142c06000041000000090a00002900000000006a043500000084064001bf0000000000560435000000a405400039000000000005043500000004050000390000000205500367000000000505043b000000c40440003900000000005404350000000004000414000000040020008c00000db80000613d0000004001a002100000138e0040009c0000138e04008041000000c003400210000000000113019f000013fc011001c74e324e2d0000040f00000060031002700001138e0030019d0000138e0330019700030000000103550000000100200190000016210000613d000000090a00002900001454053001980000001f0630018f00000000045a001900000dc20000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000048004b00000dbe0000c13d000000000006004b00000dcf0000613d000000000151034f0000000305600210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000001f0130003900001454011001970000000002a10019000000000012004b00000000010000390000000101004039000013960020009c000000bd0000213d0000000100100190000000bd0000c13d000000400020043f0000140b0030009c000000690000213d000000200030008c000000690000413d00000009010000290000000001010433000013960010009c000000690000213d000000090330002900000009011000290000001f04100039000000000034004b00000000050000190000140c050080410000140c044001970000140c06300197000000000764013f000000000064004b00000000040000190000140c040040410000140c0070009c000000000405c019000000000004004b000000690000c13d0000000015010434000013960050009c000000bd0000213d00000005045002100000003f0640003900001417066001970000000006260019000013960060009c000000bd0000213d000000400060043f00000000005204350000000004140019000000000034004b000000690000213d000000000005004b00000e080000613d0000000003020019000000200330003900000000150104340000000000530435000000000041004b00000e030000413d000000400100043d000900000001001d000015980000013d000000000004004b000000000200001900000e0f0000613d00000000020104330000000301400210000014550110027f0000145501100167000000000112016f0000000102400210000000000121019f000012060000013d00000000010004140000138e0010009c0000138e01008041000000c00110021000001441011001c70000800d0200003900000004030000390000144c04000041000000090600002900000008070000294e324e280000040f0000000100200190000000690000613d0000000801000029000000000010043f0000000401000039000000200010043f000000400200003900000000010000194e324df50000040f000000000201041a0000143e0220019700000009022001af000000000021041b000000000100001900004e330001042e0000001f0530018f0000139006300198000000400200043d000000000462001900001ce40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000e370000c13d00001ce40000013d0000001f0530018f0000139006300198000000400200043d000000000462001900001ce40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000e430000c13d00001ce40000013d0000001f0530018f0000139006300198000000400200043d000000000462001900001ce40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000e4f0000c13d00001ce40000013d0000138e0030009c0000138e03008041000000c00130021000001420011001c74e324e2d0000040f00000060031002700000138e04300197000000200040008c000000200300003900000000030440190000001f0630018f000000200730019000000080057001bf00000e680000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000e640000c13d000000000006004b00000e750000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000004001f00030000000103550000000100200190000011230000613d0000001f02300039000000600220018f00000080052001bf000000400050043f000000200040008c000000690000413d000000800200043d000000000002004b0000000003000039000000010300c039000000000032004b000000690000c13d000000000002004b0000152a0000c13d0000141e01000041000000000010043f0000000901000029000010c40000013d0000001f0530018f0000139006300198000000400200043d000000000462001900001ce40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000e920000c13d00001ce40000013d0000138e0010009c0000138e01008041000000c00110021000001420011001c74e324e2d0000040f00000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000eab0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000ea70000c13d000000000006004b00000eb80000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000113d0000613d0000001f01400039000000600110018f00000080011001bf000500000001001d000000400010043f000000200030008c000000690000413d000000800100043d000000000001004b0000000002000039000000010200c039000000000021004b000000690000c13d000000000001004b0000154d0000c13d0000141e01000041000000000010043f0000000901000029000000040010043f0000141a01000041000000240010043f000014040100004100004e34000104300000001f0530018f0000139006300198000000400200043d000000000462001900001ce40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000eda0000c13d00001ce40000013d0000001f0530018f0000139006300198000000400200043d000000000462001900001ce40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000ee60000c13d00001ce40000013d000900000006001d000800000005001d000000000010043f00000000010004140000138e0010009c0000138e01008041000000c00110021000001399011001c700008010020000394e324e2d0000040f0000000100200190000000690000613d0000000902000029000000020020008c000015050000813d000000a001000039000003aa0000013d0000138e0010009c0000138e01008041000000c00110021000001420011001c74e324e2d0000040f00000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf00000f100000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b00000f0c0000c13d000000000006004b00000f1d0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000011800000613d0000001f01400039000000600110018f00000080021001bf000700000002001d000000400020043f000000200030008c000000690000413d000000800200043d000000000002004b0000000004000039000000010400c039000000000042004b000000690000c13d000000000002004b000010c10000613d0000000702000039000000000202041a000013f7040000410000000705000029000000000045043500000084011001bf000013f8040000410000000000410435000000000100041400000008022002700000139102200197000000040020008c000017520000c13d000000200030008c00000020030080390000001f01300039000000600110018f0000000001510019000000400010043f00000007010000290000000001010433000800000001001d000013910010009c000000690000213d0000000801000039000000000101041a000700000001001d000014210100004100000000001004430000000801000029000000040010044300000000010004140000138e0010009c0000138e01008041000000c00110021000001422011001c700008002020000394e324e2d0000040f0000000100200190000022450000613d000000000101043b000000000001004b000000690000613d000000400300043d00000064013000390000000902000029000000000021043500000044013000390000142302000041000000000021043500001424010000410000000000130435000000040130003900000007020000290000000000210435000900000003001d0000002401300039000000000001043500000000010004140000000802000029000000040020008c00000f7e0000613d00000009020000290000138e0020009c0000138e0200804100000040022002100000138e0010009c0000138e01008041000000c001100210000000000121019f00001425011001c700000008020000294e324e280000040f00000060031002700001138e0030019d0003000000010355000000010020019000001b3b0000613d0000000901000029000013960010009c000000bd0000213d0000000901000029000000400010043f000000000100001900004e330001042e0000001f0530018f0000139006300198000000400200043d000000000462001900001ce40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000f8c0000c13d00001ce40000013d0000138e00b0009c0000138e0300004100000000030b401900000040033002100000138e0010009c0000138e01008041000000c001100210000000000131019f000013fd011001c700080000000b001d4e324e2d0000040f000000080b00002900000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900000fac0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00000fa80000c13d000000000006004b00000fb90000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000118c0000613d0000001f01400039000000600110018f0000000002b10019000000000012004b00000000010000390000000101004039000800000002001d000013960020009c000000bd0000213d0000000100100190000000bd0000c13d0000000801000029000000400010043f000000200030008c000000690000413d00000000020b0433000013910020009c000000690000213d0000000801000039000000000101041a00000008060000290000004404600039000014280500004100000000005404350000140a04000041000000000046043500000004046000390000000000140435000000240160003900000000000104350000000001000414000000040020008c000017840000c13d0000000301000367000017940000013d0000001f0530018f0000139006300198000000400200043d000000000462001900001ce40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000fe70000c13d00001ce40000013d0000001f0530018f0000139006300198000000400200043d000000000462001900001ce40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000ff30000c13d00001ce40000013d0000001f0530018f0000139006300198000000400200043d000000000462001900001ce40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00000fff0000c13d00001ce40000013d0000001f0530018f0000139006300198000000400200043d000000000462001900001ce40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000100b0000c13d00001ce40000013d0000001f0530018f0000139006300198000000400200043d000000000462001900001ce40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000010170000c13d00001ce40000013d0000001f0530018f0000139006300198000000400200043d000000000462001900001ce40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000010230000c13d00001ce40000013d0000001f0530018f0000139006300198000000400200043d000000000462001900001ce40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000102f0000c13d00001ce40000013d0000001f0530018f0000139006300198000000400200043d000000000462001900001ce40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000103b0000c13d00001ce40000013d0000144f0020009c000006130000613d000014500020009c000006130000613d000000800000043f000013f60100004100004e330001042e0000138e0010009c0000138e01008041000000c00110021000001420011001c74e324e2d0000040f00000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf0000105b0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000010570000c13d000000000006004b000010680000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000011c90000613d0000001f01400039000000600210018f00000080012001bf000000400010043f000000200030008c000000690000413d000000800300043d000000000003004b0000000004000039000000010400c039000000000043004b000000690000c13d000000000003004b000015fe0000c13d0000141e01000041000000000010043f0000000001000411000000040010043f0000144701000041000000240010043f000014040100004100004e34000104300000001f0530018f0000139006300198000000400200043d000000000462001900001ce40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000010890000c13d00001ce40000013d0000138e0010009c0000138e01008041000000c00110021000001420011001c74e324e2d0000040f00000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000010a20000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b0000109e0000c13d000000000006004b000010af0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000011d50000613d0000001f01400039000000600110018f00000080011001bf000000400010043f000000200030008c000000690000413d000000800100043d000000000001004b0000000002000039000000010200c039000000000021004b000000690000c13d000000000001004b0000162d0000c13d0000141e01000041000000000010043f0000000801000029000000040010043f0000141f01000041000000240010043f000014040100004100004e34000104300000138e0010009c0000138e01008041000000c001100210000013f9011001c74e324e2d0000040f000000800a00003900000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000010dd0000613d000000000801034f000000008908043c000000000a9a043600000000005a004b000010d90000c13d000000000006004b000010ea0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000011e10000613d0000001f01400039000000600110018f00000080021001bf000800000002001d000000400020043f000000200030008c000000690000413d000000800200043d000013910020009c000000690000213d0000000803000039000000000303041a000013fa040000410000000805000029000000000045043500000084041001bf0000000000340435000000c403100039000013fb040000410000000000430435000000a403100039000000070400002900000000004304350000000003000414000000040020008c000016380000c13d0000000001150019000600000001001d000000400010043f00000008010000290000000001010433000013910010009c000000690000213d000000000001004b000018fb0000c13d0000140701000041000000000010043f0000000701000029000000040010043f000013fd0100004100004e34000104300000001f0530018f0000139006300198000000400200043d000000000462001900001ce40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000111e0000c13d00001ce40000013d0000001f0540018f0000139006400198000000400200043d00000000036200190000112e0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000038004b0000112a0000c13d000000000005004b0000113b0000613d000000000161034f0000000305500210000000000603043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f0000000000130435000000600140021000001cf20000013d0000001f0530018f0000139006300198000000400200043d000000000462001900001ce40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000011440000c13d00001ce40000013d0000138e0010009c0000138e01008041000000c00110021000001420011001c74e324e2d0000040f00000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf0000115d0000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000011590000c13d000000000006004b0000116a0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000015120000613d0000001f01400039000000600110018f00000080011001bf000000400010043f000000200030008c000000690000413d000000800100043d000000000001004b0000000002000039000000010200c039000000000021004b000000690000c13d000000000001004b000017800000c13d0000141e01000041000000000010043f0000000701000029000010c40000013d0000001f0530018f0000139006300198000000400200043d000000000462001900001ce40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000011870000c13d00001ce40000013d0000001f0530018f0000139006300198000000400200043d000000000462001900001ce40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000011930000c13d00001ce40000013d0000000001000411000000000010043f0000000501000039000000200010043f00000000010004140000138e0010009c0000138e01008041000000c0011002100000142e011001c700008010020000394e324e2d0000040f0000000100200190000000690000613d000000000101043b0000000902000029000000000020043f000000200010043f00000000010004140000138e0010009c0000138e01008041000000c0011002100000142e011001c700008010020000394e324e2d0000040f0000000100200190000000690000613d000000000101043b000000000201041a00001453022001970000000803000029000000000232019f000000000021041b000000400100043d00000000003104350000138e0010009c0000138e01008041000000400110021000000000020004140000138e0020009c0000138e02008041000000c002200210000000000112019f00001399011001c70000800d0200003900000003030000390000142f0400004100000000050004110000000906000029000018040000013d0000001f0530018f0000139006300198000000400200043d000000000462001900001ce40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000011d00000c13d00001ce40000013d0000001f0530018f0000139006300198000000400200043d000000000462001900001ce40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000011dc0000c13d00001ce40000013d0000001f0530018f0000139006300198000000400200043d000000000462001900001ce40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000011e80000c13d00001ce40000013d000000010320008a0000000503300270000000000431001900000020030000390000000104400039000000030700002900000000058300190000000005050433000000000051041b00000020033000390000000101100039000000000041004b000011f30000c13d000000000092004b000012040000813d0000000302900210000000f80220018f000014550220027f000014550220016700000000038300190000000003030433000000000223016f000000000021041b000000010190021000000001011001bf000000000010041b0000000001070433000600000001001d000013960010009c000000bd0000213d0000000104000039000000000204041a000000010020019000000001012002700000007f0110618f0000001f0010008c00000000030000390000000103002039000000000232013f00000001002001900000061f0000c13d000000200010008c0000000605000029000012290000413d0000000102000039000000000020043f0000001f0250003900000005022002700000139a0220009a000000200050008c0000139b020040410000001f0110003900000005011002700000139a0110009a000000000012004b000012290000813d000000000002041b0000000102200039000000000012004b000012250000413d0000001f0050008c000014340000a13d000300000007001d0000000101000039000000000010043f00000000010004140000138e0010009c0000138e01008041000000c00110021000001399011001c70000801002000039000400000006001d4e324e2d0000040f0000000100200190000000690000613d000000200200008a0000000602200180000000000101043b000018230000c13d00000020030000390000000306000029000018300000013d0000138e0030009c0000138e03008041000000c0013002100000004003500210000000000131019f000013fc011001c74e324e2d0000040f000000090b00002900000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000012560000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000012520000c13d000000000006004b000012630000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000015350000613d0000001f01400039000000600110018f0000000001b10019000000400010043f000000200030008c000007be0000813d000000690000013d4e3232980000040f00000004010000390000000201100367000000000101043b4e3243f60000040f000000000100001900004e330001042e000000c002100039000000400020043f0000000a0200003900000009040000290000000000240435000000a004100039000014350200004100000000002404350000000902000039000000000202041a000000ff002001900000159a0000c13d000800000004001d0000000702000039000000000202041a000000400b00043d000013f70400004100000000004b04350000000404b00039000013f8050000410000000000540435000000000400041400000008022002700000139102200197000000040020008c000012bd0000613d0000138e00b0009c0000138e0100004100000000010b401900000040011002100000138e0040009c0000138e04008041000000c003400210000000000113019f000013fd011001c700070000000b001d4e324e2d0000040f00000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000070b0000290000000705700029000012aa0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000012a60000c13d000000000006004b000012b70000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000019480000613d0000001f01400039000000600110018f0000000002b10019000000000012004b00000000010000390000000101004039000013960020009c000000bd0000213d0000000100100190000000bd0000c13d000000400020043f000000200030008c000000690000413d00000000010b0433000700000001001d000013910010009c000000690000213d0000000801000039000000000101041a000600000001001d000014210100004100000000001004430000000701000029000000040010044300000000010004140000138e0010009c0000138e01008041000000c00110021000001422011001c700008002020000394e324e2d0000040f0000000100200190000022450000613d000000000101043b000000000001004b000000690000613d000000400300043d000000640130003900000000020004100000000000210435000000440130003900001437020000410000000000210435000014380100004100000000001304350000000401300039000400000001001d00000006020000290000000000210435000500000003001d0000002401300039000000000001043500000000010004140000000702000029000000040020008c000013030000613d00000005020000290000138e0020009c0000138e0200804100000040022002100000138e0010009c0000138e01008041000000c001100210000000000121019f00001425011001c700000007020000294e324e280000040f00000060031002700001138e0030019d0003000000010355000000010020019000001c090000613d0000000501000029000013960010009c000000bd0000213d0000000503000029000000400030043f0000000701000039000000000201041a000013f7010000410000000000130435000013f80100004100000004030000290000000000130435000000000100041400000008022002700000139102200197000000040020008c00001c160000c13d0000000103000031000000200030008c0000002004000039000000000403401900001c400000013d0000138e0050009c0000138e05008041000000c0015002100000004003700210000000000131019f000013fc011001c74e324e2d0000040f000000080b00002900000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000013300000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b0000132c0000c13d000000000006004b0000133d0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000159e0000613d0000001f02400039000000600420018f0000000002b40019000700000002001d000000400020043f000000200030008c000009360000813d000000690000013d0000138e0030009c0000138e03008041000000c0013002100000004003500210000000000131019f000013fc011001c74e324e2d0000040f000000090b00002900000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000013600000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b0000135c0000c13d000000000006004b0000136d0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000015c20000613d0000001f01400039000000600110018f0000000001b10019000000400010043f000000200030008c00000a240000813d000000690000013d0000138e0030009c0000138e03008041000000c0013002100000004003500210000000000131019f000013fc011001c74e324e2d0000040f000000070b00002900000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b00190000138f0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b0000138b0000c13d000000000006004b0000139c0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000015da0000613d0000001f01400039000000600110018f0000000001b10019000000400010043f000000200030008c00000bb00000813d000000690000013d0000138e0030009c0000138e03008041000000c0013002100000004003500210000000000131019f000013fc011001c74e324e2d0000040f000000070b00002900000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000013be0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000013ba0000c13d000000000006004b000013cb0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000015e60000613d0000001f01400039000000600110018f0000000001b10019000000400010043f000000200030008c00000c660000813d000000690000013d0000138e0030009c0000138e03008041000000c0013002100000004003500210000000000131019f000013fc011001c74e324e2d0000040f000000070b00002900000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000013ed0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000013e90000c13d000000000006004b000013fa0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000015f20000613d0000001f01400039000000600110018f0000000001b10019000000400010043f000000200030008c00000d180000813d000000690000013d0000138e0030009c0000138e03008041000000c0013002100000004003500210000000000131019f000013fc011001c74e324e2d0000040f000000090b00002900000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b00190000141c0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000014180000c13d000000000006004b000014290000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000016150000613d0000001f01400039000000600110018f0000000001b10019000000400010043f000000200030008c00000d620000813d000000690000013d000000000005004b0000000001000019000014390000613d000000070100002900000000010104330000000302500210000014550220027f0000145502200167000000000121016f0000000102500210000000000121019f0000183f0000013d0000138e0010009c0000138e01008041000000c00110021000001420011001c74e324e2d0000040f00000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000080057001bf000014540000613d0000008008000039000000000901034f000000009a09043c0000000008a80436000000000058004b000014500000c13d000000000006004b000014610000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000016670000613d0000001f01400039000000600110018f00000080041001bf000000400040043f000000200030008c000000690000413d000000800100043d000000000001004b0000000002000039000000010200c039000000000021004b000000690000c13d000000000001004b00000e870000613d000000050000006b000018070000613d000000000a040019000900000000001d0000000901000029000000050110021000000004011000290000000201100367000000000101043b000700000001001d0000000701000039000000000201041a000013f70100004100000000001a04350000000401a00039000013f8030000410000000000310435000000000100041400000008022002700000139102200197000000040020008c0000148e0000c13d0000000103000031000000200030008c00000020040000390000000004034019000014b90000013d0000138e00a0009c0000138e0300004100000000030a401900000040033002100000138e0010009c0000138e01008041000000c001100210000000000131019f000013fd011001c700080000000a001d4e324e2d0000040f000000080a00002900000060031002700000138e03300197000000200030008c00000020040000390000000004034019000000200640019000000000056a0019000014a80000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000058004b000014a40000c13d0000001f07400190000014b50000613d000000000661034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000001be40000613d0000001f01400039000000600110018f0000000001a10019000013960010009c000000bd0000213d000000400010043f000000200030008c000000690000413d00000000020a0433000013910020009c000000690000213d0000000801000039000000000101041a000600000001001d00001421010000410000000000100443000800000002001d000000040020044300000000010004140000138e0010009c0000138e01008041000000c00110021000001422011001c700008002020000394e324e2d0000040f0000000100200190000022450000613d000000000101043b000000000001004b0000000803000029000000690000613d000000400a00043d0000006401a00039000000010200003900000000002104350000004401a00039000014320200004100000000002104350000002401a0003900000007020000290000000000210435000014240100004100000000001a04350000000401a00039000000060200002900000000002104350000000001000414000000040030008c000014fc0000613d0000138e00a0009c0000138e0200004100000000020a401900000040022002100000138e0010009c0000138e01008041000000c001100210000000000121019f00001425011001c7000000000203001900080000000a001d4e324e280000040f000000080a00002900000060031002700001138e0030019d0003000000010355000000010020019000001bf00000613d0000139600a0009c000000bd0000213d0000004000a0043f00000009020000290000000102200039000900000002001d000000050020006c000014770000413d000018070000013d000000000101043b000000000300001900000008050000290000000002030019000000000301041a000000a004200039000000000034043500000001011000390000002003200039000000000053004b000015080000413d000000c001200039000003aa0000013d0000001f0530018f0000139006300198000000400200043d000000000462001900001ce40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000015190000c13d00001ce40000013d0000001f0530018f0000139006300198000000400200043d000000000462001900001ce40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000015250000c13d00001ce40000013d00000004020000390000000202200367000000000302043b00000000020004140000000006000411000000040060008c0000174b0000c13d000013960040009c000000bd0000213d00000001020000390000190c0000013d0000001f0530018f0000139006300198000000400200043d000000000462001900001ce40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000153c0000c13d00001ce40000013d0000001f0530018f0000139006300198000000400200043d000000000462001900001ce40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000015480000c13d00001ce40000013d0000000701000039000000000201041a000000ff0020019000001a010000c13d0000141b0100004100000005040000290000000000140435000000000100041400000008022002700000139102200197000000040020008c000019540000c13d000000200030008c00000020030080390000001f01300039000000600110018f0000000501100029000600000001001d000000400010043f00000005010000290000000001010433000000000001004b0000000002000039000000010200c039000000000021004b000000690000c13d000000000001004b00001a000000c13d0000000701000029000013960010009c000000bd0000213d000000070100002900000005021002100000003f0120003900001417011001970000000601100029000013960010009c000000bd0000213d000000400010043f000000070100002900000006030000290000000001130436000500000001001d0000001f0120018f000000000002004b000015830000613d0000000504000029000000000224001900000000030000310000000203300367000000003503043c0000000004540436000000000024004b0000157f0000c13d000000000001004b000000070000006b000015950000613d000900000000001d00000008010000294e3233230000040f000000060200002900000000020204330000000904000029000000000042004b00001ff60000a13d0000000502400210000000050220002900000000001204350000000104400039000900000004001d000000070040006c000015870000413d000000400100043d000900000001001d00000006020000294e3222d60000040f000003b30000013d0000143601000041000000000010043f000014060100004100004e34000104300000001f0530018f0000139006300198000000400200043d000000000462001900001ce40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000015a50000c13d00001ce40000013d0000001f0530018f0000139006300198000000400200043d000000000462001900001ce40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000015b10000c13d00001ce40000013d0000001f0530018f0000139006300198000000400200043d000000000462001900001ce40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000015bd0000c13d00001ce40000013d0000001f0530018f0000139006300198000000400200043d000000000462001900001ce40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000015c90000c13d00001ce40000013d0000001f0530018f0000139006300198000000400200043d000000000462001900001ce40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000015d50000c13d00001ce40000013d0000001f0530018f0000139006300198000000400200043d000000000462001900001ce40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000015e10000c13d00001ce40000013d0000001f0530018f0000139006300198000000400200043d000000000462001900001ce40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000015ed0000c13d00001ce40000013d0000001f0530018f0000139006300198000000400200043d000000000462001900001ce40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000015f90000c13d00001ce40000013d0000000703000039000000000303041a000000ff0430018f000000090000006b000017f20000c13d000000000004004b000018090000613d00001453023001970000000703000039000000000023041b00000000020004110000000000210435000000400110021000000000020004140000138e0020009c0000138e02008041000000c002200210000000000112019f00001399011001c70000800d0200003900000001030000390000144904000041000018040000013d0000001f0530018f0000139006300198000000400200043d000000000462001900001ce40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000161c0000c13d00001ce40000013d0000001f0530018f0000139006300198000000400200043d000000000462001900001ce40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000016280000c13d00001ce40000013d000000090300002900000008013002100000139d011001970000000704000039000000000204041a0000142602200197000000000112019f000000000014041b000000000003004b000018070000c13d000018440000013d0000138e0030009c0000138e03008041000000c0013002100000004003500210000000000131019f000013fc011001c74e324e2d0000040f00000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000008057000290000164e0000613d000000000801034f0000000809000029000000008a08043c0000000009a90436000000000059004b0000164a0000c13d000000000006004b0000165b0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000018170000613d0000001f01400039000000600110018f0000000801100029000600000001001d000000400010043f000000200030008c0000110b0000813d000000690000013d0000001f0530018f0000139006300198000000400200043d000000000462001900001ce40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000166e0000c13d00001ce40000013d0000138e0050009c0000138e03000041000000000305401900000040033002100000138e0010009c0000138e01008041000000c001100210000000000131019f00001404011001c7000900000005001d4e324e2d0000040f00000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000090b00002900000009057000290000168e0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b0000168a0000c13d000000000006004b0000169b0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000188d0000613d00000000050b00190000001f01400039000000600110018f0000000002510019000000000012004b00000000010000390000000101004039000900000002001d000013960020009c000000bd0000213d0000000100100190000000bd0000c13d0000000901000029000000400010043f000000200030008c000000690000413d0000000001050433000000000001004b0000000002000039000000010200c039000000000021004b000000690000c13d000000000001004b000010c10000613d0000000701000039000000000201041a000013f701000041000000090400002900000000001404350000000401400039000013f8040000410000000000410435000000000100041400000008022002700000139102200197000000040020008c00001a840000c13d000000200400003900001aae0000013d0000000005000414000000040020008c000018ca0000c13d0000000702400029000800000002001d000000400020043f00000007020000290000000002020433000013910020009c000000690000213d0000000804000039000000000404041a00000008070000290000004405700039000014090600004100000000006504350000002405700039000000090600002900000000006504350000140a050000410000000000570435000000040570003900000000004504350000000004000414000000040020008c000016ee0000613d000000080100002900000040011002100000138e0040009c0000138e04008041000000c003400210000000000131019f000013fc011001c74e324e2d0000040f00000060031002700001138e0030019d0000138e033001970003000000010355000000010020019000001a1f0000613d00001454053001980000001f0630018f0000000804500029000016f80000613d000000000701034f0000000808000029000000007907043c0000000008980436000000000048004b000016f40000c13d000000000006004b000017050000613d000000000151034f0000000305600210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000001f0130003900001454041001970000000801400029000000000041004b00000000040000390000000104004039000013960010009c000000bd0000213d0000000100400190000000bd0000c13d000000400010043f0000140b0030009c000000690000213d000000200030008c000000690000413d00000008040000290000000004040433000013960040009c000000690000213d000000080630002900000008034000290000001f04300039000000000064004b00000000050000190000140c050080410000140c044001970000140c07600197000000000874013f000000000074004b00000000040000190000140c040040410000140c0080009c000000000405c019000000000004004b000000690000c13d0000000043030434000013960030009c000000bd0000213d0000001f0530003900001454055001970000003f0550003900001454055001970000000005150019000013960050009c000000bd0000213d000000400050043f00000000053104360000000007430019000000000067004b000000690000213d00001454063001970000001f0230018f000000000054004b00001e470000813d000000000006004b000017470000613d00000000082400190000000007250019000000200770008a000000200880008a0000000009670019000000000a680019000000000a0a04330000000000a90435000000200660008c000017410000c13d000000000002004b00001e5d0000613d000000000705001900001e530000013d0000138e0020009c0000138e02008041000000c001200210000000000003004b000019010000c13d0000000002000411000019050000013d0000138e0010009c0000138e01008041000000c0011002100000004003500210000000000131019f000013fd011001c74e324e2d0000040f00000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000705700029000017680000613d000000000801034f0000000709000029000000008a08043c0000000009a90436000000000059004b000017640000c13d000000000006004b000017750000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000019840000613d0000001f01400039000000600110018f0000000701100029000000400010043f000000200030008c00000f430000813d000000690000013d000000080000006b000019900000c13d0000000a0100003900000e2a0000013d00000008030000290000138e0030009c0000138e0300804100000040033002100000138e0010009c0000138e01008041000000c001100210000000000131019f000013fc011001c74e324e2d0000040f00000060031002700001138e0030019d0000138e03300197000300000001035500000001002001900000199a0000613d000000200200008a00000000052301700000001f0630018f00000008045000290000179f0000613d000000000701034f0000000808000029000000007907043c0000000008980436000000000048004b0000179b0000c13d000000000006004b000017ac0000613d000000000151034f0000000305600210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000001f01300039000000000421016f0000000801400029000000000041004b00000000040000390000000104004039000013960010009c000000bd0000213d0000000100400190000000bd0000c13d000000400010043f0000140b0030009c000000690000213d000000200030008c000000690000413d00000008040000290000000004040433000013960040009c000000690000213d000000080630002900000008034000290000001f04300039000000000064004b00000000050000190000140c050080410000140c044001970000140c07600197000000000874013f000000000074004b00000000040000190000140c040040410000140c0080009c000000000405c019000000000004004b000000690000c13d0000000054030434000013960040009c000000bd0000213d0000001f03400039000000000323016f0000003f03300039000000000323016f0000000003130019000013960030009c000000bd0000213d000000400030043f00000000034104360000000007540019000000000067004b000000690000213d000000000724016f0000001f0640018f000000000035004b00001ca20000813d000000000007004b000017ee0000613d00000000096500190000000008630019000000200880008a000000200990008a000000000a780019000000000b790019000000000b0b04330000000000ba0435000000200770008c000017e80000c13d000000000006004b00001cb80000613d000000000803001900001cae0000013d000000000004004b000018090000c13d000014530230019700000001022001bf0000000703000039000000000023041b00000000020004110000000000210435000000400110021000000000020004140000138e0020009c0000138e02008041000000c002200210000000000112019f00001399011001c70000800d02000039000000010300003900001448040000414e324e280000040f0000000100200190000000690000613d000000000100001900004e330001042e0000141d03000041000000000031043500000084032001bf00000020040000390000000000430435000000c4032000390000144a040000410000000000430435000000a402200039000000140300003900000000003204350000004001100210000013fc011001c700004e34000104300000001f0530018f0000139006300198000000400200043d000000000462001900001ce40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000181e0000c13d00001ce40000013d000000010320008a0000000503300270000000000431001900000020030000390000000104400039000000030600002900000000056300190000000005050433000000000051041b00000020033000390000000101100039000000000041004b000018290000c13d0000000605000029000000000052004b0000183b0000813d0000000302500210000000f80220018f000014550220027f000014550220016700000000036300190000000003030433000000000223016f000000000021041b000000010150021000000001011001bf000000040600002900000001040000390000139100600198000000000014041b0000000601000039000000000041041b000018480000c13d0000142701000041000000000010043f000014060100004100004e34000104300000000701000039000000000201041a0000139c0220019700000008036002100000139d03300197000000000223019f00000001022001bf000000000021041b0000139e010000410000000802000039000000000012041b0000000b010000390000000902000029000000000021041b00000008010000290000000001010433000700000001001d000013960010009c000000bd0000213d0000000c01000039000000000201041a000000010020019000000001012002700000007f0110618f0000001f0010008c00000000030000390000000103002039000000000232013f00000001002001900000061f0000c13d000000200010008c000018790000413d0000000c02000039000000000020043f00000007030000290000001f0230003900000005022002700000139f0220009a000000200030008c000013a0020040410000001f0110003900000005011002700000139f0110009a000000000012004b000018790000813d000000000002041b0000000102200039000000000012004b000018750000413d00000007010000290000001f0010008c000019a60000a13d0000000c01000039000000000010043f00000000010004140000138e0010009c0000138e01008041000000c00110021000001399011001c700008010020000394e324e2d0000040f0000000100200190000000690000613d000000200200008a0000000702200180000000000101043b00001a2b0000c13d000000200300003900001a380000013d0000001f0530018f0000139006300198000000400200043d000000000462001900001ce40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000018940000c13d00001ce40000013d0000138e0050009c0000138e05008041000000c0015002100000000703000029000700000003001d0000004003300210000000000113019f000013fd011001c74e324e2d0000040f00000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000705700029000018b10000613d000000000801034f0000000709000029000000008a08043c0000000009a90436000000000059004b000018ad0000c13d000000000006004b000018be0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000019b20000613d0000001f02400039000000600220018f0000000702200029000800000002001d000000400020043f000000200030008c0000094f0000813d000000690000013d0000138e0050009c0000138e05008041000000c0015002100000000703000029000700000003001d0000004003300210000000000113019f000013fd011001c74e324e2d0000040f00000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000705700029000018e20000613d000000000801034f0000000709000029000000008a08043c0000000009a90436000000000059004b000018de0000c13d000000000006004b000018ef0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000019be0000613d0000001f02400039000000600220018f0000000702200029000800000002001d000000400020043f000000200030008c000016cc0000813d000000690000013d000000090000006b000019ca0000c13d0000140501000041000000000010043f000014060100004100004e340001043000001441011001c70000800902000039000000000400041100000000050000194e324e280000040f000300000001035500000060031002700001138e0030019d0000138e04300198000019300000613d000000400500043d0000001f0340003900001442033001970000003f0330003900001443063001970000000003560019000000000063004b00000000060000390000000106004039000013960030009c000000bd0000213d0000000100600190000000bd0000c13d000000400030043f000000000645043600001454054001980000001f0440018f0000000003560019000019230000613d000000000701034f000000007807043c0000000006860436000000000036004b0000191f0000c13d000000000004004b000019300000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001304350000000100200190000019370000613d00000001010000390000000602000039000000000012041b000000000100001900004e330001042e000000400100043d00000044021000390000144403000041000000000032043500000024021000390000000f0300003900000000003204350000141d0200004100000000002104350000000402100039000000200300003900000000003204350000138e0010009c0000138e010080410000004001100210000013fc011001c700004e34000104300000001f0530018f0000139006300198000000400200043d000000000462001900001ce40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000194f0000c13d00001ce40000013d0000138e0010009c0000138e01008041000000c00110021000000005030000290000004003300210000000000131019f00001406011001c74e324e2d0000040f00000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000005057000290000196b0000613d000000000801034f0000000509000029000000008a08043c0000000009a90436000000000059004b000019670000c13d000000000006004b000019780000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000019f40000613d0000001f01400039000000600110018f0000000501100029000600000001001d000000400010043f000000200030008c000015600000813d000000690000013d0000001f0530018f0000139006300198000000400200043d000000000462001900001ce40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000198b0000c13d00001ce40000013d000000090100002900000008011002100000139d011001970000000902000039000000000302041a0000142603300197000000000113019f000000000012041b000000000100001900004e330001042e0000001f0530018f0000139006300198000000400200043d000000000462001900001ce40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000019a10000c13d00001ce40000013d000000070000006b0000000001000019000019ab0000613d0000000501000029000000000101043300000007040000290000000302400210000014550220027f0000145502200167000000000121016f000000010240021000001a460000013d0000001f0530018f0000139006300198000000400200043d000000000462001900001ce40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000019b90000c13d00001ce40000013d0000001f0530018f0000139006300198000000400200043d000000000462001900001ce40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000019c50000c13d00001ce40000013d000000090010006c00001a100000c13d0000000701000039000000000201041a000013f70100004100000006030000290000000001130436000900000001001d00000004013001bf000013f8030000410000000000310435000000000100041400000008022002700000139102200197000000040020008c00001a530000c13d00000020010000390000000902000029000000400020043f00000006020000290000000002020433000013910020009c000000690000213d0000000803000039000000000303041a000013fe040000410000000905000029000000000045043500000004045001bf00000000003404350000004403500039000013ff0400004100000000004304350000002403500039000000070400002900000000004304350000000003000414000000040020008c00001b6c0000c13d0000000901100029000000400010043f00001b9b0000013d0000001f0530018f0000139006300198000000400200043d000000000462001900001ce40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000019fb0000c13d00001ce40000013d000500060000002d000000050300002900000044013000390000141c0200004100000000002104350000002401300039000000100200003900000000002104350000141d0100004100000000001304350000000401300039000000200200003900000000002104350000004001300210000013fc011001c700004e3400010430000000000100001900000006020000290000057e0000013d0000001f0530018f0000139006300198000000400200043d000000000462001900001ce40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001a1a0000c13d00001ce40000013d0000001f0530018f0000139006300198000000400200043d000000000462001900001ce40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001a260000c13d00001ce40000013d000000010320008a0000000503300270000000000431001900000020030000390000000104400039000000080600002900000000056300190000000005050433000000000051041b00000020033000390000000101100039000000000041004b00001a310000c13d000000070020006c00001a430000813d00000007020000290000000302200210000000f80220018f000014550220027f000014550220016700000008033000290000000003030433000000000223016f000000000021041b000000070100002900000001011002100000000102000039000000000121019f0000000c02000039000000000012041b0000000901000029000000800010043f000001400000044300000160001004430000002001000039000001000010044300000001010000390000012000100443000013a10100004100004e330001042e0000138e0010009c0000138e01008041000000c0011002100000000603000029000600000003001d0000004003300210000000000113019f000013fd011001c74e324e2d0000040f00000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000060570002900001a6b0000613d000000000801034f0000000609000029000000008a08043c0000000009a90436000000000059004b00001a670000c13d000000000006004b00001a780000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000001b480000613d0000001f01400039000000600110018f0000000602100029000900000002001d000000400020043f000000200030008c000019dd0000813d000000690000013d00000009030000290000138e0030009c0000138e0300804100000040033002100000138e0010009c0000138e01008041000000c001100210000000000131019f000013fd011001c74e324e2d0000040f00000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000090570002900001a9d0000613d000000000801034f0000000909000029000000008a08043c0000000009a90436000000000059004b00001a990000c13d000000000006004b00001aaa0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000001b540000613d0000001f01400039000000600110018f0000000901100029000013960010009c000000bd0000213d000000400010043f000000200030008c000000690000413d00000009010000290000000001010433000900000001001d000013910010009c000000690000213d0000000801000039000000000101041a000800000001001d000014210100004100000000001004430000000901000029000000040010044300000000010004140000138e0010009c0000138e01008041000000c00110021000001422011001c700008002020000394e324e2d0000040f0000000100200190000022450000613d000000000101043b000000000001004b000000690000613d000000400500043d00000064015000390000008002000039000000000021043500000044015000390000142802000041000000000021043500001439010000410000000000150435000000040150003900000008020000290000000000210435000000240150003900000000000104350000008402500039000000800100043d000000000012043500001454041001970000001f0310018f000800000005001d000000a402500039000000a10020008c00001d4f0000413d000000000004004b00001af00000613d000000000632001900000080053001bf000000200660008a0000000007460019000000000845001900000000080804330000000000870435000000200440008c00001aea0000c13d000000000003004b00001d650000613d000000a004000039000000000502001900001d5b0000013d00000009030000290000138e0030009c0000138e0300804100000040033002100000138e0010009c0000138e01008041000000c001100210000000000131019f00001404011001c74e324e2d0000040f00000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000090570002900001b0e0000613d000000000801034f0000000909000029000000008a08043c0000000009a90436000000000059004b00001b0a0000c13d000000000006004b00001b1b0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000001b600000613d0000001f01400039000000600110018f0000000902100029000000000012004b00000000010000390000000101004039000800000002001d000013960020009c000000bd0000213d0000000100100190000000bd0000c13d0000000801000029000000400010043f000000200030008c000000690000413d00000009010000290000000001010433000000000001004b0000000002000039000000010200c039000000000021004b000000690000c13d000000000001004b00001ccb0000c13d0000141e01000041000000000010043f000000060100002900000ece0000013d0000138e033001970000001f0530018f0000139006300198000000400200043d000000000462001900001ce40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001b430000c13d00001ce40000013d0000001f0530018f0000139006300198000000400200043d000000000462001900001ce40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001b4f0000c13d00001ce40000013d0000001f0530018f0000139006300198000000400200043d000000000462001900001ce40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001b5b0000c13d00001ce40000013d0000001f0530018f0000139006300198000000400200043d000000000462001900001ce40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001b670000c13d00001ce40000013d0000138e0030009c0000138e03008041000000c0013002100000000903000029000900000003001d0000004003300210000000000113019f000013fc011001c74e324e2d0000040f00000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000090570002900001b840000613d000000000801034f0000000909000029000000008a08043c0000000009a90436000000000059004b00001b800000c13d000000000006004b00001b910000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000001bfd0000613d0000001f01400039000000600110018f0000000901100029000000400010043f000000200030008c000000690000413d00000009010000290000000001010433000900000001001d0000140001000041000000000010044300000000010004140000138e0010009c0000138e01008041000000c00110021000001401011001c70000800b020000394e324e2d0000040f0000000100200190000022450000613d000000000101043b000014020010009c00001c9a0000413d0000140302000041000000000020043f0000002002000039000000040020043f000000240010043f000014040100004100004e34000104300000000007650019000000000006004b00001bd00000613d00000000080400190000000009050019000000008a0804340000000009a90436000000000079004b00001bb80000c13d00001bd00000013d0000000007650019000000000006004b00001bd00000613d00000000080400190000000009050019000000008a0804340000000009a90436000000000079004b00001bc20000c13d00001bd00000013d0000000007650019000000000006004b00001bd00000613d00000000080400190000000009050019000000008a0804340000000009a90436000000000079004b00001bcc0000c13d000000000002004b00001bdd0000613d00000000046400190000000302200210000000000607043300000000062601cf000000000626022f00000000040404330000010002200089000000000424022f00000000022401cf000000000262019f0000000000270435000000000253001900000000000204350000002002000039000000400300043d000900000003001d0000000002230436000003b20000013d0000001f0530018f0000139006300198000000400200043d000000000462001900001ce40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001beb0000c13d00001ce40000013d0000138e033001970000001f0530018f0000139006300198000000400200043d000000000462001900001ce40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001bf80000c13d00001ce40000013d0000001f0530018f0000139006300198000000400200043d000000000462001900001ce40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001c040000c13d00001ce40000013d0000138e033001970000001f0530018f0000139006300198000000400200043d000000000462001900001ce40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001c110000c13d00001ce40000013d00000005030000290000138e0030009c0000138e0300804100000040033002100000138e0010009c0000138e01008041000000c001100210000000000131019f000013fd011001c74e324e2d0000040f00000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000050570002900001c2f0000613d000000000801034f0000000509000029000000008a08043c0000000009a90436000000000059004b00001c2b0000c13d000000000006004b00001c3c0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000001cd90000613d0000001f01400039000000600110018f0000000501100029000013960010009c000000bd0000213d000000400010043f000000200030008c000000690000413d00000005010000290000000001010433000700000001001d000013910010009c000000690000213d0000000801000039000000000101041a000600000001001d000014210100004100000000001004430000000701000029000000040010044300000000010004140000138e0010009c0000138e01008041000000c00110021000001422011001c700008002020000394e324e2d0000040f0000000100200190000022450000613d000000000101043b000000000001004b000000690000613d000000400300043d0000006401300039000000000200041100000000002104350000004401300039000013fb020000410000000000210435000014380100004100000000001304350000000401300039000400000001001d00000006020000290000000000210435000500000003001d0000002401300039000000000001043500000000010004140000000702000029000000040020008c00001c840000613d00000005020000290000138e0020009c0000138e0200804100000040022002100000138e0010009c0000138e01008041000000c001100210000000000121019f00001425011001c700000007020000294e324e280000040f00000060031002700001138e0030019d0003000000010355000000010020019000001f3a0000613d0000000501000029000013960010009c000000bd0000213d0000000503000029000000400030043f0000000701000039000000000201041a000013f7010000410000000000130435000013f80100004100000004030000290000000000130435000000000100041400000008022002700000139102200197000000040020008c00001f470000c13d0000000103000031000000200030008c0000002004000039000000000403401900001f710000013d00000009020000290000138e0220019700000000012100490000138e0010009c000002340000213d000000400200043d000600000002001d00001a110000013d0000000008730019000000000007004b00001cab0000613d0000000009050019000000000a030019000000009b090434000000000aba043600000000008a004b00001ca70000c13d000000000006004b00001cb80000613d00000000057500190000000306600210000000000708043300000000076701cf000000000767022f00000000050504330000010006600089000000000565022f00000000056501cf000000000575019f0000000000580435000000000434001900000000000404350000000004010433000000000004004b00001cc40000c13d000000400100043d000014290010009c000000bd0000213d0000002002100039000000400020043f000000000001043500001e5f0000013d00000009040000290000140e0040009c00001cf70000413d000000400600003900000009040000290000140e0440012a00001d000000013d0000000701000039000000000201041a000000ff0020019000001f290000c13d0000141b0100004100000008040000290000000000140435000000000100041400000008022002700000139102200197000000040020008c00001dcb0000c13d000000200400003900001df50000013d0000001f0530018f0000139006300198000000400200043d000000000462001900001ce40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001ce00000c13d000000000005004b00001cf10000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f000000000014043500000060013002100000138e0020009c0000138e020080410000004002200210000000000112019f00004e34000104300000000904000029000014100040009c0000140f0440212a00000000060000390000002006002039000014110040009c00000010066081bf0000141204408197000014110440812a000014130040009c00000008066080390000139604408197000014130440812a000027100040008c00000004066080390000138e04408197000027100440811a000000640040008c00000002066080390000ffff0440818f000000640440811a000000090040008c0000000106602039000000000726016f0000005f04700039000000000824016f000000400500043d0000000004580019000000000084004b00000000080000390000000108004039000013960040009c000000bd0000213d0000000100800190000000bd0000c13d000000400040043f00000001046000390000000004450436000000200770003900000000082701700000001f0770018f00001d290000613d000000000884001900000000090000310000000209900367000000000a040019000000009b09043c000000000aba043600000000008a004b00001d250000c13d000000000007004b000000000665001900000021066000390000000909000029000000090090008c0000000a7990011a0000000307700210000000010660008a00000000080604330000141408800197000014150770021f0000141607700197000000000787019f000000000076043500001d2d0000213d0000000006010433000000000926016f0000001f0860018f000000400100043d0000002007100039000000000073004b00001d860000813d000000000009004b00001d4b0000613d000000000b830019000000000a870019000000200aa0008a000000200bb0008a000000000c9a0019000000000d9b0019000000000d0d04330000000000dc0435000000200990008c00001d450000c13d000000000008004b00001d9c0000613d000000000a07001900001d920000013d0000000005420019000000000004004b00001d580000613d000000a006000039000000000702001900000000680604340000000007870436000000000057004b00001d540000c13d000000000003004b00001d650000613d000000a0044000390000000303300210000000000605043300000000063601cf000000000636022f00000000040404330000010003300089000000000434022f00000000033401cf000000000363019f00000000003504350000000002210019000000000002043500000000020004140000000903000029000000040030008c00001d810000613d0000001f011000390000145401100197000000a4011000390000138e0010009c0000138e01008041000000600110021000000008030000290000138e0030009c0000138e030080410000004003300210000000000131019f0000138e0020009c0000138e02008041000000c002200210000000000121019f00000009020000294e324e280000040f00000060031002700001138e0030019d0003000000010355000000010020019000001eb90000613d000000080100002900000000020000194e3223030000040f000000000100001900004e330001042e000000000a970019000000000009004b00001d8f0000613d000000000b030019000000000c07001900000000bd0b0434000000000cdc04360000000000ac004b00001d8b0000c13d000000000008004b00001d9c0000613d0000000003930019000000030880021000000000090a043300000000098901cf000000000989022f00000000030304330000010008800089000000000383022f00000000038301cf000000000393019f00000000003a0435000000000367001900000000000304350000000005050433000000000725016f0000001f0650018f000000000034004b00001db30000813d000000000007004b00001daf0000613d00000000096400190000000008630019000000200880008a000000200990008a000000000a780019000000000b790019000000000b0b04330000000000ba0435000000200770008c00001da90000c13d000000000006004b00001dc90000613d000000000803001900001dbf0000013d0000000008730019000000000007004b00001dbc0000613d0000000009040019000000000a030019000000009b090434000000000aba043600000000008a004b00001db80000c13d000000000006004b00001dc90000613d00000000047400190000000306600210000000000708043300000000076701cf000000000767022f00000000040404330000010006600089000000000464022f00000000046401cf000000000474019f0000000000480435000000000353001900001f160000013d00000008030000290000138e0030009c0000138e0300804100000040033002100000138e0010009c0000138e01008041000000c001100210000000000131019f00001406011001c74e324e2d0000040f00000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000080570002900001de40000613d000000000801034f0000000809000029000000008a08043c0000000009a90436000000000059004b00001de00000c13d000000000006004b00001df10000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000001ec60000613d0000001f01400039000000600110018f0000000801100029000300000001001d000013960010009c000000bd0000213d0000000301000029000000400010043f000000200030008c000000690000413d00000008010000290000000001010433000000000001004b0000000002000039000000010200c039000000000021004b000000690000c13d000000000001004b00001f280000c13d000000800100043d000013960010009c000000bd0000213d00000005021002100000003f0320003900001417033001970000000303300029000013960030009c000000bd0000213d000000400030043f00000003030000290000000001130436000100000001001d0000001f0120018f000000000002004b00001e200000613d0000000104000029000000000224001900000000030000310000000203300367000000003503043c0000000004540436000000000024004b00001e1c0000c13d000000000001004b000000800200043d000000000002004b00001fc60000c13d000000400100043d000900000001001d0000000302000029000015980000013d0000000008730019000000000007004b00001e310000613d0000000009050019000000000a030019000000009b090434000000000aba043600000000008a004b00001e2d0000c13d000000000006004b00001e3e0000613d00000000057500190000000306600210000000000708043300000000076701cf000000000767022f00000000050504330000010006600089000000000565022f00000000056501cf000000000575019f00000000005804350000000004340019000000000004043500000009040000290000140e0040009c00001e610000413d000000400600003900000009040000290000140e0440012a00001e6a0000013d0000000007650019000000000006004b00001e500000613d00000000080400190000000009050019000000008a0804340000000009a90436000000000079004b00001e4c0000c13d000000000002004b00001e5d0000613d00000000046400190000000302200210000000000607043300000000062601cf000000000626022f00000000040404330000010002200089000000000424022f00000000022401cf000000000262019f000000000027043500000000025300190000000000020435000000400300043d00001f260000013d0000000904000029000014100040009c0000140f0440212a00000000060000390000002006002039000014110040009c00000010066081bf0000141204408197000014110440812a000014130040009c00000008066080390000139604408197000014130440812a000027100040008c00000004066080390000138e04408197000027100440811a000000640040008c00000002066080390000ffff0440818f000000640440811a000000090040008c0000000106602039000000000726016f0000005f04700039000000000824016f000000400500043d0000000004580019000000000084004b00000000080000390000000108004039000013960040009c000000bd0000213d0000000100800190000000bd0000c13d000000400040043f00000001046000390000000004450436000000200770003900000000082701700000001f0770018f00001e930000613d000000000884001900000000090000310000000209900367000000000a040019000000009b09043c000000000aba043600000000008a004b00001e8f0000c13d000000000007004b000000000665001900000021066000390000000909000029000000090090008c0000000a7990011a0000000307700210000000010660008a00000000080604330000141408800197000014150770021f0000141607700197000000000787019f000000000076043500001e970000213d0000000006010433000000000926016f0000001f0860018f000000400100043d0000002007100039000000000073004b00001ed20000813d000000000009004b00001eb50000613d000000000b830019000000000a870019000000200aa0008a000000200bb0008a000000000c9a0019000000000d9b0019000000000d0d04330000000000dc0435000000200990008c00001eaf0000c13d000000000008004b00001ee80000613d000000000a07001900001ede0000013d0000138e033001970000001f0530018f0000139006300198000000400200043d000000000462001900001ce40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001ec10000c13d00001ce40000013d0000001f0530018f0000139006300198000000400200043d000000000462001900001ce40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001ecd0000c13d00001ce40000013d000000000a970019000000000009004b00001edb0000613d000000000b030019000000000c07001900000000bd0b0434000000000cdc04360000000000ac004b00001ed70000c13d000000000008004b00001ee80000613d0000000003930019000000030880021000000000090a043300000000098901cf000000000989022f00000000030304330000010008800089000000000383022f00000000038301cf000000000393019f00000000003a0435000000000367001900000000000304350000000005050433000000000725016f0000001f0650018f000000000034004b00001eff0000813d000000000007004b00001efb0000613d00000000096400190000000008630019000000200880008a000000200990008a000000000a780019000000000b790019000000000b0b04330000000000ba0435000000200770008c00001ef50000c13d000000000006004b00001f150000613d000000000803001900001f0b0000013d0000000008730019000000000007004b00001f080000613d0000000009040019000000000a030019000000009b090434000000000aba043600000000008a004b00001f040000c13d000000000006004b00001f150000613d00000000047400190000000306600210000000000708043300000000076701cf000000000767022f00000000040404330000010006600089000000000464022f00000000046401cf000000000474019f0000000000480435000000000335001900000000000304350000000003130049000000200430008a00000000004104350000001f03300039000000000223016f0000000004120019000000000024004b00000000020000390000000102004039000013960040009c000000bd0000213d0000000100200190000000bd0000c13d0000000003040019000000400040043f000000200200003900001be10000013d000800030000002d000000080300002900000044013000390000141c0200004100000000002104350000002401300039000000100200003900000000002104350000141d0100004100000000001304350000000401300039000000200200003900000000002104350000138e0030009c0000138e030080410000004001300210000013fc011001c700004e34000104300000138e033001970000001f0530018f0000139006300198000000400200043d000000000462001900001ce40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001f420000c13d00001ce40000013d00000005030000290000138e0030009c0000138e0300804100000040033002100000138e0010009c0000138e01008041000000c001100210000000000131019f000013fd011001c74e324e2d0000040f00000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f0000002007400190000000050570002900001f600000613d000000000801034f0000000509000029000000008a08043c0000000009a90436000000000059004b00001f5c0000c13d000000000006004b00001f6d0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000001fba0000613d0000001f01400039000000600110018f0000000501100029000013960010009c000000bd0000213d000000400010043f000000200030008c000000690000413d00000005010000290000000001010433000700000001001d000013910010009c000000690000213d0000000801000039000000000101041a000600000001001d000014210100004100000000001004430000000701000029000000040010044300000000010004140000138e0010009c0000138e01008041000000c00110021000001422011001c700008002020000394e324e2d0000040f0000000100200190000022450000613d000000000101043b000000000001004b000000690000613d000000400500043d000000640150003900000080020000390000000000210435000000440150003900001409020000410000000000210435000014390100004100000000001504350000000401500039000400000001001d0000000602000029000000000021043500000024015000390000000000010435000000090100002900000000010104330000008402500039000000000012043500001454041001970000001f0310018f000500000005001d000000a402500039000000080020006b00001ffc0000813d000000000004004b00001fb60000613d00000008063000290000000005320019000000200550008a000000200660008a0000000007450019000000000846001900000000080804330000000000870435000000200440008c00001fb00000c13d000000000003004b000020130000613d0000000005020019000020080000013d0000001f0530018f0000139006300198000000400200043d000000000462001900001ce40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00001fc10000c13d00001ce40000013d00000007010000290000000001010433000800000000001d00001fce0000013d0000000803000029000800010030003d000000080020006b00001e240000813d0000000803000029000000000031004b00001ff60000a13d00000005033002100000000204300029000600000004001d0000000004040433000000000004004b00001fca0000613d000400010030002d000500a00030003d00000000040000190000000803000029000900000004001d000000800100043d000000000031004b00001ff60000a13d0000000501000029000000000101043300001391011001974e3233230000040f000000080300002900000003020000290000000002020433000000000032004b00001ff60000a13d0000000402000029000000000012043500000007010000290000000001010433000000000031004b00001ff60000a13d0000000904000029000000010440003900000006020000290000000002020433000000000024004b00001fdb0000413d000000800200043d00001fca0000013d0000143d01000041000000000010043f0000003201000039000000040010043f000013fd0100004100004e34000104300000000005420019000000000004004b000020050000613d0000000806000029000000000702001900000000680604340000000007870436000000000057004b000020010000c13d000000000003004b000020130000613d000800080040002d0000000303300210000000000405043300000000043401cf000000000434022f000000080600002900000000060604330000010003300089000000000636022f00000000033601cf000000000343019f00000000003504350000000002210019000000000002043500000000020004140000000703000029000000040030008c0000202f0000613d0000001f011000390000145401100197000000a4011000390000138e0010009c0000138e01008041000000600110021000000005030000290000138e0030009c0000138e030080410000004003300210000000000131019f0000138e0020009c0000138e02008041000000c002200210000000000121019f00000007020000294e324e280000040f00000060031002700001138e0030019d00030000000103550000000100200190000020450000613d0000000501000029000013960010009c000000bd0000213d0000000503000029000000400030043f0000000701000039000000000201041a000013f7010000410000000000130435000013f80100004100000004030000290000000000130435000000000100041400000008022002700000139102200197000000040020008c000020520000c13d0000000103000031000000200030008c000000200400003900000000040340190000207c0000013d0000138e033001970000001f0530018f0000139006300198000000400200043d000000000462001900001ce40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000204d0000c13d00001ce40000013d00000005030000290000138e0030009c0000138e0300804100000040033002100000138e0010009c0000138e01008041000000c001100210000000000131019f000013fd011001c74e324e2d0000040f00000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000005057000290000206b0000613d000000000801034f0000000509000029000000008a08043c0000000009a90436000000000059004b000020670000c13d000000000006004b000020780000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000020de0000613d0000001f01400039000000600110018f0000000501100029000013960010009c000000bd0000213d000000400010043f000000200030008c000000690000413d00000005010000290000000001010433000900000001001d000013910010009c000000690000213d0000000801000039000000000101041a000800000001001d000014210100004100000000001004430000000901000029000000040010044300000000010004140000138e0010009c0000138e01008041000000c00110021000001422011001c700008002020000394e324e2d0000040f0000000100200190000022450000613d000000000101043b000000000001004b000000690000613d000000400300043d00000064013000390000139e02000041000000000021043500000044013000390000143a0200004100000000002104350000143b0100004100000000001304350000000401300039000600000001001d00000008020000290000000000210435000700000003001d0000002401300039000000000001043500000000010004140000000902000029000000040020008c000020c00000613d00000007020000290000138e0020009c0000138e0200804100000040022002100000138e0010009c0000138e01008041000000c001100210000000000121019f00001425011001c700000009020000294e324e280000040f00000060031002700001138e0030019d00030000000103550000000100200190000020ea0000613d0000000701000029000013960010009c000000bd0000213d0000000704000029000000400040043f0000000902000039000000000102041a000014530110019700000001011001bf000000000012041b0000000b01000039000000000101041a000900000001001d0000000701000039000000000201041a000013f7010000410000000000140435000013f80100004100000006030000290000000000130435000000000100041400000008022002700000139102200197000000040020008c000020f70000c13d0000000103000031000000200030008c00000020040000390000000004034019000021210000013d0000001f0530018f0000139006300198000000400200043d000000000462001900001ce40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000020e50000c13d00001ce40000013d0000138e033001970000001f0530018f0000139006300198000000400200043d000000000462001900001ce40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000020f20000c13d00001ce40000013d00000007030000290000138e0030009c0000138e0300804100000040033002100000138e0010009c0000138e01008041000000c001100210000000000131019f000013fd011001c74e324e2d0000040f00000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000705700029000021100000613d000000000801034f0000000709000029000000008a08043c0000000009a90436000000000059004b0000210c0000c13d000000000006004b0000211d0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000021850000613d0000001f01400039000000600110018f0000000701100029000013960010009c000000bd0000213d000000400010043f000000200030008c000000690000413d00000007010000290000000001010433000800000001001d000013910010009c000000690000213d0000000801000039000000000101041a000600000001001d000014210100004100000000001004430000000801000029000000040010044300000000010004140000138e0010009c0000138e01008041000000c00110021000001422011001c700008002020000394e324e2d0000040f0000000100200190000022450000613d000000000101043b000000000001004b000000690000613d000000400300043d00000064013000390000000902000029000000000021043500000044013000390000143c0200004100000000002104350000143b010000410000000001130436000700000001001d000000040130003900000006020000290000000000210435000900000003001d0000002401300039000000000001043500000000010004140000000802000029000000040020008c000021650000613d00000009020000290000138e0020009c0000138e0200804100000040022002100000138e0010009c0000138e01008041000000c001100210000000000121019f00001425011001c700000008020000294e324e280000040f00000060031002700001138e0030019d00030000000103550000000100200190000021910000613d0000000901000029000013960010009c000000bd0000213d0000000901000029000000400010043f0000000c01000039000000000501041a000000010350019000000001045002700000007f0240018f0000000004026019000800000004001d0000001f0040008c00000000040000390000000104002039000600000005001d000000000445013f00000001004001900000061f0000c13d000000090400002900000008050000290000000000540435000000000003004b0000219e0000c13d000001000100008a000000060110017f00000007030000290000000000130435000000000002004b00000020020000390000000002006039000021b50000013d0000001f0530018f0000139006300198000000400200043d000000000462001900001ce40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000218c0000c13d00001ce40000013d0000138e033001970000001f0530018f0000139006300198000000400200043d000000000462001900001ce40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000021990000c13d00001ce40000013d000000000010043f00000000010004140000138e0010009c0000138e01008041000000c00110021000001399011001c700008010020000394e324e2d0000040f0000000100200190000000690000613d0000000602000029000000020020008c0000000002000019000021b50000413d000000000101043b000000000200001900000020022000390000000903200029000000000401041a00000000004304350000000101100039000000080020006c000021ae0000413d0000003f0120003900001454011001970000000902100029000000000012004b00000000010000390000000101004039000800000002001d000013960020009c000000bd0000213d0000000100100190000000bd0000c13d0000000803000029000000400030043f0000000701000039000000000201041a000013f70100004100000000001304350000000401300039000013f8030000410000000000310435000000000100041400000008022002700000139102200197000000040020008c000021d30000c13d0000000103000031000000200030008c00000020040000390000000004034019000021fd0000013d00000008030000290000138e0030009c0000138e0300804100000040033002100000138e0010009c0000138e01008041000000c001100210000000000131019f000013fd011001c74e324e2d0000040f00000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f00000020074001900000000805700029000021ec0000613d000000000801034f0000000809000029000000008a08043c0000000009a90436000000000059004b000021e80000c13d000000000006004b000021f90000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000022460000613d0000001f01400039000000600110018f0000000801100029000013960010009c000000bd0000213d000000400010043f000000200030008c000000690000413d00000008010000290000000001010433000800000001001d000013910010009c000000690000213d0000000801000039000000000101041a000600000001001d000014210100004100000000001004430000000801000029000000040010044300000000010004140000138e0010009c0000138e01008041000000c00110021000001422011001c700008002020000394e324e2d0000040f0000000100200190000022450000613d000000000101043b000000000001004b000000690000613d000000400500043d00000064015000390000008002000039000000000021043500000044015000390000140d0200004100000000002104350000143901000041000000000015043500000004015000390000000602000029000000000021043500000024015000390000000000010435000000840250003900000009010000290000000001010433000000000012043500001454041001970000001f0310018f000900000005001d000000a402500039000000070020006b000022520000813d000000000004004b000022410000613d00000007063000290000000005320019000000200550008a000000200660008a0000000007450019000000000846001900000000080804330000000000870435000000200440008c0000223b0000c13d000000000003004b000022690000613d00000000050200190000225e0000013d000000000001042f0000001f0530018f0000139006300198000000400200043d000000000462001900001ce40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000224d0000c13d00001ce40000013d0000000005420019000000000004004b0000225b0000613d0000000706000029000000000702001900000000680604340000000007870436000000000057004b000022570000c13d000000000003004b000022690000613d000700070040002d0000000303300210000000000405043300000000043401cf000000000434022f000000070600002900000000060604330000010003300089000000000636022f00000000033601cf000000000343019f00000000003504350000000002210019000000000002043500000000020004140000000803000029000000040030008c00000f7e0000613d0000001f011000390000145401100197000000a4011000390000138e0010009c0000138e01008041000000600110021000000009030000290000138e0030009c0000138e030080410000004003300210000000000131019f0000138e0020009c0000138e02008041000000c002200210000000000121019f00000008020000294e324e280000040f00000060031002700001138e0030019d0003000000010355000000010020019000000f7e0000c13d0000138e033001970000001f0530018f0000139006300198000000400200043d000000000462001900001ce40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000228d0000c13d00001ce40000013d0000000043010434000000000132043600001454063001970000001f0530018f000000000014004b000022a80000813d000000000006004b000022a40000613d00000000085400190000000007510019000000200770008a000000200880008a0000000009670019000000000a680019000000000a0a04330000000000a90435000000200660008c0000229e0000c13d000000000005004b000022be0000613d0000000007010019000022b40000013d0000000007610019000000000006004b000022b10000613d00000000080400190000000009010019000000008a0804340000000009a90436000000000079004b000022ad0000c13d000000000005004b000022be0000613d00000000046400190000000305500210000000000607043300000000065601cf000000000656022f00000000040404330000010005500089000000000454022f00000000045401cf000000000464019f0000000000470435000000000431001900000000000404350000001f0330003900001454023001970000000001210019000000000001042d0000140b0010009c000022d40000213d000000630010008c000022d40000a13d00000002030003670000000401300370000000000101043b000013910010009c000022d40000213d0000002402300370000000000202043b000013910020009c000022d40000213d0000004403300370000000000303043b000000000001042d000000000100001900004e340001043000000020030000390000000004310436000000000302043300000000003404350000004001100039000000000003004b000022e40000613d00000000040000190000002002200039000000000502043300000000015104360000000104400039000000000034004b000022de0000413d000000000001042d00030000000000020000000001000416000000000001004b000023010000c13d00000000010000310000140b0010009c000023010000213d000000030010008c000023010000a13d000000400100043d000100000001001d0000000001000412000300000001001d000200000000003d000080050100003900000044030000390000000004000415000000030440008a000000050440021000001456020000414e324e0a0000040f000000010200002900000000001204350000138e0020009c0000138e020080410000004001200210000013f5011001c700004e330001042e000000000100001900004e34000104300000001f0220003900001454022001970000000001120019000000000021004b00000000020000390000000102004039000013960010009c0000230f0000213d00000001002001900000230f0000c13d000000400010043f000000000001042d0000143d01000041000000000010043f0000004101000039000000040010043f000013fd0100004100004e3400010430000014570020009c000023450000813d00000000040100190000001f0120003900001454011001970000003f011000390000145405100197000000400100043d0000000005510019000000000015004b00000000070000390000000107004039000013960050009c000023450000213d0000000100700190000023450000c13d000000400050043f00000000052104360000000007420019000000000037004b0000234b0000213d00001454062001980000001f0720018f00000002044003670000000003650019000023350000613d000000000804034f0000000009050019000000008a08043c0000000009a90436000000000039004b000023310000c13d000000000007004b000023420000613d000000000464034f0000000306700210000000000703043300000000076701cf000000000767022f000000000404043b0000010006600089000000000464022f00000000046401cf000000000474019f000000000043043500000000022500190000000000020435000000000001042d0000143d01000041000000000010043f0000004101000039000000040010043f000013fd0100004100004e3400010430000000000100001900004e340001043000010000000000020000000701000039000000000201041a000000400c00043d000013f70100004100000000001c04350000000401c00039000013f8030000410000000000310435000000000100041400000008022002700000139102200197000000040020008c000023600000c13d0000000103000031000000200030008c000000200400003900000000040340190000238c0000013d0000138e00c0009c0000138e0300004100000000030c401900000040033002100000138e0010009c0000138e01008041000000c001100210000000000131019f000013fd011001c700010000000c001d4e324e2d0000040f000000010c00002900000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c00190000237b0000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b000023770000c13d000000000006004b000023880000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000023e80000613d0000001f01400039000000600110018f000000000bc1001900000000001b004b000000000200003900000001020040390000139600b0009c000023e20000213d0000000100200190000023e20000c13d0000004000b0043f0000001f0030008c000023e00000a13d00000000020c0433000013910020009c000023e00000213d0000000804000039000000000404041a0000004405b0003900001458060000410000000000650435000013fe0500004100000000005b04350000000405b0003900000000004504350000002404b0003900000000000404350000000004000414000000040020008c000023d80000613d0000138e00b0009c0000138e0100004100000000010b401900000040011002100000138e0040009c0000138e04008041000000c003400210000000000113019f000013fc011001c700010000000b001d4e324e2d0000040f000000010b00002900000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000023c50000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000023c10000c13d000000000006004b000023d20000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000024060000613d0000001f01400039000000600110018f0000000001b10019000013960010009c000023e20000213d000000400010043f000000200030008c000023e00000413d00000000010b0433000000000001042d000000000100001900004e34000104300000143d01000041000000000010043f0000004101000039000000040010043f000013fd0100004100004e34000104300000001f0530018f0000139006300198000000400200043d0000000004620019000023f30000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000023ef0000c13d000000000005004b000024000000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f000000000014043500000060013002100000138e0020009c0000138e020080410000004002200210000000000112019f00004e34000104300000001f0530018f0000139006300198000000400200043d0000000004620019000024110000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000240d0000c13d000000000005004b0000241e0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f000000000014043500000060013002100000138e0020009c0000138e020080410000004002200210000000000121019f00004e340001043000010000000000020000000701000039000000000201041a000000400c00043d000013f70100004100000000001c04350000000401c00039000013f8030000410000000000310435000000000100041400000008022002700000139102200197000000040020008c000024370000c13d0000000103000031000000200030008c00000020040000390000000004034019000024630000013d0000138e00c0009c0000138e0300004100000000030c401900000040033002100000138e0010009c0000138e01008041000000c001100210000000000131019f000013fd011001c700010000000c001d4e324e2d0000040f000000010c00002900000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c0019000024520000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b0000244e0000c13d000000000006004b0000245f0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000024bf0000613d0000001f01400039000000600110018f000000000bc1001900000000001b004b000000000200003900000001020040390000139600b0009c000024b90000213d0000000100200190000024b90000c13d0000004000b0043f0000001f0030008c000024b70000a13d00000000020c0433000013910020009c000024b70000213d0000000804000039000000000404041a0000004405b0003900001459060000410000000000650435000013fe0500004100000000005b04350000000405b0003900000000004504350000002404b0003900000000000404350000000004000414000000040020008c000024af0000613d0000138e00b0009c0000138e0100004100000000010b401900000040011002100000138e0040009c0000138e04008041000000c003400210000000000113019f000013fc011001c700010000000b001d4e324e2d0000040f000000010b00002900000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b00190000249c0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000024980000c13d000000000006004b000024a90000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000024dd0000613d0000001f01400039000000600110018f0000000001b10019000013960010009c000024b90000213d000000400010043f000000200030008c000024b70000413d00000000010b0433000000000001042d000000000100001900004e34000104300000143d01000041000000000010043f0000004101000039000000040010043f000013fd0100004100004e34000104300000001f0530018f0000139006300198000000400200043d0000000004620019000024ca0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000024c60000c13d000000000005004b000024d70000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f000000000014043500000060013002100000138e0020009c0000138e020080410000004002200210000000000112019f00004e34000104300000001f0530018f0000139006300198000000400200043d0000000004620019000024e80000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000024e40000c13d000000000005004b000024f50000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f000000000014043500000060013002100000138e0020009c0000138e020080410000004002200210000000000121019f00004e340001043000010000000000020000000701000039000000000201041a000000400c00043d000013f70100004100000000001c04350000000401c00039000013f8030000410000000000310435000000000100041400000008022002700000139102200197000000040020008c0000250e0000c13d0000000103000031000000200030008c000000200400003900000000040340190000253a0000013d0000138e00c0009c0000138e0300004100000000030c401900000040033002100000138e0010009c0000138e01008041000000c001100210000000000131019f000013fd011001c700010000000c001d4e324e2d0000040f000000010c00002900000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c0019000025290000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b000025250000c13d000000000006004b000025360000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000025960000613d0000001f01400039000000600110018f000000000bc1001900000000001b004b000000000200003900000001020040390000139600b0009c000025900000213d0000000100200190000025900000c13d0000004000b0043f0000001f0030008c0000258e0000a13d00000000020c0433000013910020009c0000258e0000213d0000000804000039000000000404041a0000004405b000390000143c060000410000000000650435000013fe0500004100000000005b04350000000405b0003900000000004504350000002404b0003900000000000404350000000004000414000000040020008c000025860000613d0000138e00b0009c0000138e0100004100000000010b401900000040011002100000138e0040009c0000138e04008041000000c003400210000000000113019f000013fc011001c700010000000b001d4e324e2d0000040f000000010b00002900000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000025730000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b0000256f0000c13d000000000006004b000025800000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000025b40000613d0000001f01400039000000600110018f0000000001b10019000013960010009c000025900000213d000000400010043f000000200030008c0000258e0000413d00000000010b0433000000000001042d000000000100001900004e34000104300000143d01000041000000000010043f0000004101000039000000040010043f000013fd0100004100004e34000104300000001f0530018f0000139006300198000000400200043d0000000004620019000025a10000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000259d0000c13d000000000005004b000025ae0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f000000000014043500000060013002100000138e0020009c0000138e020080410000004002200210000000000112019f00004e34000104300000001f0530018f0000139006300198000000400200043d0000000004620019000025bf0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000025bb0000c13d000000000005004b000025cc0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f000000000014043500000060013002100000138e0020009c0000138e020080410000004002200210000000000121019f00004e34000104300008000000000002000800000003001d000713910020019c00002d510000613d000100000001001d0000000901000039000000000101041a00000008011002700000139102100198000026180000613d00001421010000410000000000100443000600000002001d000000040020044300000000010004140000138e0010009c0000138e01008041000000c00110021000001422011001c700008002020000394e324e2d0000040f000000010020019000002d4a0000613d000000000101043b000000000001004b00002d420000613d00000000010004110000139101100197000000400b00043d0000006402b0003900000000001204350000004401b00039000000080200002900000000002104350000002401b00039000000070200002900000000002104350000145a0100004100000000001b0435000000000100041000001391011001970000000404b00039000000000014043500000000010004140000000602000029000000040020008c000026140000613d0000138e00b0009c0000138e0300004100000000030b401900000040033002100000138e0010009c0000138e01008041000000c001100210000000000131019f00001425011001c700060000000b001d000500000004001d4e324e280000040f0000000504000029000000060b00002900000060031002700001138e0030019d0003000000010355000000010020019000002e1e0000613d0000139600b0009c00002d440000213d0000004000b0043f0000261a0000013d000000400b00043d0000000404b000390000000701000039000000000201041a000013f70100004100000000001b0435000013f8010000410000000000140435000000000100041400000008022002700000139102200197000000040020008c0000262a0000c13d0000000103000031000000200030008c00000020040000390000000004034019000026560000013d0000138e00b0009c0000138e0300004100000000030b401900000040033002100000138e0010009c0000138e01008041000000c001100210000000000131019f000013fd011001c700060000000b001d4e324e2d0000040f000000060b00002900000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000026450000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000026410000c13d000000000006004b000026520000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000002d730000613d0000001f01400039000000600110018f000000000cb1001900000000001c004b000000000200003900000001020040390000139600c0009c00002d440000213d000000010020019000002d440000c13d0000004000c0043f0000001f0030008c00002d420000a13d00000000020b0433000013910020009c00002d420000213d0000000804000039000000000404041a0000004405c00039000013fb0600004100000000006504350000002405c0003900000008060000290000000000650435000013fa0500004100000000005c04350000000405c0003900000000004504350000000004000414000000040020008c000026a30000613d0000138e00c0009c0000138e0100004100000000010c401900000040011002100000138e0040009c0000138e04008041000000c003400210000000000113019f000013fc011001c700060000000c001d4e324e2d0000040f000000060c00002900000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c0019000026900000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b0000268c0000c13d000000000006004b0000269d0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000002d7f0000613d0000001f01400039000000600110018f0000000001c10019000013960010009c00002d440000213d000000400010043f000000200030008c00002d420000413d00000000010c0433000500000001001d000013910010009c00002d420000213d0000140001000041000000000010044300000000010004140000138e0010009c0000138e01008041000000c00110021000001401011001c70000800b020000394e324e2d0000040f000000010020019000002d4a0000613d000000000201043b000014020020009c00002d560000813d000600000002001d0000000701000039000000000201041a000000400b00043d000013f70100004100000000001b04350000000401b00039000013f8030000410000000000310435000000000100041400000008022002700000139102200197000000040020008c000026ce0000c13d0000000103000031000000200030008c00000020040000390000000004034019000026fa0000013d0000138e00b0009c0000138e0300004100000000030b401900000040033002100000138e0010009c0000138e01008041000000c001100210000000000131019f000013fd011001c700040000000b001d4e324e2d0000040f000000040b00002900000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000026e90000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000026e50000c13d000000000006004b000026f60000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000002d8b0000613d0000001f01400039000000600210018f0000000001b20019000000000021004b00000000020000390000000102004039000013960010009c00002d440000213d000000010020019000002d440000c13d000000400010043f000000200030008c00002d420000413d00000000020b0433000013910020009c00002d420000213d0000000801000039000000000101041a000300000001001d00001421010000410000000000100443000400000002001d000000040020044300000000010004140000138e0010009c0000138e01008041000000c00110021000001422011001c700008002020000394e324e2d0000040f000000010020019000002d4a0000613d000000000101043b000000000001004b000000040300002900002d420000613d000000400b00043d0000006401b00039000000060200002900000000002104350000004401b00039000013ff0200004100000000002104350000002401b00039000000080200002900000000002104350000143b0100004100000000001b04350000000404b00039000000030100002900000000001404350000000001000414000000040030008c00020000000b001d000027440000613d0000138e00b0009c0000138e0200004100000000020b401900000040022002100000138e0010009c0000138e01008041000000c001100210000000000121019f00001425011001c70000000002030019000600000004001d4e324e280000040f0000000604000029000000020b00002900000060031002700001138e0030019d0003000000010355000000010020019000002d970000613d0000139600b0009c00002d440000213d0000004000b0043f0000000701000039000000000201041a000013f70100004100000000001b0435000013f8010000410000000000140435000000000100041400000008022002700000139102200197000000040020008c000027570000c13d0000000103000031000000200030008c00000020040000390000000004034019000027820000013d0000138e00b0009c0000138e0300004100000000030b401900000040033002100000138e0010009c0000138e01008041000000c001100210000000000131019f000013fd011001c74e324e2d0000040f000000020b00002900000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000027710000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b0000276d0000c13d000000000006004b0000277e0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000002da40000613d0000001f01400039000000600110018f000000000cb100190000139600c0009c00002d440000213d0000004000c0043f000000200030008c00002d420000413d00000000020b0433000013910020009c00002d420000213d0000000804000039000000000404041a0000004405c00039000014230600004100000000006504350000142d0500004100000000005c04350000000405c0003900000000004504350000002404c0003900000000000404350000000004000414000000040020008c000027c90000613d0000138e00c0009c0000138e0100004100000000010c401900000040011002100000138e0040009c0000138e04008041000000c003400210000000000113019f000013fc011001c700060000000c001d4e324e2d0000040f000000060c00002900000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c0019000027b60000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b000027b20000c13d000000000006004b000027c30000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000002db00000613d0000001f01400039000000600110018f000000000bc100190000139600b0009c00002d440000213d0000004000b0043f000000200030008c00002d420000413d00000000020c0433000000000002004b0000000001000039000000010100c039000000000012004b00002d420000c13d0000000401b00039000000050000006b0000002004000039000027db0000613d000000000002004b00002d5d0000c13d0000000702000039000000000202041a000013f70500004100000000005b0435000013f8050000410000000000510435000000000100041400000008022002700000139102200197000000040020008c000028120000613d0000138e00b0009c0000138e0300004100000000030b401900000040033002100000138e0010009c0000138e01008041000000c001100210000000000131019f000013fd011001c700060000000b001d4e324e2d0000040f000000060b00002900000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000028010000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000027fd0000c13d000000000006004b0000280e0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000002dbc0000613d0000001f01400039000000600110018f000000000cb100190000139600c0009c00002d440000213d0000004000c0043f000000200030008c00002d420000413d00000000020b0433000013910020009c00002d420000213d0000000804000039000000000404041a0000004405c00039000013fb0600004100000000006504350000002405c0003900000008060000290000000000650435000013fa0500004100000000005c04350000000405c0003900000000004504350000000004000414000000040020008c0000285a0000613d0000138e00c0009c0000138e0100004100000000010c401900000040011002100000138e0040009c0000138e04008041000000c003400210000000000113019f000013fc011001c700060000000c001d4e324e2d0000040f000000060c00002900000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c0019000028470000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b000028430000c13d000000000006004b000028540000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000002dc80000613d0000001f01400039000000600110018f0000000001c10019000013960010009c00002d440000213d000000400010043f000000200030008c00002d420000413d00000000010c0433000600000001001d000013910010009c00002d420000213d0000000001000411000000000001004b00000006020000290000289d0000613d000000000012004b0000289d0000613d000000000020043f0000000501000039000000200010043f00000000010004140000138e0010009c0000138e01008041000000c0011002100000142e011001c700008010020000394e324e2d0000040f000000010020019000002d420000613d000000000101043b00000000020004110000139102200197000000000020043f000000200010043f00000000010004140000138e0010009c0000138e01008041000000c0011002100000142e011001c700008010020000394e324e2d0000040f000000010020019000002d420000613d000000000101043b000000000101041a000000ff0010019000000006020000290000289d0000c13d0000000801000029000000000010043f0000000401000039000000200010043f00000000010004140000138e0010009c0000138e01008041000000c0011002100000142e011001c700008010020000394e324e2d0000040f000000010020019000002d420000613d000000000101043b000000000101041a00001391011001970000000002000411000000000021004b000000060200002900002e6e0000c13d000000000002004b0000000302000039000028c30000613d0000000801000029000000000010043f0000000401000039000000200010043f00000000010004140000138e0010009c0000138e01008041000000c0011002100000142e011001c700008010020000394e324e2d0000040f000000010020019000002d420000613d000000000101043b000000000201041a0000143e02200197000000000021041b0000000601000029000000000010043f0000000301000039000000200010043f00000000010004140000138e0010009c0000138e01008041000000c0011002100000142e011001c700008010020000394e324e2d0000040f000000010020019000002d420000613d000000000101043b000000000201041a000000010220008a000000000021041b00000003020000390000000701000029000000000010043f000000200020043f00000000010004140000138e0010009c0000138e01008041000000c0011002100000142e011001c700008010020000394e324e2d0000040f000000010020019000002d420000613d000000000101043b000000000201041a0000000102200039000000000021041b0000000801000029000000000010043f0000000201000039000000200010043f00000000010004140000138e0010009c0000138e01008041000000c0011002100000142e011001c700008010020000394e324e2d0000040f000000010020019000002d420000613d000000000101043b000000000201041a0000143e022001970000000706000029000000000262019f000000000021041b00000000010004140000138e0010009c0000138e01008041000000c00110021000001441011001c70000800d0200003900000004030000390000145d04000041000000060500002900000008070000294e324e280000040f000000010020019000002d420000613d000000400b00043d0000000502000029000000000002004b000029250000613d0000002001000039000400000001001d00000000011b043600000000002104350000139200b0009c00002d440000213d0000004002b00039000000400020043f0000138e0010009c0000138e01008041000000400110021000000000020b04330000138e0020009c0000138e020080410000006002200210000000000112019f00000000020004140000138e0020009c0000138e02008041000000c002200210000000000112019f00001441011001c700008010020000394e324e2d0000040f000000010020019000002d420000613d000000000101043b000500000001001d0000000701000039000000000201041a000000400c00043d000013f70100004100000000001c04350000000401c00039000013f8030000410000000000310435000000000100041400000008022002700000139102200197000000040020008c000029360000c13d0000000103000031000000200030008c00000020040000390000000004034019000029620000013d0000000701000039000000000201041a000013f70100004100000000001b04350000000401b00039000013f8030000410000000000310435000000000100041400000008022002700000139102200197000000040020008c00002a460000c13d0000000103000031000000200030008c0000002004000039000000000403401900002a720000013d0000138e00c0009c0000138e0300004100000000030c401900000040033002100000138e0010009c0000138e01008041000000c001100210000000000131019f000013fd011001c700030000000c001d4e324e2d0000040f000000030c00002900000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c0019000029510000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b0000294d0000c13d000000000006004b0000295e0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000002e3d0000613d0000001f01400039000000600110018f000000000bc1001900000000001b004b000000000200003900000001020040390000139600b0009c00002d440000213d000000010020019000002d440000c13d0000004000b0043f000000200030008c00002d420000413d00000000020c0433000013910020009c00002d420000213d0000000804000039000000000404041a0000004405b000390000145e0600004100000000006504350000002405b0003900000005060000290000000000650435000013fe0500004100000000005b04350000000405b0003900000000004504350000000004000414000000040020008c000029af0000613d0000138e00b0009c0000138e0100004100000000010b401900000040011002100000138e0040009c0000138e04008041000000c003400210000000000113019f000013fc011001c700030000000b001d4e324e2d0000040f000000030b00002900000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b00190000299c0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000029980000c13d000000000006004b000029a90000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000002e490000613d0000001f01400039000000600110018f000000000ab100190000139600a0009c00002d440000213d0000004000a0043f000000200030008c00002d420000413d00000000010b0433000300000001001d000000000001004b00002d4b0000613d0000000701000039000000000201041a000013f70100004100000000001a04350000000401a00039000013f8040000410000000000410435000000000100041400000008022002700000139102200197000000040020008c000029f20000613d0000138e00a0009c0000138e0300004100000000030a401900000040033002100000138e0010009c0000138e01008041000000c001100210000000000131019f000013fd011001c700020000000a001d4e324e2d0000040f000000020a00002900000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0540018f000400000004001d000000200640019000000000046a0019000029e10000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000048004b000029dd0000c13d000000000005004b000029ee0000613d000000000661034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000100000003001f0003000000010355000000010020019000002e550000613d00000004010000290000001f01100039000000600110018f0000000001a10019000013960010009c00002d440000213d000000400010043f000000200030008c00002d420000413d00000000020a0433000013910020009c00002d420000213d0000000801000039000000000101041a000200000001001d00001421010000410000000000100443000400000002001d000000040020044300000000010004140000138e0010009c0000138e01008041000000c00110021000001422011001c700008002020000394e324e2d0000040f000000010020019000002d4a0000613d000000000101043b000000000001004b000000040300002900002d420000613d0000000301000029000000010110008a000000400b00043d0000006402b0003900000000001204350000004401b000390000145e0200004100000000002104350000002401b00039000000050200002900000000002104350000143b0100004100000000001b04350000000404b00039000000020100002900000000001404350000000001000414000000040030008c00002b450000613d0000138e00b0009c0000138e0200004100000000020b401900000040022002100000138e0010009c0000138e01008041000000c001100210000000000121019f00001425011001c7000000000203001900050000000b001d000400000004001d4e324e280000040f0000000404000029000000050b00002900000060031002700001138e0030019d0003000000010355000000010020019000002b450000c13d0000138e033001970000001f0530018f0000139006300198000000400200043d000000000462001900002ea60000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002a410000c13d00002ea60000013d0000138e00b0009c0000138e0300004100000000030b401900000040033002100000138e0010009c0000138e01008041000000c001100210000000000131019f000013fd011001c700050000000b001d4e324e2d0000040f000000050b00002900000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900002a610000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00002a5d0000c13d000000000006004b00002a6e0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000002e760000613d0000001f01400039000000600110018f000000000cb1001900000000001c004b000000000200003900000001020040390000139600c0009c00002d440000213d000000010020019000002d440000c13d0000004000c0043f000000200030008c00002d420000413d00000000020b0433000013910020009c00002d420000213d0000000804000039000000000404041a0000004405c0003900001458060000410000000000650435000013fe0500004100000000005c04350000000405c0003900000000004504350000002404c0003900000000000404350000000004000414000000040020008c00002abe0000613d0000138e00c0009c0000138e0100004100000000010c401900000040011002100000138e0040009c0000138e04008041000000c003400210000000000113019f000013fc011001c700050000000c001d4e324e2d0000040f000000050c00002900000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c001900002aab0000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b00002aa70000c13d000000000006004b00002ab80000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000002e820000613d0000001f01400039000000600110018f000000000bc100190000139600b0009c00002d440000213d0000004000b0043f000000200030008c00002d420000413d00000000010c0433000500010010003e00002d4b0000613d0000000701000039000000000201041a000013f70100004100000000001b04350000000401b00039000013f8040000410000000000410435000000000100041400000008022002700000139102200197000000040020008c00002ad50000c13d000000200400003900002b010000013d0000138e00b0009c0000138e0300004100000000030b401900000040033002100000138e0010009c0000138e01008041000000c001100210000000000131019f000013fd011001c700040000000b001d4e324e2d0000040f000000040b00002900000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900002af00000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00002aec0000c13d000000000006004b00002afd0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000002e8e0000613d0000001f01400039000000600110018f0000000001b10019000013960010009c00002d440000213d000000400010043f000000200030008c00002d420000413d00000000020b0433000013910020009c00002d420000213d0000000801000039000000000101041a000300000001001d00001421010000410000000000100443000400000002001d000000040020044300000000010004140000138e0010009c0000138e01008041000000c00110021000001422011001c700008002020000394e324e2d0000040f000000010020019000002d4a0000613d000000000101043b000000000001004b000000040300002900002d420000613d000000400b00043d0000006401b00039000000050200002900000000002104350000004401b00039000014580200004100000000002104350000143b0100004100000000001b04350000000404b00039000000030100002900000000001404350000002401b0003900000000000104350000000001000414000000040030008c00002b450000613d0000138e00b0009c0000138e0200004100000000020b401900000040022002100000138e0010009c0000138e01008041000000c001100210000000000121019f00001425011001c7000000000203001900050000000b001d000400000004001d4e324e280000040f0000000404000029000000050b00002900000060031002700001138e0030019d0003000000010355000000010020019000002e9a0000613d0000139600b0009c00002d440000213d0000004000b0043f0000000a01000039000000000101041a000013910210019800002b870000613d00001421010000410000000000100443000500000002001d000000040020044300000000010004140000138e0010009c0000138e01008041000000c00110021000001422011001c700008002020000394e324e2d0000040f000000010020019000002d4a0000613d000000000101043b000000000001004b00002d420000613d00000000010004110000139101100197000000400b00043d0000006402b0003900000000001204350000004401b00039000000080200002900000000002104350000002401b00039000000070200002900000000002104350000145a0100004100000000001b0435000000000100041000001391011001970000000404b00039000000000014043500000000010004140000000502000029000000040020008c00002b840000613d0000138e00b0009c0000138e0300004100000000030b401900000040033002100000138e0010009c0000138e01008041000000c001100210000000000131019f00001425011001c700050000000b001d000400000004001d4e324e280000040f0000000404000029000000050b00002900000060031002700001138e0030019d0003000000010355000000010020019000002e610000613d0000139600b0009c00002d440000213d0000004000b0043f0000000701000039000000000201041a000013f70100004100000000001b0435000013f8010000410000000000140435000000000100041400000008022002700000139102200197000000040020008c00002b970000c13d0000000103000031000000200030008c0000002004000039000000000403401900002bc30000013d0000138e00b0009c0000138e0300004100000000030b401900000040033002100000138e0010009c0000138e01008041000000c001100210000000000131019f000013fd011001c700050000000b001d4e324e2d0000040f000000050b00002900000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900002bb20000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00002bae0000c13d000000000006004b00002bbf0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000002dd40000613d0000001f01400039000000600110018f0000000001b10019000013960010009c00002d440000213d000000400010043f000000200030008c00002d420000413d00000000020b0433000013910020009c00002d420000213d0000000801000039000000000101041a000400000001001d00001421010000410000000000100443000500000002001d000000040020044300000000010004140000138e0010009c0000138e01008041000000c00110021000001422011001c700008002020000394e324e2d0000040f000000010020019000002d4a0000613d000000000101043b000000000001004b000000050300002900002d420000613d000000400400043d0000006401400039000000070200002900000000002104350000004401400039000013fb020000410000000000210435000000240140003900000008020000290000000000210435000014380100004100000000021404360000000401400039000000040500002900000000005104350000000001000414000000040030008c00002c080000613d0000138e0040009c000400000002001d0000138e02000041000000000204401900000040022002100000138e0010009c0000138e01008041000000c001100210000000000121019f00001425011001c70000000002030019000500000004001d4e324e280000040f000000050400002900000060031002700001138e0030019d00030000000103550000000100200190000000040200002900002de00000613d000013960040009c00002d440000213d000000400040043f0000002001000039000500000001001d000000000014043500000007010000290000000000120435000013920040009c00002d440000213d0000004001400039000000400010043f0000138e0020009c0000138e02008041000000400120021000000000020404330000138e0020009c0000138e020080410000006002200210000000000112019f00000000020004140000138e0020009c0000138e02008041000000c002200210000000000112019f00001441011001c700008010020000394e324e2d0000040f000000010020019000002d420000613d000000000101043b000700000001001d0000000701000039000000000201041a000000400c00043d000013f70100004100000000001c04350000000401c00039000013f8030000410000000000310435000000000100041400000008022002700000139102200197000000040020008c00002c3a0000c13d0000000103000031000000200030008c0000002004000039000000000403401900002c660000013d0000138e00c0009c0000138e0300004100000000030c401900000040033002100000138e0010009c0000138e01008041000000c001100210000000000131019f000013fd011001c700040000000c001d4e324e2d0000040f000000040c00002900000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c001900002c550000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b00002c510000c13d000000000006004b00002c620000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000002ded0000613d0000001f01400039000000600110018f000000000bc1001900000000001b004b000000000200003900000001020040390000139600b0009c00002d440000213d000000010020019000002d440000c13d0000004000b0043f000000200030008c00002d420000413d00000000020c0433000013910020009c00002d420000213d0000000804000039000000000404041a0000004405b000390000145e0600004100000000006504350000002405b0003900000007060000290000000000650435000013fe0500004100000000005b04350000000405b0003900000000004504350000000004000414000000040020008c00002cb30000613d0000138e00b0009c0000138e0100004100000000010b401900000040011002100000138e0040009c0000138e04008041000000c003400210000000000113019f000013fc011001c700040000000b001d4e324e2d0000040f000000040b00002900000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900002ca00000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00002c9c0000c13d000000000006004b00002cad0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000002df90000613d0000001f01400039000000600110018f000000000ab100190000139600a0009c00002d440000213d0000004000a0043f000000200030008c00002d420000413d00000000010b0433000400010010003e00002d4b0000613d0000000701000039000000000201041a000013f70100004100000000001a04350000000401a00039000013f8040000410000000000410435000000000100041400000008022002700000139102200197000000040020008c00002cf50000613d0000138e00a0009c0000138e0300004100000000030a401900000040033002100000138e0010009c0000138e01008041000000c001100210000000000131019f000013fd011001c700030000000a001d4e324e2d0000040f000000030a00002900000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0540018f000500000004001d000000200640019000000000046a001900002ce40000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000048004b00002ce00000c13d000000000005004b00002cf10000613d000000000661034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000100000003001f0003000000010355000000010020019000002e050000613d00000005010000290000001f01100039000000600110018f0000000001a10019000013960010009c00002d440000213d000000400010043f000000200030008c00002d420000413d00000000020a0433000013910020009c00002d420000213d0000000801000039000000000101041a000300000001001d00001421010000410000000000100443000500000002001d000000040020044300000000010004140000138e0010009c0000138e01008041000000c00110021000001422011001c700008002020000394e324e2d0000040f000000010020019000002d4a0000613d000000000101043b000000000001004b000000050300002900002d420000613d000000400400043d00000064014000390000000402000029000000000021043500000044014000390000145e0200004100000000002104350000002401400039000000070200002900000000002104350000143b0100004100000000001404350000000401400039000000030200002900000000002104350000000001000414000000040030008c00002d390000613d0000138e0040009c0000138e02000041000000000204401900000040022002100000138e0010009c0000138e01008041000000c001100210000000000121019f00001425011001c70000000002030019000700000004001d4e324e280000040f000000070400002900000060031002700001138e0030019d0003000000010355000000010020019000002e110000613d000013960040009c00002d440000213d000000400040043f000000010100002900001391011001970000000603000029000000000013004b00002d6b0000c13d000000000001042d000000000100001900004e34000104300000143d01000041000000000010043f0000004101000039000000040010043f000013fd0100004100004e3400010430000000000001042f0000143d01000041000000000010043f0000001101000039000000040010043f000013fd0100004100004e34000104300000146001000041000000000010043f000000040000043f000013fd0100004100004e34000104300000140301000041000000000010043f0000002001000039000000040010043f000000240020043f000014040100004100004e34000104300000141d0200004100000000002b043500000000004104350000004401b000390000145b0200004100000000002104350000002401b000390000001b0200003900000000002104350000138e00b0009c0000138e0b0080410000004001b00210000013fc011001c700004e34000104300000145f02000041000000000020043f000000040010043f0000000801000029000000240010043f000000440030043f000013fc0100004100004e34000104300000001f0530018f0000139006300198000000400200043d000000000462001900002ea60000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002d7a0000c13d00002ea60000013d0000001f0530018f0000139006300198000000400200043d000000000462001900002ea60000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002d860000c13d00002ea60000013d0000001f0530018f0000139006300198000000400200043d000000000462001900002ea60000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002d920000c13d00002ea60000013d0000138e033001970000001f0530018f0000139006300198000000400200043d000000000462001900002ea60000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002d9f0000c13d00002ea60000013d0000001f0530018f0000139006300198000000400200043d000000000462001900002ea60000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002dab0000c13d00002ea60000013d0000001f0530018f0000139006300198000000400200043d000000000462001900002ea60000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002db70000c13d00002ea60000013d0000001f0530018f0000139006300198000000400200043d000000000462001900002ea60000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002dc30000c13d00002ea60000013d0000001f0530018f0000139006300198000000400200043d000000000462001900002ea60000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002dcf0000c13d00002ea60000013d0000001f0530018f0000139006300198000000400200043d000000000462001900002e2a0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002ddb0000c13d00002e2a0000013d0000138e033001970000001f0530018f0000139006300198000000400200043d000000000462001900002ea60000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002de80000c13d00002ea60000013d0000001f0530018f0000139006300198000000400200043d000000000462001900002ea60000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002df40000c13d00002ea60000013d0000001f0530018f0000139006300198000000400200043d000000000462001900002ea60000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002e000000c13d00002ea60000013d0000001f0530018f0000139006300198000000400200043d000000000462001900002ea60000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002e0c0000c13d00002ea60000013d0000138e033001970000001f0530018f0000139006300198000000400200043d000000000462001900002ea60000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002e190000c13d00002ea60000013d0000138e033001970000001f0530018f0000139006300198000000400200043d000000000462001900002e2a0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002e260000c13d000000000005004b00002e370000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f000000000014043500000060013002100000138e0020009c0000138e020080410000004002200210000000000121019f00004e34000104300000001f0530018f0000139006300198000000400200043d000000000462001900002ea60000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002e440000c13d00002ea60000013d0000001f0530018f0000139006300198000000400200043d000000000462001900002ea60000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002e500000c13d00002ea60000013d0000001f0530018f0000139006300198000000400200043d000000000462001900002ea60000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002e5c0000c13d00002ea60000013d0000138e033001970000001f0530018f0000139006300198000000400200043d000000000462001900002ea60000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002e690000c13d00002ea60000013d000000000002004b00002eb90000c13d0000140701000041000000000010043f0000000801000029000000040010043f000013fd0100004100004e34000104300000001f0530018f0000139006300198000000400200043d000000000462001900002ea60000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002e7d0000c13d00002ea60000013d0000001f0530018f0000139006300198000000400200043d000000000462001900002ea60000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002e890000c13d00002ea60000013d0000001f0530018f0000139006300198000000400200043d000000000462001900002ea60000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002e950000c13d00002ea60000013d0000138e033001970000001f0530018f0000139006300198000000400200043d000000000462001900002ea60000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002ea20000c13d000000000005004b00002eb30000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f000000000014043500000060013002100000138e0020009c0000138e020080410000004002200210000000000112019f00004e34000104300000145c01000041000000000010043f0000000001000411000000040010043f0000000801000029000000240010043f000014040100004100004e340001043000020000000000020000000702000039000000000202041a000000400c00043d000013f70300004100000000003c04350000000404c00039000013f8030000410000000000340435000000000400041400000008022002700000139102200197000000040020008c00002ed40000c13d0000000103000031000000200030008c0000002004000039000000000403401900002f020000013d000100000001001d0000138e00c0009c0000138e0300004100000000030c401900000040033002100000138e0040009c0000138e04008041000000c001400210000000000131019f000013fd011001c700020000000c001d4e324e2d0000040f000000020c00002900000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c001900002ef00000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b00002eec0000c13d000000000006004b00002efd0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000002f600000613d00000001010000290000001f02400039000000600720018f000000000bc7001900000000007b004b000000000200003900000001020040390000139600b0009c00002f5a0000213d000000010020019000002f5a0000c13d0000004000b0043f0000001f0030008c00002f580000a13d00000000020c0433000013910020009c00002f580000213d0000000804000039000000000404041a0000004405b00039000013fb0600004100000000006504350000002405b000390000000000150435000013fa0500004100000000005b04350000000405b0003900000000004504350000000004000414000000040020008c00002f4e0000613d0000138e00b0009c0000138e0100004100000000010b401900000040011002100000138e0040009c0000138e04008041000000c003400210000000000113019f000013fc011001c700020000000b001d4e324e2d0000040f000000020b00002900000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900002f3b0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00002f370000c13d000000000006004b00002f480000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000002f7e0000613d0000001f01400039000000600710018f0000000001b70019000013960010009c00002f5a0000213d000000400010043f000000200030008c00002f580000413d00000000010b0433000013910010009c00002f580000213d000000000001042d000000000100001900004e34000104300000143d01000041000000000010043f0000004101000039000000040010043f000013fd0100004100004e34000104300000001f0530018f0000139006300198000000400200043d000000000462001900002f6b0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002f670000c13d000000000005004b00002f780000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f000000000014043500000060013002100000138e0020009c0000138e020080410000004002200210000000000112019f00004e34000104300000001f0530018f0000139006300198000000400200043d000000000462001900002f890000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002f850000c13d000000000005004b00002f960000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f000000000014043500000060013002100000138e0020009c0000138e020080410000004002200210000000000121019f00004e340001043000010000000000020000000701000039000000000201041a000000ff0120019000002fed0000c13d000000400b00043d0000141b0100004100000000001b0435000000000100041400000008022002700000139102200197000000040020008c00002fae0000c13d0000000103000031000000200030008c0000002004000039000000000403401900002fda0000013d0000138e00b0009c0000138e0300004100000000030b401900000040033002100000138e0010009c0000138e01008041000000c001100210000000000131019f00001406011001c700010000000b001d4e324e2d0000040f000000010b00002900000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900002fc90000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00002fc50000c13d000000000006004b00002fd60000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000002ff60000613d0000001f01400039000000600210018f0000000001b20019000000000021004b00000000020000390000000102004039000013960010009c00002ff00000213d000000010020019000002ff00000c13d000000400010043f0000001f0030008c00002fee0000a13d00000000010b0433000000000001004b0000000002000039000000010200c039000000000021004b00002fee0000c13d000000000001042d000000000100001900004e34000104300000143d01000041000000000010043f0000004101000039000000040010043f000013fd0100004100004e34000104300000001f0530018f0000139006300198000000400200043d0000000004620019000030010000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00002ffd0000c13d000000000005004b0000300e0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f000000000014043500000060013002100000138e0020009c0000138e020080410000004002200210000000000121019f00004e340001043000020000000000020000000702000039000000000202041a000000400c00043d000013f70300004100000000003c04350000000404c00039000013f8030000410000000000340435000000000400041400000008022002700000139102200197000000040020008c000030270000c13d0000000103000031000000200030008c00000020040000390000000004034019000030550000013d000100000001001d0000138e00c0009c0000138e0300004100000000030c401900000040033002100000138e0040009c0000138e04008041000000c001400210000000000131019f000013fd011001c700020000000c001d4e324e2d0000040f000000020c00002900000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c0019000030430000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b0000303f0000c13d000000000006004b000030500000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000030b10000613d00000001010000290000001f02400039000000600720018f000000000bc7001900000000007b004b000000000200003900000001020040390000139600b0009c000030ab0000213d0000000100200190000030ab0000c13d0000004000b0043f0000001f0030008c000030a90000a13d00000000020c0433000013910020009c000030a90000213d0000000804000039000000000404041a0000004405b000390000145e0600004100000000006504350000002405b000390000000000150435000013fe0500004100000000005b04350000000405b0003900000000004504350000000004000414000000040020008c000030a10000613d0000138e00b0009c0000138e0100004100000000010b401900000040011002100000138e0040009c0000138e04008041000000c003400210000000000113019f000013fc011001c700020000000b001d4e324e2d0000040f000000020b00002900000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b00190000308e0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b0000308a0000c13d000000000006004b0000309b0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000030cf0000613d0000001f01400039000000600710018f0000000001b70019000013960010009c000030ab0000213d000000400010043f000000200030008c000030a90000413d00000000010b0433000000000001042d000000000100001900004e34000104300000143d01000041000000000010043f0000004101000039000000040010043f000013fd0100004100004e34000104300000001f0530018f0000139006300198000000400200043d0000000004620019000030bc0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000030b80000c13d000000000005004b000030c90000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f000000000014043500000060013002100000138e0020009c0000138e020080410000004002200210000000000112019f00004e34000104300000001f0530018f0000139006300198000000400200043d0000000004620019000030da0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000030d60000c13d000000000005004b000030e70000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f000000000014043500000060013002100000138e0020009c0000138e020080410000004002200210000000000121019f00004e340001043000020000000000020000000702000039000000000202041a000000400c00043d000013f70300004100000000003c04350000000404c00039000013f8030000410000000000340435000000000400041400000008022002700000139102200197000000040020008c000031000000c13d0000000103000031000000200030008c000000200400003900000000040340190000312e0000013d000100000001001d0000138e00c0009c0000138e0300004100000000030c401900000040033002100000138e0040009c0000138e04008041000000c001400210000000000131019f000013fd011001c700020000000c001d4e324e2d0000040f000000020c00002900000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c00190000311c0000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b000031180000c13d000000000006004b000031290000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000318a0000613d00000001010000290000001f02400039000000600720018f000000000bc7001900000000007b004b000000000200003900000001020040390000139600b0009c000031840000213d0000000100200190000031840000c13d0000004000b0043f0000001f0030008c000031820000a13d00000000020c0433000013910020009c000031820000213d0000000804000039000000000404041a0000004405b00039000013ff0600004100000000006504350000002405b000390000000000150435000013fe0500004100000000005b04350000000405b0003900000000004504350000000004000414000000040020008c0000317a0000613d0000138e00b0009c0000138e0100004100000000010b401900000040011002100000138e0040009c0000138e04008041000000c003400210000000000113019f000013fc011001c700020000000b001d4e324e2d0000040f000000020b00002900000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000031670000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000031630000c13d000000000006004b000031740000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000031a80000613d0000001f01400039000000600710018f0000000001b70019000013960010009c000031840000213d000000400010043f000000200030008c000031820000413d00000000010b0433000000000001042d000000000100001900004e34000104300000143d01000041000000000010043f0000004101000039000000040010043f000013fd0100004100004e34000104300000001f0530018f0000139006300198000000400200043d0000000004620019000031950000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000031910000c13d000000000005004b000031a20000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f000000000014043500000060013002100000138e0020009c0000138e020080410000004002200210000000000112019f00004e34000104300000001f0530018f0000139006300198000000400200043d0000000004620019000031b30000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000031af0000c13d000000000005004b000031c00000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f000000000014043500000060013002100000138e0020009c0000138e020080410000004002200210000000000121019f00004e3400010430000200000000000200000000070100190000000701000039000000000201041a000000400c00043d000013f70100004100000000001c04350000000401c00039000013f8030000410000000000310435000000000100041400000008022002700000139102200197000000040020008c000200000007001d000031db0000c13d0000000103000031000000200030008c00000020040000390000000004034019000032080000013d0000138e00c0009c0000138e0300004100000000030c401900000040033002100000138e0010009c0000138e01008041000000c001100210000000000131019f000013fd011001c700010000000c001d4e324e2d0000040f000000010c00002900000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c0019000031f60000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b000031f20000c13d000000000006004b000032030000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000326e0000613d00000002070000290000001f01400039000000600110018f000000000bc1001900000000001b004b000000000200003900000001020040390000139600b0009c000032630000213d0000000100200190000032630000c13d0000004000b0043f0000001f0030008c000032610000a13d00000000020c0433000013910020009c000032610000213d0000000804000039000000000404041a0000004405b00039000013fb0600004100000000006504350000002405b000390000000000750435000013fa0500004100000000005b04350000000405b0003900000000004504350000000004000414000000040020008c000032550000613d0000138e00b0009c0000138e0100004100000000010b401900000040011002100000138e0040009c0000138e04008041000000c003400210000000000113019f000013fc011001c700010000000b001d4e324e2d0000040f000000010b00002900000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000032410000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b0000323d0000c13d000000000006004b0000324e0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000327a0000613d0000001f01400039000000600110018f00000002070000290000000001b10019000013960010009c000032630000213d000000400010043f000000200030008c000032610000413d00000000010b0433000013910010009c000032610000213d000000000001004b000032690000613d000000000001042d000000000100001900004e34000104300000143d01000041000000000010043f0000004101000039000000040010043f000013fd0100004100004e34000104300000140701000041000000000010043f000000040070043f000013fd0100004100004e34000104300000001f0530018f0000139006300198000000400200043d0000000004620019000032850000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000032750000c13d000032850000013d0000001f0530018f0000139006300198000000400200043d0000000004620019000032850000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000032810000c13d000000000005004b000032920000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f000000000014043500000060013002100000138e0020009c0000138e020080410000004002200210000000000112019f00004e34000104300001000000000002000000400b00043d0000000701000039000000000201041a000000ff00200190000032ee0000c13d0000141b0100004100000000001b0435000000000100041400000008022002700000139102200197000000040020008c000032aa0000c13d0000000103000031000000200030008c00000020040000390000000004034019000032d60000013d0000138e00b0009c0000138e0300004100000000030b401900000040033002100000138e0010009c0000138e01008041000000c001100210000000000131019f00001406011001c700010000000b001d4e324e2d0000040f000000010b00002900000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000032c50000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000032c10000c13d000000000006004b000032d20000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000033050000613d0000001f01400039000000600210018f0000000001b20019000000000021004b00000000020000390000000102004039000013960010009c000032ff0000213d0000000100200190000032ff0000c13d000000400010043f0000001f0030008c000032ec0000a13d00000000020b0433000000000002004b0000000003000039000000010300c039000000000032004b000032ec0000c13d000000000002004b000032ef0000c13d000000000001042d000000000100001900004e340001043000000000010b001900000044021000390000141c0300004100000000003204350000002402100039000000100300003900000000003204350000141d0200004100000000002104350000000402100039000000200300003900000000003204350000138e0010009c0000138e010080410000004001100210000013fc011001c700004e34000104300000143d01000041000000000010043f0000004101000039000000040010043f000013fd0100004100004e34000104300000001f0530018f0000139006300198000000400200043d0000000004620019000033100000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000330c0000c13d000000000005004b0000331d0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f000000000014043500000060013002100000138e0020009c0000138e020080410000004002200210000000000112019f00004e3400010430000e000000000002000600000001001d0000000701000039000000000201041a000000400c00043d000013f70100004100000000001c04350000000401c00039000013f8030000410000000000310435000000000100041400000008022002700000139102200197000000040020008c000033370000c13d0000000103000031000000200030008c00000020040000390000000004034019000033630000013d0000138e00c0009c0000138e0300004100000000030c401900000040033002100000138e0010009c0000138e01008041000000c001100210000000000131019f000013fd011001c7000a0000000c001d4e324e2d0000040f0000000a0c00002900000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c0019000033520000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b0000334e0000c13d000000000006004b0000335f0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000415b0000613d0000001f01400039000000600110018f000000000bc1001900000000001b004b000000000200003900000001020040390000139600b0009c000043e70000213d0000000100200190000043e70000c13d0000004000b0043f0000001f0030008c000041270000a13d00000000020c0433000013910020009c000041270000213d0000000804000039000000000404041a0000004405b0003900001458060000410000000000650435000013fe0500004100000000005b04350000000405b0003900000000004504350000002404b0003900000000000404350000000004000414000000040020008c000033af0000613d0000138e00b0009c0000138e0100004100000000010b401900000040011002100000138e0040009c0000138e04008041000000c003400210000000000113019f000013fc011001c7000a0000000b001d4e324e2d0000040f0000000a0b00002900000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b00190000339c0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000033980000c13d000000000006004b000033a90000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000041670000613d0000001f01400039000000600110018f000000000cb100190000139600c0009c000043e70000213d0000004000c0043f000000200030008c000041270000413d00000000010b0433000a00000001001d0000000701000039000000000201041a000013f70100004100000000001c04350000000401c00039000013f8040000410000000000410435000000000100041400000008022002700000139102200197000000040020008c000033c50000c13d0000002004000039000033f10000013d0000138e00c0009c0000138e0300004100000000030c401900000040033002100000138e0010009c0000138e01008041000000c001100210000000000131019f000013fd011001c700090000000c001d4e324e2d0000040f000000090c00002900000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c0019000033e00000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b000033dc0000c13d000000000006004b000033ed0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000041730000613d0000001f01400039000000600110018f000000000bc100190000139600b0009c000043e70000213d0000004000b0043f000000200030008c000041270000413d00000000020c0433000013910020009c000041270000213d0000000804000039000000000404041a0000004405b0003900001459060000410000000000650435000013fe0500004100000000005b04350000000405b0003900000000004504350000002404b0003900000000000404350000000004000414000000040020008c000034380000613d0000138e00b0009c0000138e0100004100000000010b401900000040011002100000138e0040009c0000138e04008041000000c003400210000000000113019f000013fc011001c700090000000b001d4e324e2d0000040f000000090b00002900000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000034250000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000034210000c13d000000000006004b000034320000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000417f0000613d0000001f01400039000000600110018f0000000001b10019000013960010009c000043e70000213d000000400010043f000000200030008c000041270000413d00000000010b04330000000a0110006b0000412a0000413d000000010010003a0000412a0000413d000a00000001001d0000145601000041000000000010044300000000010004120000000400100443000000240000044300000000010004140000138e0010009c0000138e01008041000000c00110021000001461011001c700008005020000394e324e2d0000040f0000000100200190000041290000613d0000000a020000290000000103200039000000400b00043d0000000402b00039000000000101043b000000000013004b000041300000213d0000000701000039000000000301041a000013f70100004100000000001b0435000013f8010000410000000000120435000000000100041400000008023002700000139102200197000000040020008c000034690000c13d0000000103000031000000200030008c00000020040000390000000004034019000034950000013d0000138e00b0009c0000138e0300004100000000030b401900000040033002100000138e0010009c0000138e01008041000000c001100210000000000131019f000013fd011001c7000a0000000b001d4e324e2d0000040f0000000a0b00002900000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000034840000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000034800000c13d000000000006004b000034910000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000418b0000613d0000001f01400039000000600110018f000000000cb1001900000000001c004b000000000200003900000001020040390000139600c0009c000043e70000213d0000000100200190000043e70000c13d0000004000c0043f000000200030008c000041270000413d00000000020b0433000013910020009c000041270000213d0000000804000039000000000404041a0000004405c0003900001462060000410000000000650435000013fe0500004100000000005c04350000000405c0003900000000004504350000002404c0003900000000000404350000000004000414000000040020008c000034e10000613d0000138e00c0009c0000138e0100004100000000010c401900000040011002100000138e0040009c0000138e04008041000000c003400210000000000113019f000013fc011001c7000a0000000c001d4e324e2d0000040f0000000a0c00002900000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c0019000034ce0000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b000034ca0000c13d000000000006004b000034db0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000041970000613d0000001f01400039000000600110018f000000000bc100190000139600b0009c000043e70000213d0000004000b0043f000000200030008c000041270000413d00000000020c0433000e00010020003d000a00000002001d000000010020003a0000412a0000413d0000000702000039000000000202041a000013f70400004100000000004b04350000000404b00039000013f8050000410000000000540435000000000400041400000008022002700000139102200197000000040020008c000035260000613d0000138e00b0009c0000138e0100004100000000010b401900000040011002100000138e0040009c0000138e04008041000000c003400210000000000113019f000013fd011001c700090000000b001d4e324e2d0000040f000000090b00002900000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000035130000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b0000350f0000c13d000000000006004b000035200000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000041a30000613d0000001f01400039000000600110018f0000000001b10019000013960010009c000043e70000213d000000400010043f000000200030008c000041270000413d00000000020b0433000013910020009c000041270000213d0000000801000039000000000101041a000800000001001d00001421010000410000000000100443000900000002001d000000040020044300000000010004140000138e0010009c0000138e01008041000000c00110021000001422011001c700008002020000394e324e2d0000040f0000000100200190000041290000613d000000000101043b000000000001004b0000000905000029000041270000613d0000000a010000290000000102100039000000400300043d0000006401300039000a00000002001d000000000021043500000044013000390000146202000041000000000021043500000000020300190000143b010000410000000004130436000000040130003900000008030000290000000000310435000000240120003900000000000104350000000001000414000000040050008c000400000004001d000800000002001d0000356b0000613d0000138e0020009c0000138e02000041000000080200402900000040022002100000138e0010009c0000138e01008041000000c001100210000000000121019f00001425011001c700000000020500194e324e280000040f000000040400002900000060031002700001138e0030019d000300000001035500000001002001900000000802000029000041af0000613d000013960020009c000043e70000213d0000000801000029000000400010043f000d00200000003d000014290010009c000043e70000213d000000400040043f000000080100002900000000000104350000000701000039000000000201041a000000400b00043d000013f70100004100000000001b04350000000401b00039000013f8030000410000000000310435000000000100041400000008022002700000139102200197000000040020008c000035870000c13d0000000103000031000000200030008c00000020040000390000000004034019000035b30000013d0000138e00b0009c0000138e0300004100000000030b401900000040033002100000138e0010009c0000138e01008041000000c001100210000000000131019f000013fd011001c700090000000b001d4e324e2d0000040f000000090b00002900000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000035a20000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b0000359e0000c13d000000000006004b000035af0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000041bc0000613d0000001f01400039000000600110018f000000000cb1001900000000001c004b000000000200003900000001020040390000139600c0009c000043e70000213d0000000100200190000043e70000c13d0000004000c0043f000000200030008c000041270000413d00000000020b0433000013910020009c000041270000213d0000000804000039000000000404041a0000004405c000390000143c060000410000000000650435000013fe0500004100000000005c04350000000405c0003900000000004504350000002404c0003900000000000404350000000004000414000000040020008c000035ff0000613d0000138e00c0009c0000138e0100004100000000010c401900000040011002100000138e0040009c0000138e04008041000000c003400210000000000113019f000013fc011001c700090000000c001d4e324e2d0000040f000000090c00002900000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c0019000035ec0000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b000035e80000c13d000000000006004b000035f90000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000041c80000613d0000001f01400039000000600110018f000000000bc100190000139600b0009c000043e70000213d0000004000b0043f000000200030008c000041270000413d00000000010c0433000000000001004b0000371e0000613d000900000001001d0000000701000039000000000201041a000013f70100004100000000001b04350000000401b00039000013f8040000410000000000410435000000000100041400000008022002700000139102200197000000040020008c000036170000c13d0000002004000039000036430000013d0000138e00b0009c0000138e0300004100000000030b401900000040033002100000138e0010009c0000138e01008041000000c001100210000000000131019f000013fd011001c700070000000b001d4e324e2d0000040f000000070b00002900000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000036320000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b0000362e0000c13d000000000006004b0000363f0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000042970000613d0000001f01400039000000600110018f000000000cb100190000139600c0009c000043e70000213d0000004000c0043f000000200030008c000041270000413d00000000020b0433000013910020009c000041270000213d0000000804000039000000000404041a0000004405c0003900001458060000410000000000650435000013fe0500004100000000005c04350000000405c0003900000000004504350000002404c0003900000000000404350000000004000414000000040020008c0000368a0000613d0000138e00c0009c0000138e0100004100000000010c401900000040011002100000138e0040009c0000138e04008041000000c003400210000000000113019f000013fc011001c700070000000c001d4e324e2d0000040f000000070c00002900000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c0019000036770000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b000036730000c13d000000000006004b000036840000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000042a30000613d0000001f01400039000000600110018f000000000bc100190000139600b0009c000043e70000213d0000004000b0043f000000200030008c000041270000413d00000000010c0433000700000001001d0000000701000039000000000201041a000013f70100004100000000001b04350000000401b00039000013f8040000410000000000410435000000000100041400000008022002700000139102200197000000040020008c000036a00000c13d0000002004000039000036cc0000013d0000138e00b0009c0000138e0300004100000000030b401900000040033002100000138e0010009c0000138e01008041000000c001100210000000000131019f000013fd011001c700050000000b001d4e324e2d0000040f000000050b00002900000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000036bb0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000036b70000c13d000000000006004b000036c80000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000042af0000613d0000001f01400039000000600110018f000000000cb100190000139600c0009c000043e70000213d0000004000c0043f000000200030008c000041270000413d00000000020b0433000013910020009c000041270000213d0000000804000039000000000404041a0000004405c0003900001459060000410000000000650435000013fe0500004100000000005c04350000000405c0003900000000004504350000002404c0003900000000000404350000000004000414000000040020008c000037130000613d0000138e00c0009c0000138e0100004100000000010c401900000040011002100000138e0040009c0000138e04008041000000c003400210000000000113019f000013fc011001c700050000000c001d4e324e2d0000040f000000050c00002900000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c0019000037000000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b000036fc0000c13d000000000006004b0000370d0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000042bb0000613d0000001f01400039000000600110018f000000000bc100190000139600b0009c000043e70000213d0000004000b0043f000000200030008c000041270000413d00000000010c0433000000070110006b0000412a0000413d000000090010006c000041570000813d000000060100002900001391011001980000413a0000613d000900000001001d0000000901000039000000000101041a00000008011002700000139102100198000037610000613d00001421010000410000000000100443000700000002001d000000040020044300000000010004140000138e0010009c0000138e01008041000000c00110021000001422011001c700008002020000394e324e2d0000040f0000000100200190000041290000613d000000000101043b000000000001004b000041270000613d000000400b00043d0000004401b000390000000a0200002900000000002104350000002401b00039000000090200002900000000002104350000145a0100004100000000001b0435000000000100041000001391011001970000000404b0003900000000001404350000006401b00039000000000001043500000000010004140000000702000029000000040020008c0000375d0000613d0000138e00b0009c0000138e0300004100000000030b401900000040033002100000138e0010009c0000138e01008041000000c001100210000000000131019f00001425011001c700070000000b001d000500000004001d4e324e280000040f0000000504000029000000070b00002900000060031002700001138e0030019d00030000000103550000000100200190000042c70000613d0000139600b0009c000043e70000213d0000004000b0043f000037620000013d0000000404b000390000000701000039000000000201041a000013f70100004100000000001b0435000013f8010000410000000000140435000000000100041400000008022002700000139102200197000000040020008c000037720000c13d0000000103000031000000200030008c000000200400003900000000040340190000379e0000013d0000138e00b0009c0000138e0300004100000000030b401900000040033002100000138e0010009c0000138e01008041000000c001100210000000000131019f000013fd011001c700070000000b001d4e324e2d0000040f000000070b00002900000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b00190000378d0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000037890000c13d000000000006004b0000379a0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000041d40000613d0000001f01400039000000600110018f000000000cb100190000139600c0009c000043e70000213d0000004000c0043f000000200030008c000041270000413d00000000020b0433000013910020009c000041270000213d0000000804000039000000000404041a0000004405c00039000013fb0600004100000000006504350000002405c000390000000a060000290000000000650435000013fa0500004100000000005c04350000000405c0003900000000004504350000000004000414000000040020008c000037e60000613d0000138e00c0009c0000138e0100004100000000010c401900000040011002100000138e0040009c0000138e04008041000000c003400210000000000113019f000013fc011001c700070000000c001d4e324e2d0000040f000000070c00002900000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c0019000037d30000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b000037cf0000c13d000000000006004b000037e00000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000041e00000613d0000001f01400039000000600110018f0000000001c10019000013960010009c000043e70000213d000000400010043f000000200030008c000041270000413d00000000010c0433000500000001001d000013910010009c000041270000213d0000140001000041000000000010044300000000010004140000138e0010009c0000138e01008041000000c00110021000001401011001c70000800b020000394e324e2d0000040f0000000100200190000041290000613d000000000201043b000014020020009c0000413c0000813d000700000002001d0000000701000039000000000201041a000000400b00043d000013f70100004100000000001b04350000000401b00039000013f8030000410000000000310435000000000100041400000008022002700000139102200197000000040020008c000038110000c13d0000000103000031000000200030008c000000200400003900000000040340190000383d0000013d0000138e00b0009c0000138e0300004100000000030b401900000040033002100000138e0010009c0000138e01008041000000c001100210000000000131019f000013fd011001c700030000000b001d4e324e2d0000040f000000030b00002900000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b00190000382c0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000038280000c13d000000000006004b000038390000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000041ec0000613d0000001f01400039000000600210018f0000000001b20019000000000021004b00000000020000390000000102004039000013960010009c000043e70000213d0000000100200190000043e70000c13d000000400010043f000000200030008c000041270000413d00000000020b0433000013910020009c000041270000213d0000000801000039000000000101041a000200000001001d00001421010000410000000000100443000300000002001d000000040020044300000000010004140000138e0010009c0000138e01008041000000c00110021000001422011001c700008002020000394e324e2d0000040f0000000100200190000041290000613d000000000101043b000000000001004b0000000303000029000041270000613d000000400b00043d0000006401b00039000000070200002900000000002104350000004401b00039000013ff0200004100000000002104350000002401b000390000000a0200002900000000002104350000143b0100004100000000001b04350000000404b00039000000020100002900000000001404350000000001000414000000040030008c00010000000b001d000038870000613d0000138e00b0009c0000138e0200004100000000020b401900000040022002100000138e0010009c0000138e01008041000000c001100210000000000121019f00001425011001c70000000002030019000700000004001d4e324e280000040f0000000704000029000000010b00002900000060031002700001138e0030019d00030000000103550000000100200190000041f80000613d0000139600b0009c000043e70000213d0000004000b0043f0000000701000039000000000201041a000013f70100004100000000001b0435000013f8010000410000000000140435000000000100041400000008022002700000139102200197000000040020008c0000389a0000c13d0000000103000031000000200030008c00000020040000390000000004034019000038c50000013d0000138e00b0009c0000138e0300004100000000030b401900000040033002100000138e0010009c0000138e01008041000000c001100210000000000131019f000013fd011001c74e324e2d0000040f000000010b00002900000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000038b40000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000038b00000c13d000000000006004b000038c10000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000042050000613d0000001f01400039000000600110018f000000000cb100190000139600c0009c000043e70000213d0000004000c0043f000000200030008c000041270000413d00000000020b0433000013910020009c000041270000213d0000000804000039000000000404041a0000004405c00039000014230600004100000000006504350000142d0500004100000000005c04350000000405c0003900000000004504350000002404c0003900000000000404350000000004000414000000040020008c0000390c0000613d0000138e00c0009c0000138e0100004100000000010c401900000040011002100000138e0040009c0000138e04008041000000c003400210000000000113019f000013fc011001c700070000000c001d4e324e2d0000040f000000070c00002900000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c0019000038f90000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b000038f50000c13d000000000006004b000039060000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000042110000613d0000001f01400039000000600110018f000000000bc100190000139600b0009c000043e70000213d0000004000b0043f000000200030008c000041270000413d00000000020c0433000000000002004b0000000001000039000000010100c039000000000012004b000041270000c13d0000000401b00039000000050000006b0000391d0000613d000000000002004b000041430000c13d0000000702000039000000000202041a000013f70400004100000000004b0435000013f8040000410000000000410435000000000100041400000008022002700000139102200197000000040020008c0000392a0000c13d0000002004000039000039560000013d0000138e00b0009c0000138e0300004100000000030b401900000040033002100000138e0010009c0000138e01008041000000c001100210000000000131019f000013fd011001c700070000000b001d4e324e2d0000040f000000070b00002900000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000039450000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000039410000c13d000000000006004b000039520000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000421d0000613d0000001f01400039000000600110018f000000000cb100190000139600c0009c000043e70000213d0000004000c0043f000000200030008c000041270000413d00000000020b0433000013910020009c000041270000213d0000000804000039000000000404041a0000004405c00039000013fb0600004100000000006504350000002405c000390000000a060000290000000000650435000013fa0500004100000000005c04350000000405c0003900000000004504350000000004000414000000040020008c0000399e0000613d0000138e00c0009c0000138e0100004100000000010c401900000040011002100000138e0040009c0000138e04008041000000c003400210000000000113019f000013fc011001c700070000000c001d4e324e2d0000040f000000070c00002900000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c00190000398b0000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b000039870000c13d000000000006004b000039980000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000042290000613d0000001f01400039000000600110018f0000000001c10019000013960010009c000043e70000213d000000400010043f000000200030008c000041270000413d00000000010c0433000700000001001d000013910010009c000041270000213d000000070000006b0000000302000039000039ce0000613d0000000a01000029000000000010043f0000000401000039000000200010043f00000000010004140000138e0010009c0000138e01008041000000c0011002100000142e011001c700008010020000394e324e2d0000040f0000000100200190000041270000613d000000000101043b000000000201041a0000143e02200197000000000021041b0000000701000029000000000010043f0000000301000039000000200010043f00000000010004140000138e0010009c0000138e01008041000000c0011002100000142e011001c700008010020000394e324e2d0000040f0000000100200190000041270000613d000000000101043b000000000201041a000000010220008a000000000021041b00000003020000390000000901000029000000000010043f000000200020043f00000000010004140000138e0010009c0000138e01008041000000c0011002100000142e011001c700008010020000394e324e2d0000040f0000000100200190000041270000613d000000000101043b000000000201041a0000000102200039000000000021041b0000000a01000029000000000010043f0000000201000039000000200010043f00000000010004140000138e0010009c0000138e01008041000000c0011002100000142e011001c700008010020000394e324e2d0000040f0000000100200190000041270000613d000000000101043b000000000201041a0000143e022001970000000906000029000000000262019f000000000021041b00000000010004140000138e0010009c0000138e01008041000000c00110021000001441011001c70000800d0200003900000004030000390000145d0400004100000007050000290000000a070000294e324e280000040f0000000100200190000041270000613d000000400b00043d0000000502000029000000000002004b00003a300000613d0000002001000039000300000001001d00000000011b043600000000002104350000139200b0009c000043e70000213d0000004002b00039000000400020043f0000138e0010009c0000138e01008041000000400110021000000000020b04330000138e0020009c0000138e020080410000006002200210000000000112019f00000000020004140000138e0020009c0000138e02008041000000c002200210000000000112019f00001441011001c700008010020000394e324e2d0000040f0000000100200190000041270000613d000000000101043b000500000001001d0000000701000039000000000201041a000000400c00043d000013f70100004100000000001c04350000000401c00039000013f8030000410000000000310435000000000100041400000008022002700000139102200197000000040020008c00003a410000c13d0000000103000031000000200030008c0000002004000039000000000403401900003a6d0000013d0000000701000039000000000201041a000013f70100004100000000001b04350000000401b00039000013f8030000410000000000310435000000000100041400000008022002700000139102200197000000040020008c00003b510000c13d0000000103000031000000200030008c0000002004000039000000000403401900003b7d0000013d0000138e00c0009c0000138e0300004100000000030c401900000040033002100000138e0010009c0000138e01008041000000c001100210000000000131019f000013fd011001c700020000000c001d4e324e2d0000040f000000020c00002900000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c001900003a5c0000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b00003a580000c13d000000000006004b00003a690000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000042d40000613d0000001f01400039000000600110018f000000000bc1001900000000001b004b000000000200003900000001020040390000139600b0009c000043e70000213d0000000100200190000043e70000c13d0000004000b0043f000000200030008c000041270000413d00000000020c0433000013910020009c000041270000213d0000000804000039000000000404041a0000004405b000390000145e0600004100000000006504350000002405b0003900000005060000290000000000650435000013fe0500004100000000005b04350000000405b0003900000000004504350000000004000414000000040020008c00003aba0000613d0000138e00b0009c0000138e0100004100000000010b401900000040011002100000138e0040009c0000138e04008041000000c003400210000000000113019f000013fc011001c700020000000b001d4e324e2d0000040f000000020b00002900000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900003aa70000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00003aa30000c13d000000000006004b00003ab40000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000042e00000613d0000001f01400039000000600110018f000000000ab100190000139600a0009c000043e70000213d0000004000a0043f000000200030008c000041270000413d00000000010b0433000200000001001d000000000001004b0000412a0000613d0000000701000039000000000201041a000013f70100004100000000001a04350000000401a00039000013f8040000410000000000410435000000000100041400000008022002700000139102200197000000040020008c00003afd0000613d0000138e00a0009c0000138e0300004100000000030a401900000040033002100000138e0010009c0000138e01008041000000c001100210000000000131019f000013fd011001c700010000000a001d4e324e2d0000040f000000010a00002900000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0540018f000300000004001d000000200640019000000000046a001900003aec0000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000048004b00003ae80000c13d000000000005004b00003af90000613d000000000661034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000100000003001f00030000000103550000000100200190000042ec0000613d00000003010000290000001f01100039000000600110018f0000000001a10019000013960010009c000043e70000213d000000400010043f000000200030008c000041270000413d00000000020a0433000013910020009c000041270000213d0000000801000039000000000101041a000100000001001d00001421010000410000000000100443000300000002001d000000040020044300000000010004140000138e0010009c0000138e01008041000000c00110021000001422011001c700008002020000394e324e2d0000040f0000000100200190000041290000613d000000000101043b000000000001004b0000000303000029000041270000613d0000000201000029000000010110008a000000400b00043d0000006402b0003900000000001204350000004401b000390000145e0200004100000000002104350000002401b00039000000050200002900000000002104350000143b0100004100000000001b04350000000404b00039000000010100002900000000001404350000000001000414000000040030008c00003c510000613d0000138e00b0009c0000138e0200004100000000020b401900000040022002100000138e0010009c0000138e01008041000000c001100210000000000121019f00001425011001c7000000000203001900050000000b001d000300000004001d4e324e280000040f0000000304000029000000050b00002900000060031002700001138e0030019d0003000000010355000000010020019000003c510000c13d0000138e033001970000001f0530018f0000139006300198000000400200043d0000000004620019000043a40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00003b4c0000c13d000043a40000013d0000138e00b0009c0000138e0300004100000000030b401900000040033002100000138e0010009c0000138e01008041000000c001100210000000000131019f000013fd011001c700050000000b001d4e324e2d0000040f000000050b00002900000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900003b6c0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00003b680000c13d000000000006004b00003b790000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000043090000613d0000001f01400039000000600110018f000000000cb1001900000000001c004b000000000200003900000001020040390000139600c0009c000043e70000213d0000000100200190000043e70000c13d0000004000c0043f000000200030008c000041270000413d00000000020b0433000013910020009c000041270000213d0000000804000039000000000404041a0000004405c0003900001458060000410000000000650435000013fe0500004100000000005c04350000000405c0003900000000004504350000002404c0003900000000000404350000000004000414000000040020008c00003bc90000613d0000138e00c0009c0000138e0100004100000000010c401900000040011002100000138e0040009c0000138e04008041000000c003400210000000000113019f000013fc011001c700050000000c001d4e324e2d0000040f000000050c00002900000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c001900003bb60000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b00003bb20000c13d000000000006004b00003bc30000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000043150000613d0000001f01400039000000600110018f000000000bc100190000139600b0009c000043e70000213d0000004000b0043f000000200030008c000041270000413d00000000010c0433000000010510003a0000412a0000613d0000000701000039000000000201041a000013f70100004100000000001b04350000000401b00039000013f8040000410000000000410435000000000100041400000008022002700000139102200197000000040020008c000500000005001d00003be10000c13d000000200400003900003c0d0000013d0000138e00b0009c0000138e0300004100000000030b401900000040033002100000138e0010009c0000138e01008041000000c001100210000000000131019f000013fd011001c700030000000b001d4e324e2d0000040f000000030b00002900000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900003bfc0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00003bf80000c13d000000000006004b00003c090000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000043210000613d0000001f01400039000000600110018f0000000001b10019000013960010009c000043e70000213d000000400010043f000000200030008c000041270000413d00000000020b0433000013910020009c000041270000213d0000000801000039000000000101041a000200000001001d00001421010000410000000000100443000300000002001d000000040020044300000000010004140000138e0010009c0000138e01008041000000c00110021000001422011001c700008002020000394e324e2d0000040f0000000100200190000041290000613d000000000101043b000000000001004b0000000303000029000041270000613d000000400b00043d0000006401b00039000000050200002900000000002104350000004401b00039000014580200004100000000002104350000143b0100004100000000001b04350000000404b00039000000020100002900000000001404350000002401b0003900000000000104350000000001000414000000040030008c00003c510000613d0000138e00b0009c0000138e0200004100000000020b401900000040022002100000138e0010009c0000138e01008041000000c001100210000000000121019f00001425011001c7000000000203001900050000000b001d000300000004001d4e324e280000040f0000000304000029000000050b00002900000060031002700001138e0030019d000300000001035500000001002001900000432d0000613d0000139600b0009c000043e70000213d0000004000b0043f0000000a01000039000000000101041a000013910210019800003c910000613d00001421010000410000000000100443000500000002001d000000040020044300000000010004140000138e0010009c0000138e01008041000000c00110021000001422011001c700008002020000394e324e2d0000040f0000000100200190000041290000613d000000000101043b000000000001004b000041270000613d000000400b00043d0000004401b000390000000a0200002900000000002104350000002401b00039000000090200002900000000002104350000145a0100004100000000001b0435000000000100041000001391011001970000000404b0003900000000001404350000006401b00039000000000001043500000000010004140000000502000029000000040020008c00003c8e0000613d0000138e00b0009c0000138e0300004100000000030b401900000040033002100000138e0010009c0000138e01008041000000c001100210000000000131019f00001425011001c700050000000b001d000300000004001d4e324e280000040f0000000304000029000000050b00002900000060031002700001138e0030019d00030000000103550000000100200190000042f80000613d0000139600b0009c000043e70000213d0000004000b0043f0000000701000039000000000201041a000013f70100004100000000001b0435000013f8010000410000000000140435000000000100041400000008022002700000139102200197000000040020008c00003ca00000c13d0000000104000031000000200040008c000000200400803900003ccc0000013d0000138e00b0009c0000138e0300004100000000030b401900000040033002100000138e0010009c0000138e01008041000000c001100210000000000131019f000013fd011001c700050000000b001d4e324e2d0000040f000000050b00002900000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900003cbb0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00003cb70000c13d000000000006004b00003cc80000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000100200190000042350000613d0000001f01400039000000600110018f0000000001b10019000013960010009c000043e70000213d000000400010043f000000200040008c000041270000413d00000000020b0433000013910020009c000041270000213d0000000801000039000000000101041a000300000001001d00001421010000410000000000100443000500000002001d000000040020044300000000010004140000138e0010009c0000138e01008041000000c00110021000001422011001c700008002020000394e324e2d0000040f0000000100200190000041290000613d000000000101043b000000000001004b0000000503000029000041270000613d000000400400043d0000006401400039000000090200002900000000002104350000004401400039000013fb02000041000000000021043500000024014000390000000a020000290000000000210435000014380100004100000000021404360000000401400039000000030500002900000000005104350000000001000414000000040030008c00003d110000613d0000138e0040009c000300000002001d0000138e02000041000000000204401900000040022002100000138e0010009c0000138e01008041000000c001100210000000000121019f00001425011001c70000000002030019000a00000004001d4e324e280000040f0000000a0400002900000060031002700001138e0030019d000300000001035500000001002001900000000302000029000042410000613d000013960040009c000043e70000213d000000400040043f0000002001000039000500000001001d000000000014043500000009010000290000000000120435000013920040009c000043e70000213d0000004001400039000000400010043f0000138e0020009c0000138e02008041000000400120021000000000020404330000138e0020009c0000138e020080410000006002200210000000000112019f00000000020004140000138e0020009c0000138e02008041000000c002200210000000000112019f00001441011001c700008010020000394e324e2d0000040f0000000100200190000041270000613d000000000101043b000a00000001001d0000000701000039000000000201041a000000400c00043d000013f70100004100000000001c04350000000401c00039000013f8030000410000000000310435000000000100041400000008022002700000139102200197000000040020008c00003d430000c13d0000000103000031000000200030008c0000002004000039000000000403401900003d6f0000013d0000138e00c0009c0000138e0300004100000000030c401900000040033002100000138e0010009c0000138e01008041000000c001100210000000000131019f000013fd011001c700030000000c001d4e324e2d0000040f000000030c00002900000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c001900003d5e0000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b00003d5a0000c13d000000000006004b00003d6b0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000424e0000613d0000001f01400039000000600110018f000000000bc1001900000000001b004b000000000200003900000001020040390000139600b0009c000043e70000213d0000000100200190000043e70000c13d0000004000b0043f000000200030008c000041270000413d00000000020c0433000013910020009c000041270000213d0000000804000039000000000404041a0000004405b000390000145e0600004100000000006504350000002405b000390000000a060000290000000000650435000013fe0500004100000000005b04350000000405b0003900000000004504350000000004000414000000040020008c00003dbc0000613d0000138e00b0009c0000138e0100004100000000010b401900000040011002100000138e0040009c0000138e04008041000000c003400210000000000113019f000013fc011001c700030000000b001d4e324e2d0000040f000000030b00002900000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900003da90000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00003da50000c13d000000000006004b00003db60000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000425a0000613d0000001f01400039000000600110018f000000000ab100190000139600a0009c000043e70000213d0000004000a0043f000000200030008c000041270000413d00000000010b0433000300010010003e0000412a0000613d0000000701000039000000000201041a000013f70100004100000000001a04350000000401a00039000013f8040000410000000000410435000000000100041400000008022002700000139102200197000000040020008c00003dfe0000613d0000138e00a0009c0000138e0300004100000000030a401900000040033002100000138e0010009c0000138e01008041000000c001100210000000000131019f000013fd011001c700020000000a001d4e324e2d0000040f000000020a00002900000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0540018f000500000004001d000000200640019000000000046a001900003ded0000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000048004b00003de90000c13d000000000005004b00003dfa0000613d000000000661034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000100000003001f00030000000103550000000100200190000042660000613d00000005010000290000001f01100039000000600110018f0000000001a10019000013960010009c000043e70000213d000000400010043f000000200030008c000041270000413d00000000020a0433000013910020009c000041270000213d0000000801000039000000000101041a000200000001001d00001421010000410000000000100443000500000002001d000000040020044300000000010004140000138e0010009c0000138e01008041000000c00110021000001422011001c700008002020000394e324e2d0000040f0000000100200190000041290000613d000000000101043b000000000001004b0000000503000029000041270000613d000000400400043d00000064014000390000000302000029000000000021043500000044014000390000145e02000041000000000021043500000024014000390000000a0200002900000000002104350000143b0100004100000000001404350000000401400039000000020200002900000000002104350000000001000414000000040030008c00003e420000613d0000138e0040009c0000138e02000041000000000204401900000040022002100000138e0010009c0000138e01008041000000c001100210000000000121019f00001425011001c70000000002030019000a00000004001d4e324e280000040f0000000a0400002900000060031002700001138e0030019d00030000000103550000000100200190000042720000613d000013960040009c000043e70000213d000000400040043f000000070000006b000041520000c13d000014210100004100000000001004430000000601000029000000040010044300000000010004140000138e0010009c0000138e01008041000000c00110021000001422011001c700008002020000394e324e2d0000040f0000000100200190000041290000613d000000400b00043d000000000101043b000000000001004b000000040900002900003e7f0000613d000014650100004100000000001b04350000000401b00039000000000200041100000000002104350000002401b0003900000000000104350000006401b000390000000e02000029000000800a0000390000000000a104350000004401b000390000000000210435000000080100002900000000010104330000008402b00039000000000012043500001454041001970000001f0310018f000000a402b00039000000000029004b00003e810000813d000000000004004b00003e7b0000613d00000000063900190000000005320019000000200550008a000000200660008a0000000007450019000000000846001900000000080804330000000000870435000000200440008c00003e750000c13d000000000003004b00003e970000613d000000000502001900003e8d0000013d000900200000003d00003ef30000013d0000000005420019000000000004004b00003e8a0000613d0000000006090019000000000702001900000000680604340000000007870436000000000057004b00003e860000c13d000000000003004b00003e970000613d00000000094900190000000303300210000000000405043300000000043401cf000000000434022f00000000060904330000010003300089000000000636022f00000000033601cf000000000343019f00000000003504350000000002210019000000000002043500000000040004140000000902000029000000040020008c00003ea50000c13d00000000050004150000000c0550008a00000005055002100000000104000031000000200040008c0000002004008039000c00000000003d00003edc0000013d00080000000a001d0000001f011000390000145401100197000000a4011000390000138e0010009c0000138e0100804100000060011002100000138e00b0009c0000138e0300004100000000030b40190000004003300210000000000131019f0000138e0040009c0000138e04008041000000c003400210000000000113019f000a0000000b001d4e324e280000040f0000000a0b00002900000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900003ec70000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00003ec30000c13d000000000006004b00003ed40000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000000050004150000000b0550008a0000000505500210000b00000000003d0000000100200190000043050000613d0000001f01400039000000600210018f0000000001b20019000000000021004b00000000020000390000000102004039000013960010009c000043e70000213d0000000100200190000043e70000c13d000000400010043f000000200040008c000041270000413d00000000020b04330000144d00200198000041270000c13d0000000503500270000000000302001f0000146702200197000014650020009c000043e10000c13d0009000d0000002d000000000b0100190000000701000039000000000201041a000013f70100004100000000001b04350000000401b00039000013f8030000410000000000310435000000000100041400000008022002700000139102200197000000040020008c00003f040000c13d0000000901000029000000010010007c0000000103000031000000000301401900003f300000013d0000138e00b0009c0000138e0300004100000000030b401900000040033002100000138e0010009c0000138e01008041000000c001100210000000000131019f000013fd011001c7000a0000000b001d4e324e2d0000040f0000000a0b00002900000060031002700000138e04300197000000090040006c000000090300002900000000030440190000001f0630018f000013900730019800000000057b001900003f1f0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00003f1b0000c13d000000000006004b00003f2c0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000004001f000300000001035500000001002001900000427f0000613d0000001f013000390000145401100197000000000cb1001900000000001c004b000000000200003900000001020040390000139600c0009c000043e70000213d0000000100200190000043e70000c13d0000004000c0043f0000140b0030009c000041270000213d000000200030008c000041270000413d00000000020b0433000013910020009c000041270000213d0000000804000039000000000404041a0000142d0500004100000000005c04350000000405c0003900000000004504350000004404c000390000000e06000029000014320500004100000000005404350000002404c00039000a00000006001d00000000006404350000000004000414000000040020008c00003f800000613d0000138e00c0009c0000138e0100004100000000010c401900000040011002100000138e0040009c0000138e04008041000000c003400210000000000113019f000013fc011001c700080000000c001d4e324e2d0000040f000000080c00002900000060031002700000138e04300197000000090040006c000000090300002900000000030440190000001f0630018f000013900730019800000000057c001900003f6d0000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b00003f690000c13d000000000006004b00003f7a0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000004001f000300000001035500000001002001900000428b0000613d0000001f013000390000138f01100197000000000bc1001900000000001b004b000000000200003900000001020040390000139600b0009c000043e70000213d0000000100200190000043e70000c13d0000004000b0043f000000200030008c000041270000413d00000000020c0433000000000002004b0000000004000039000000010400c039000000000042004b000041270000c13d000000000002004b00003f950000613d0000000a01000029000000000001042d0000000702000039000000000202041a000013f70400004100000000004b04350000000404b00039000013f8050000410000000000540435000000000400041400000008022002700000139102200197000000040020008c00003fcf0000613d0000138e00b0009c0000138e0100004100000000010b401900000040011002100000138e0040009c0000138e04008041000000c003400210000000000113019f000013fd011001c700080000000b001d4e324e2d0000040f000000080b00002900000060031002700000138e04300197000000090040006c000000090300002900000000030440190000001f0630018f000013900730019800000000057b001900003fbc0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00003fb80000c13d000000000006004b00003fc90000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000004001f000300000001035500000001002001900000433a0000613d0000001f013000390000138f011001970000000002b10019000000000012004b00000000010000390000000101004039000013960020009c000043e70000213d0000000100100190000043e70000c13d000000400020043f000000200030008c000041270000413d00000000020b0433000013910020009c000041270000213d0000000801000039000000000101041a000700000001001d00001421010000410000000000100443000800000002001d000000040020044300000000010004140000138e0010009c0000138e01008041000000c00110021000001422011001c700008002020000394e324e2d0000040f0000000100200190000041290000613d000000000101043b000000000001004b0000000803000029000041270000613d000000400a00043d0000006401a00039000000010200003900000000002104350000004401a00039000014680200004100000000002104350000002401a000390000000a020000290000000000210435000014240100004100000000001a04350000000404a00039000000070100002900000000001404350000000001000414000000040030008c00060000000a001d000040170000613d0000138e00a0009c0000138e0200004100000000020a401900000040022002100000138e0010009c0000138e01008041000000c001100210000000000121019f00001425011001c70000000002030019000800000004001d4e324e280000040f0000000804000029000000060a00002900000060031002700001138e0030019d00030000000103550000000100200190000043540000613d0000139600a0009c000043e70000213d0000004000a0043f0000000701000039000000000201041a000013f70100004100000000001a0435000013f8010000410000000000140435000000000100041400000008022002700000139102200197000000040020008c000040270000c13d0000000103000031000040520000013d0000138e00a0009c0000138e0300004100000000030a401900000040033002100000138e0010009c0000138e01008041000000c001100210000000000131019f000013fd011001c74e324e2d0000040f000000060a00002900000060031002700000138e03300197000000090030006c000000090400002900000000040340190000001f0540018f000013900640019800000000046a0019000040410000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000048004b0000403d0000c13d000000000005004b0000404e0000613d000000000661034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000100000003001f00030000000103550000000100200190000043610000613d0000000d0030006b00000000010300190000000d010040290000001f0210003900001454032001970000000002a30019000000000032004b00000000030000390000000103004039000013960020009c000043e70000213d0000000100300190000043e70000c13d000000400020043f0000140b0010009c000041270000213d000000200010008c000041270000413d00000000020a0433000013910020009c000041270000213d0000000801000039000000000101041a000800000001001d00001421010000410000000000100443000900000002001d000000040020044300000000010004140000138e0010009c0000138e01008041000000c00110021000001422011001c700008002020000394e324e2d0000040f0000000100200190000041290000613d000000000101043b000000000001004b0000000903000029000041270000613d000000400b00043d0000006401b00039000000010200003900000000002104350000004401b00039000014690200004100000000002104350000002401b000390000000a0200002900000000002104350000143b0100004100000000001b04350000000404b00039000000080100002900000000001404350000000001000414000000040030008c00070000000b001d000040a10000613d0000138e00b0009c0000138e0200004100000000020b401900000040022002100000138e0010009c0000138e01008041000000c001100210000000000121019f00001425011001c70000000002030019000900000004001d4e324e280000040f0000000904000029000000070b00002900000060031002700001138e0030019d000300000001035500000001002001900000437f0000613d0000139600b0009c000043e70000213d0000004000b0043f0000000701000039000000000201041a000013f70100004100000000001b0435000013f8010000410000000000140435000000000100041400000008022002700000139102200197000000040020008c000040b40000c13d0000000103000031000000200030008c00000020040000390000000004034019000040df0000013d0000138e00b0009c0000138e0300004100000000030b401900000040033002100000138e0010009c0000138e01008041000000c001100210000000000131019f000013fd011001c74e324e2d0000040f000000070b00002900000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000040ce0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000040ca0000c13d000000000006004b000040db0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f000300000001035500000001002001900000438c0000613d0000001f01400039000000600110018f0000000001b10019000013960010009c000043e70000213d000000400010043f000000200030008c000041270000413d00000000020b0433000013910020009c000041270000213d0000000801000039000000000101041a000800000001001d00001421010000410000000000100443000900000002001d000000040020044300000000010004140000138e0010009c0000138e01008041000000c00110021000001422011001c700008002020000394e324e2d0000040f0000000100200190000041290000613d000000000101043b000000000001004b0000000903000029000041270000613d000000400400043d00000064014000390000000102000039000000000021043500000044014000390000143202000041000000000021043500000024014000390000000a020000290000000000210435000014240100004100000000001404350000000401400039000000080200002900000000002104350000000001000414000000040030008c000041220000613d0000138e0040009c0000138e02000041000000000204401900000040022002100000138e0010009c0000138e01008041000000c001100210000000000121019f00001425011001c70000000002030019000900000004001d4e324e280000040f000000090400002900000060031002700001138e0030019d00030000000103550000000100200190000043980000613d000013960040009c000043e70000213d000000400040043f0000000a01000029000000000001042d000000000100001900004e3400010430000000000001042f0000143d01000041000000000010043f0000001101000039000000040010043f000013fd0100004100004e34000104300000141d0100004100000000001b0435000000200100003900000000001204350000004401b000390000146a0200004100000000002104350000002401b0003900000012020000390000414c0000013d0000146001000041000041530000013d0000140301000041000000000010043f0000002001000039000000040010043f000000240020043f000014040100004100004e34000104300000141d0200004100000000002b0435000000200200003900000000002104350000004401b000390000145b0200004100000000002104350000002401b000390000001b0200003900000000002104350000138e00b0009c0000138e0b0080410000004001b00210000013fc011001c700004e34000104300000146401000041000000000010043f000000040000043f000013fd0100004100004e34000104300000146301000041000000000010043f000014060100004100004e34000104300000001f0530018f0000139006300198000000400200043d0000000004620019000043a40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000041620000c13d000043a40000013d0000001f0530018f0000139006300198000000400200043d0000000004620019000043a40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000416e0000c13d000043a40000013d0000001f0530018f0000139006300198000000400200043d0000000004620019000043a40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000417a0000c13d000043a40000013d0000001f0530018f0000139006300198000000400200043d0000000004620019000043a40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000041860000c13d000043a40000013d0000001f0530018f0000139006300198000000400200043d00000000046200190000436c0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000041920000c13d0000436c0000013d0000001f0530018f0000139006300198000000400200043d00000000046200190000436c0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000419e0000c13d0000436c0000013d0000001f0530018f0000139006300198000000400200043d00000000046200190000436c0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000041aa0000c13d0000436c0000013d0000138e033001970000001f0530018f0000139006300198000000400200043d00000000046200190000436c0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000041b70000c13d0000436c0000013d0000001f0530018f0000139006300198000000400200043d0000000004620019000043a40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000041c30000c13d000043a40000013d0000001f0530018f0000139006300198000000400200043d0000000004620019000043a40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000041cf0000c13d000043a40000013d0000001f0530018f0000139006300198000000400200043d0000000004620019000043a40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000041db0000c13d000043a40000013d0000001f0530018f0000139006300198000000400200043d0000000004620019000043a40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000041e70000c13d000043a40000013d0000001f0530018f0000139006300198000000400200043d0000000004620019000043a40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000041f30000c13d000043a40000013d0000138e033001970000001f0530018f0000139006300198000000400200043d0000000004620019000043a40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000042000000c13d000043a40000013d0000001f0530018f0000139006300198000000400200043d0000000004620019000043a40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000420c0000c13d000043a40000013d0000001f0530018f0000139006300198000000400200043d0000000004620019000043a40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000042180000c13d000043a40000013d0000001f0530018f0000139006300198000000400200043d0000000004620019000043a40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000042240000c13d000043a40000013d0000001f0530018f0000139006300198000000400200043d0000000004620019000043a40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000042300000c13d000043a40000013d0000001f0530018f0000139006300198000000400200043d00000000046200190000436c0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000423c0000c13d0000436c0000013d0000138e033001970000001f0530018f0000139006300198000000400200043d00000000046200190000436c0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000042490000c13d0000436c0000013d0000001f0530018f0000139006300198000000400200043d0000000004620019000043a40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000042550000c13d000043a40000013d0000001f0530018f0000139006300198000000400200043d0000000004620019000043a40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000042610000c13d000043a40000013d0000001f0530018f0000139006300198000000400200043d0000000004620019000043a40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000426d0000c13d000043a40000013d0000138e033001970000001f0530018f0000139006300198000000400200043d0000000004620019000043a40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000427a0000c13d000043a40000013d0000001f0540018f0000139006400198000000400200043d0000000003620019000043450000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000038004b000042860000c13d000043450000013d0000001f0540018f0000139006400198000000400200043d0000000003620019000043450000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000038004b000042920000c13d000043450000013d0000001f0530018f0000139006300198000000400200043d0000000004620019000043a40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000429e0000c13d000043a40000013d0000001f0530018f0000139006300198000000400200043d0000000004620019000043a40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000042aa0000c13d000043a40000013d0000001f0530018f0000139006300198000000400200043d0000000004620019000043a40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000042b60000c13d000043a40000013d0000001f0530018f0000139006300198000000400200043d0000000004620019000043a40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000042c20000c13d000043a40000013d0000138e033001970000001f0530018f0000139006300198000000400200043d00000000046200190000436c0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000042cf0000c13d0000436c0000013d0000001f0530018f0000139006300198000000400200043d0000000004620019000043a40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000042db0000c13d000043a40000013d0000001f0530018f0000139006300198000000400200043d0000000004620019000043a40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000042e70000c13d000043a40000013d0000001f0530018f0000139006300198000000400200043d0000000004620019000043a40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000042f30000c13d000043a40000013d0000138e033001970000001f0530018f0000139006300198000000400200043d00000000046200190000436c0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000043000000c13d0000436c0000013d000000000003004b000043b70000c13d0000006002000039000043de0000013d0000001f0530018f0000139006300198000000400200043d0000000004620019000043a40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000043100000c13d000043a40000013d0000001f0530018f0000139006300198000000400200043d0000000004620019000043a40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000431c0000c13d000043a40000013d0000001f0530018f0000139006300198000000400200043d0000000004620019000043a40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000043280000c13d000043a40000013d0000138e033001970000001f0530018f0000139006300198000000400200043d0000000004620019000043a40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000043350000c13d000043a40000013d0000001f0540018f0000139006400198000000400200043d0000000003620019000043450000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000038004b000043410000c13d000000000005004b000043520000613d000000000161034f0000000305500210000000000603043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f000000000013043500000060014002100000437a0000013d0000138e033001970000001f0530018f0000139006300198000000400200043d0000000004620019000043a40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b0000435c0000c13d000043a40000013d0000001f0530018f0000139006300198000000400200043d00000000046200190000436c0000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000043680000c13d000000000005004b000043790000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f000000000014043500000060013002100000138e0020009c0000138e020080410000004002200210000000000121019f00004e34000104300000138e033001970000001f0530018f0000139006300198000000400200043d0000000004620019000043a40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000043870000c13d000043a40000013d0000001f0530018f0000139006300198000000400200043d0000000004620019000043a40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000043930000c13d000043a40000013d0000138e033001970000001f0530018f0000139006300198000000400200043d0000000004620019000043a40000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000043a00000c13d000000000005004b000043b10000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f000000000014043500000060013002100000138e0020009c0000138e020080410000004002200210000000000112019f00004e34000104300000001f023000390000138f022001970000003f022000390000146604200197000000400200043d0000000004420019000000000024004b00000000050000390000000105004039000013960040009c000043e70000213d0000000100500190000043e70000c13d000000400040043f0000001f0430018f00000000063204360000139005300198000800000006001d0000000003560019000043d10000613d000000000601034f0000000807000029000000006806043c0000000007870436000000000037004b000043cd0000c13d000000000004004b000043de0000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001304350000000001020433000000000001004b000043ed0000c13d0000146001000041000000000010043f0000000901000029000000040010043f000013fd0100004100004e34000104300000143d01000041000000000010043f0000004101000039000000040010043f000013fd0100004100004e340001043000000008020000290000138e0020009c0000138e0200804100000040022002100000138e0010009c0000138e010080410000006001100210000000000121019f00004e34000104300006000000000002000600000001001d0000000901000039000000000101041a00000008011002700000139102100198000044360000613d00001421010000410000000000100443000500000002001d000000040020044300000000010004140000138e0010009c0000138e01008041000000c00110021000001422011001c700008002020000394e324e2d0000040f000000010020019000004b6b0000613d000000000101043b000000000001004b00004b630000613d000000400b00043d0000004401b00039000000060200002900000000002104350000145a0100004100000000001b0435000000000100041000001391011001970000000404b0003900000000001404350000006401b0003900000000000104350000002401b00039000000000001043500000000010004140000000502000029000000040020008c000044320000613d0000138e00b0009c0000138e0300004100000000030b401900000040033002100000138e0010009c0000138e01008041000000c001100210000000000131019f00001425011001c700050000000b001d000400000004001d4e324e280000040f0000000404000029000000050b00002900000060031002700001138e0030019d0003000000010355000000010020019000004c430000613d0000139600b0009c00004b650000213d0000004000b0043f000044380000013d000000400b00043d0000000404b000390000000701000039000000000201041a000013f70100004100000000001b0435000013f8010000410000000000140435000000000100041400000008022002700000139102200197000000040020008c000044480000c13d0000000103000031000000200030008c00000020040000390000000004034019000044740000013d0000138e00b0009c0000138e0300004100000000030b401900000040033002100000138e0010009c0000138e01008041000000c001100210000000000131019f000013fd011001c700050000000b001d4e324e2d0000040f000000050b00002900000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000044630000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b0000445f0000c13d000000000006004b000044700000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000004b7f0000613d0000001f01400039000000600110018f000000000cb1001900000000001c004b000000000200003900000001020040390000139600c0009c00004b650000213d000000010020019000004b650000c13d0000004000c0043f0000001f0030008c00004b630000a13d00000000020b0433000013910020009c00004b630000213d0000000804000039000000000404041a0000004405c00039000013fb0600004100000000006504350000002405c0003900000006060000290000000000650435000013fa0500004100000000005c04350000000405c0003900000000004504350000000004000414000000040020008c000044c10000613d0000138e00c0009c0000138e0100004100000000010c401900000040011002100000138e0040009c0000138e04008041000000c003400210000000000113019f000013fc011001c700050000000c001d4e324e2d0000040f000000050c00002900000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c0019000044ae0000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b000044aa0000c13d000000000006004b000044bb0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000004b8b0000613d0000001f01400039000000600110018f0000000001c10019000013960010009c00004b650000213d000000400010043f000000200030008c00004b630000413d00000000010c0433000100000001001d000013910010009c00004b630000213d0000140001000041000000000010044300000000010004140000138e0010009c0000138e01008041000000c00110021000001401011001c70000800b020000394e324e2d0000040f000000010020019000004b6b0000613d000000000201043b000014020020009c00004b720000813d000500000002001d0000000701000039000000000201041a000000400b00043d000013f70100004100000000001b04350000000401b00039000013f8030000410000000000310435000000000100041400000008022002700000139102200197000000040020008c000044ec0000c13d0000000103000031000000200030008c00000020040000390000000004034019000045180000013d0000138e00b0009c0000138e0300004100000000030b401900000040033002100000138e0010009c0000138e01008041000000c001100210000000000131019f000013fd011001c700040000000b001d4e324e2d0000040f000000040b00002900000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000045070000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000045030000c13d000000000006004b000045140000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000004b970000613d0000001f01400039000000600210018f0000000001b20019000000000021004b00000000020000390000000102004039000013960010009c00004b650000213d000000010020019000004b650000c13d000000400010043f000000200030008c00004b630000413d00000000020b0433000013910020009c00004b630000213d0000000801000039000000000101041a000300000001001d00001421010000410000000000100443000400000002001d000000040020044300000000010004140000138e0010009c0000138e01008041000000c00110021000001422011001c700008002020000394e324e2d0000040f000000010020019000004b6b0000613d000000000101043b000000000001004b000000040300002900004b630000613d000000400b00043d0000006401b00039000000050200002900000000002104350000004401b00039000013ff0200004100000000002104350000002401b00039000000060200002900000000002104350000143b0100004100000000001b04350000000404b00039000000030100002900000000001404350000000001000414000000040030008c00020000000b001d000045620000613d0000138e00b0009c0000138e0200004100000000020b401900000040022002100000138e0010009c0000138e01008041000000c001100210000000000121019f00001425011001c70000000002030019000500000004001d4e324e280000040f0000000504000029000000020b00002900000060031002700001138e0030019d0003000000010355000000010020019000004ba30000613d0000139600b0009c00004b650000213d0000004000b0043f0000000701000039000000000201041a000013f70100004100000000001b0435000013f8010000410000000000140435000000000100041400000008022002700000139102200197000000040020008c000045750000c13d0000000103000031000000200030008c00000020040000390000000004034019000045a00000013d0000138e00b0009c0000138e0300004100000000030b401900000040033002100000138e0010009c0000138e01008041000000c001100210000000000131019f000013fd011001c74e324e2d0000040f000000020b00002900000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b00190000458f0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b0000458b0000c13d000000000006004b0000459c0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000004bb00000613d0000001f01400039000000600110018f000000000cb100190000139600c0009c00004b650000213d0000004000c0043f000000200030008c00004b630000413d00000000020b0433000013910020009c00004b630000213d0000000804000039000000000404041a0000004405c00039000014230600004100000000006504350000142d0500004100000000005c04350000000405c0003900000000004504350000002404c0003900000000000404350000000004000414000000040020008c000045e70000613d0000138e00c0009c0000138e0100004100000000010c401900000040011002100000138e0040009c0000138e04008041000000c003400210000000000113019f000013fc011001c700050000000c001d4e324e2d0000040f000000050c00002900000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c0019000045d40000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b000045d00000c13d000000000006004b000045e10000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000004bbc0000613d0000001f01400039000000600110018f000000000bc100190000139600b0009c00004b650000213d0000004000b0043f000000200030008c00004b630000413d00000000010c0433000000000001004b0000000002000039000000010200c039000000000021004b00004b630000c13d0000000701000039000000000201041a000013f70100004100000000001b04350000000401b00039000013f8040000410000000000410435000000000100041400000008022002700000139102200197000000040020008c000046010000c13d00000020040000390000462d0000013d0000138e00b0009c0000138e0300004100000000030b401900000040033002100000138e0010009c0000138e01008041000000c001100210000000000131019f000013fd011001c700050000000b001d4e324e2d0000040f000000050b00002900000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b00190000461c0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000046180000c13d000000000006004b000046290000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000004bc80000613d0000001f01400039000000600110018f000000000cb100190000139600c0009c00004b650000213d0000004000c0043f000000200030008c00004b630000413d00000000020b0433000013910020009c00004b630000213d0000000804000039000000000404041a0000004405c00039000013fb0600004100000000006504350000002405c0003900000006060000290000000000650435000013fa0500004100000000005c04350000000405c0003900000000004504350000000004000414000000040020008c000046750000613d0000138e00c0009c0000138e0100004100000000010c401900000040011002100000138e0040009c0000138e04008041000000c003400210000000000113019f000013fc011001c700050000000c001d4e324e2d0000040f000000050c00002900000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c0019000046620000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b0000465e0000c13d000000000006004b0000466f0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000004bd40000613d0000001f01400039000000600110018f0000000001c10019000013960010009c00004b650000213d000000400010043f000000200030008c00004b630000413d00000000010c0433000500000001001d000013910010009c00004b630000213d000000050000006b000046a30000613d0000000601000029000000000010043f0000000401000039000000200010043f00000000010004140000138e0010009c0000138e01008041000000c0011002100000142e011001c700008010020000394e324e2d0000040f000000010020019000004b630000613d000000000101043b000000000201041a0000143e02200197000000000021041b0000000501000029000000000010043f0000000301000039000000200010043f00000000010004140000138e0010009c0000138e01008041000000c0011002100000142e011001c700008010020000394e324e2d0000040f000000010020019000004b630000613d000000000101043b000000000201041a000000010220008a000000000021041b0000000601000029000000000010043f0000000201000039000000200010043f00000000010004140000138e0010009c0000138e01008041000000c0011002100000142e011001c700008010020000394e324e2d0000040f000000010020019000004b630000613d000000000101043b000000000201041a0000143e02200197000000000021041b00000000010004140000138e0010009c0000138e01008041000000c00110021000001441011001c70000800d0200003900000004030000390000145d040000410000000505000029000000000600001900000006070000294e324e280000040f000000010020019000004b630000613d000000400b00043d0000000102000029000000000002004b000046f40000613d0000002001000039000300000001001d00000000011b043600000000002104350000139200b0009c00004b650000213d0000004002b00039000000400020043f0000138e0010009c0000138e01008041000000400110021000000000020b04330000138e0020009c0000138e020080410000006002200210000000000112019f00000000020004140000138e0020009c0000138e02008041000000c002200210000000000112019f00001441011001c700008010020000394e324e2d0000040f000000010020019000004b630000613d000000000101043b000400000001001d0000000701000039000000000201041a000000400c00043d000013f70100004100000000001c04350000000401c00039000013f8030000410000000000310435000000000100041400000008022002700000139102200197000000040020008c000047050000c13d0000000103000031000000200030008c00000020040000390000000004034019000047310000013d0000000701000039000000000201041a000013f70100004100000000001b04350000000401b00039000013f8030000410000000000310435000000000100041400000008022002700000139102200197000000040020008c000048150000c13d0000000103000031000000200030008c00000020040000390000000004034019000048410000013d0000138e00c0009c0000138e0300004100000000030c401900000040033002100000138e0010009c0000138e01008041000000c001100210000000000131019f000013fd011001c700020000000c001d4e324e2d0000040f000000020c00002900000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c0019000047200000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b0000471c0000c13d000000000006004b0000472d0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000004c500000613d0000001f01400039000000600110018f000000000bc1001900000000001b004b000000000200003900000001020040390000139600b0009c00004b650000213d000000010020019000004b650000c13d0000004000b0043f000000200030008c00004b630000413d00000000020c0433000013910020009c00004b630000213d0000000804000039000000000404041a0000004405b000390000145e0600004100000000006504350000002405b0003900000004060000290000000000650435000013fe0500004100000000005b04350000000405b0003900000000004504350000000004000414000000040020008c0000477e0000613d0000138e00b0009c0000138e0100004100000000010b401900000040011002100000138e0040009c0000138e04008041000000c003400210000000000113019f000013fc011001c700020000000b001d4e324e2d0000040f000000020b00002900000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b00190000476b0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000047670000c13d000000000006004b000047780000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000004c5c0000613d0000001f01400039000000600110018f000000000ab100190000139600a0009c00004b650000213d0000004000a0043f000000200030008c00004b630000413d00000000010b0433000200000001001d000000000001004b00004b6c0000613d0000000701000039000000000201041a000013f70100004100000000001a04350000000401a00039000013f8040000410000000000410435000000000100041400000008022002700000139102200197000000040020008c000047c10000613d0000138e00a0009c0000138e0300004100000000030a401900000040033002100000138e0010009c0000138e01008041000000c001100210000000000131019f000013fd011001c700010000000a001d4e324e2d0000040f000000010a00002900000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0540018f000300000004001d000000200640019000000000046a0019000047b00000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000048004b000047ac0000c13d000000000005004b000047bd0000613d000000000661034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000100000003001f0003000000010355000000010020019000004c680000613d00000003010000290000001f01100039000000600110018f0000000001a10019000013960010009c00004b650000213d000000400010043f000000200030008c00004b630000413d00000000020a0433000013910020009c00004b630000213d0000000801000039000000000101041a000100000001001d00001421010000410000000000100443000300000002001d000000040020044300000000010004140000138e0010009c0000138e01008041000000c00110021000001422011001c700008002020000394e324e2d0000040f000000010020019000004b6b0000613d000000000101043b000000000001004b000000030300002900004b630000613d0000000201000029000000010110008a000000400b00043d0000006402b0003900000000001204350000004401b000390000145e0200004100000000002104350000002401b00039000000040200002900000000002104350000143b0100004100000000001b04350000000404b00039000000010100002900000000001404350000000001000414000000040030008c000049140000613d0000138e00b0009c0000138e0200004100000000020b401900000040022002100000138e0010009c0000138e01008041000000c001100210000000000121019f00001425011001c7000000000203001900040000000b001d000300000004001d4e324e280000040f0000000304000029000000040b00002900000060031002700001138e0030019d00030000000103550000000100200190000049140000c13d0000138e033001970000001f0530018f0000139006300198000000400200043d000000000462001900004cc30000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b000048100000c13d00004cc30000013d0000138e00b0009c0000138e0300004100000000030b401900000040033002100000138e0010009c0000138e01008041000000c001100210000000000131019f000013fd011001c700040000000b001d4e324e2d0000040f000000040b00002900000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000048300000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b0000482c0000c13d000000000006004b0000483d0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000004c930000613d0000001f01400039000000600110018f000000000cb1001900000000001c004b000000000200003900000001020040390000139600c0009c00004b650000213d000000010020019000004b650000c13d0000004000c0043f000000200030008c00004b630000413d00000000020b0433000013910020009c00004b630000213d0000000804000039000000000404041a0000004405c0003900001458060000410000000000650435000013fe0500004100000000005c04350000000405c0003900000000004504350000002404c0003900000000000404350000000004000414000000040020008c0000488d0000613d0000138e00c0009c0000138e0100004100000000010c401900000040011002100000138e0040009c0000138e04008041000000c003400210000000000113019f000013fc011001c700040000000c001d4e324e2d0000040f000000040c00002900000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c00190000487a0000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b000048760000c13d000000000006004b000048870000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000004c9f0000613d0000001f01400039000000600110018f000000000bc100190000139600b0009c00004b650000213d0000004000b0043f000000200030008c00004b630000413d00000000010c0433000400010010003e00004b6c0000613d0000000701000039000000000201041a000013f70100004100000000001b04350000000401b00039000013f8040000410000000000410435000000000100041400000008022002700000139102200197000000040020008c000048a40000c13d0000002004000039000048d00000013d0000138e00b0009c0000138e0300004100000000030b401900000040033002100000138e0010009c0000138e01008041000000c001100210000000000131019f000013fd011001c700030000000b001d4e324e2d0000040f000000030b00002900000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b0019000048bf0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000048bb0000c13d000000000006004b000048cc0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000004cab0000613d0000001f01400039000000600110018f0000000001b10019000013960010009c00004b650000213d000000400010043f000000200030008c00004b630000413d00000000020b0433000013910020009c00004b630000213d0000000801000039000000000101041a000200000001001d00001421010000410000000000100443000300000002001d000000040020044300000000010004140000138e0010009c0000138e01008041000000c00110021000001422011001c700008002020000394e324e2d0000040f000000010020019000004b6b0000613d000000000101043b000000000001004b000000030300002900004b630000613d000000400b00043d0000006401b00039000000040200002900000000002104350000004401b00039000014580200004100000000002104350000143b0100004100000000001b04350000000404b00039000000020100002900000000001404350000002401b0003900000000000104350000000001000414000000040030008c000049140000613d0000138e00b0009c0000138e0200004100000000020b401900000040022002100000138e0010009c0000138e01008041000000c001100210000000000121019f00001425011001c7000000000203001900040000000b001d000300000004001d4e324e280000040f0000000304000029000000040b00002900000060031002700001138e0030019d0003000000010355000000010020019000004cb70000613d0000139600b0009c00004b650000213d0000004000b0043f0000000a01000039000000000101041a0000139102100198000049530000613d00001421010000410000000000100443000400000002001d000000040020044300000000010004140000138e0010009c0000138e01008041000000c00110021000001422011001c700008002020000394e324e2d0000040f000000010020019000004b6b0000613d000000000101043b000000000001004b00004b630000613d000000400b00043d0000004401b00039000000060200002900000000002104350000145a0100004100000000001b0435000000000100041000001391011001970000000404b0003900000000001404350000006401b0003900000000000104350000002401b00039000000000001043500000000010004140000000402000029000000040020008c000049500000613d0000138e00b0009c0000138e0300004100000000030b401900000040033002100000138e0010009c0000138e01008041000000c001100210000000000131019f00001425011001c700040000000b001d000300000004001d4e324e280000040f0000000304000029000000040b00002900000060031002700001138e0030019d0003000000010355000000010020019000004c740000613d0000139600b0009c00004b650000213d0000004000b0043f0000000701000039000000000201041a000013f70100004100000000001b0435000013f8010000410000000000140435000000000100041400000008022002700000139102200197000000040020008c000049630000c13d0000000103000031000000200030008c000000200400003900000000040340190000498f0000013d0000138e00b0009c0000138e0300004100000000030b401900000040033002100000138e0010009c0000138e01008041000000c001100210000000000131019f000013fd011001c700040000000b001d4e324e2d0000040f000000040b00002900000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b00190000497e0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b0000497a0000c13d000000000006004b0000498b0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000004be00000613d0000001f01400039000000600110018f0000000001b10019000013960010009c00004b650000213d000000400010043f000000200030008c00004b630000413d00000000020b0433000013910020009c00004b630000213d0000000801000039000000000101041a000300000001001d00001421010000410000000000100443000400000002001d000000040020044300000000010004140000138e0010009c0000138e01008041000000c00110021000001422011001c700008002020000394e324e2d0000040f000000010020019000004b6b0000613d000000000101043b000000000001004b000000040300002900004b630000613d000000400b00043d0000004401b00039000013fb0200004100000000002104350000002401b0003900000006020000290000000000210435000014380100004100000000001b04350000000404b00039000000030100002900000000001404350000006401b0003900000000000104350000000001000414000000040030008c00020000000b001d000049d30000613d0000138e00b0009c0000138e0200004100000000020b401900000040022002100000138e0010009c0000138e01008041000000c001100210000000000121019f00001425011001c70000000002030019000400000004001d4e324e280000040f0000000404000029000000020b00002900000060031002700001138e0030019d0003000000010355000000010020019000004bec0000613d0000139600b0009c00004b650000213d0000004000b0043f0000000701000039000000000201041a000013f70100004100000000001b0435000013f8010000410000000000140435000000000100041400000008022002700000139102200197000000040020008c000049e60000c13d0000000103000031000000200030008c0000002004000039000000000403401900004a110000013d0000138e00b0009c0000138e0300004100000000030b401900000040033002100000138e0010009c0000138e01008041000000c001100210000000000131019f000013fd011001c74e324e2d0000040f000000020b00002900000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900004a000000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b000049fc0000c13d000000000006004b00004a0d0000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000004bf90000613d0000001f01400039000000600110018f000000000cb100190000139600c0009c00004b650000213d0000004000c0043f000000200030008c00004b630000413d00000000020b0433000013910020009c00004b630000213d0000000804000039000000000404041a0000004405c0003900001459060000410000000000650435000013fe0500004100000000005c04350000000405c0003900000000004504350000002404c0003900000000000404350000000004000414000000040020008c00004a580000613d0000138e00c0009c0000138e0100004100000000010c401900000040011002100000138e0040009c0000138e04008041000000c003400210000000000113019f000013fc011001c700040000000c001d4e324e2d0000040f000000040c00002900000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057c001900004a450000613d000000000801034f00000000090c0019000000008a08043c0000000009a90436000000000059004b00004a410000c13d000000000006004b00004a520000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000004c050000613d0000001f01400039000000600110018f000000000bc100190000139600b0009c00004b650000213d0000004000b0043f000000200030008c00004b630000413d00000000020c0433000400010020003e00004b6c0000613d0000000702000039000000000202041a000013f70400004100000000004b04350000000404b00039000013f8050000410000000000540435000000000400041400000008022002700000139102200197000000040020008c00004a9b0000613d0000138e00b0009c0000138e0100004100000000010b401900000040011002100000138e0040009c0000138e04008041000000c003400210000000000113019f000013fd011001c700030000000b001d4e324e2d0000040f000000030b00002900000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900004a880000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00004a840000c13d000000000006004b00004a950000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000004c110000613d0000001f01400039000000600110018f0000000001b10019000013960010009c00004b650000213d000000400010043f000000200030008c00004b630000413d00000000020b0433000013910020009c00004b630000213d0000000801000039000000000101041a000200000001001d00001421010000410000000000100443000300000002001d000000040020044300000000010004140000138e0010009c0000138e01008041000000c00110021000001422011001c700008002020000394e324e2d0000040f000000010020019000004b6b0000613d000000000101043b000000000001004b000000030300002900004b630000613d000000400b00043d0000006401b00039000000040200002900000000002104350000004401b00039000014590200004100000000002104350000143b0100004100000000001b04350000000404b00039000000020100002900000000001404350000002401b0003900000000000104350000000001000414000000040030008c00010000000b001d00004add0000613d0000138e00b0009c0000138e0200004100000000020b401900000040022002100000138e0010009c0000138e01008041000000c001100210000000000121019f00001425011001c70000000002030019000400000004001d4e324e280000040f0000000404000029000000010b00002900000060031002700001138e0030019d0003000000010355000000010020019000004c1d0000613d0000139600b0009c00004b650000213d0000004000b0043f0000000701000039000000000201041a000013f70100004100000000001b0435000013f8010000410000000000140435000000000100041400000008022002700000139102200197000000040020008c00004af00000c13d0000000103000031000000200030008c0000002004000039000000000403401900004b1b0000013d0000138e00b0009c0000138e0300004100000000030b401900000040033002100000138e0010009c0000138e01008041000000c001100210000000000131019f000013fd011001c74e324e2d0000040f000000010b00002900000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057b001900004b0a0000613d000000000801034f00000000090b0019000000008a08043c0000000009a90436000000000059004b00004b060000c13d000000000006004b00004b170000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f0003000000010355000000010020019000004c2a0000613d0000001f01400039000000600110018f0000000001b10019000013960010009c00004b650000213d000000400010043f000000200030008c00004b630000413d00000000020b0433000013910020009c00004b630000213d0000000801000039000000000101041a000300000001001d00001421010000410000000000100443000400000002001d000000040020044300000000010004140000138e0010009c0000138e01008041000000c00110021000001422011001c700008002020000394e324e2d0000040f000000010020019000004b6b0000613d000000000101043b000000000001004b000000040300002900004b630000613d000000400400043d00000044014000390000143202000041000000000021043500000024014000390000000602000029000000000021043500001424010000410000000000140435000000040140003900000003020000290000000000210435000000640140003900000000000104350000000001000414000000040030008c00004b5d0000613d0000138e0040009c0000138e02000041000000000204401900000040022002100000138e0010009c0000138e01008041000000c001100210000000000121019f00001425011001c70000000002030019000400000004001d4e324e280000040f000000040400002900000060031002700001138e0030019d0003000000010355000000010020019000004c360000613d000013960040009c00004b650000213d000000400040043f000000050000006b00004b790000613d000000000001042d000000000100001900004e34000104300000143d01000041000000000010043f0000004101000039000000040010043f000013fd0100004100004e3400010430000000000001042f0000143d01000041000000000010043f0000001101000039000000040010043f000013fd0100004100004e34000104300000140301000041000000000010043f0000002001000039000000040010043f000000240020043f000014040100004100004e34000104300000140701000041000000000010043f0000000601000029000000040010043f000013fd0100004100004e34000104300000001f0530018f0000139006300198000000400200043d000000000462001900004cc30000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004b860000c13d00004cc30000013d0000001f0530018f0000139006300198000000400200043d000000000462001900004cc30000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004b920000c13d00004cc30000013d0000001f0530018f0000139006300198000000400200043d000000000462001900004cc30000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004b9e0000c13d00004cc30000013d0000138e033001970000001f0530018f0000139006300198000000400200043d000000000462001900004cc30000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004bab0000c13d00004cc30000013d0000001f0530018f0000139006300198000000400200043d000000000462001900004cc30000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004bb70000c13d00004cc30000013d0000001f0530018f0000139006300198000000400200043d000000000462001900004cc30000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004bc30000c13d00004cc30000013d0000001f0530018f0000139006300198000000400200043d000000000462001900004cc30000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004bcf0000c13d00004cc30000013d0000001f0530018f0000139006300198000000400200043d000000000462001900004cc30000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004bdb0000c13d00004cc30000013d0000001f0530018f0000139006300198000000400200043d000000000462001900004c800000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004be70000c13d00004c800000013d0000138e033001970000001f0530018f0000139006300198000000400200043d000000000462001900004c800000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004bf40000c13d00004c800000013d0000001f0530018f0000139006300198000000400200043d000000000462001900004c800000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004c000000c13d00004c800000013d0000001f0530018f0000139006300198000000400200043d000000000462001900004c800000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004c0c0000c13d00004c800000013d0000001f0530018f0000139006300198000000400200043d000000000462001900004c800000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004c180000c13d00004c800000013d0000138e033001970000001f0530018f0000139006300198000000400200043d000000000462001900004cc30000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004c250000c13d00004cc30000013d0000001f0530018f0000139006300198000000400200043d000000000462001900004c800000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004c310000c13d00004c800000013d0000138e033001970000001f0530018f0000139006300198000000400200043d000000000462001900004cc30000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004c3e0000c13d00004cc30000013d0000138e033001970000001f0530018f0000139006300198000000400200043d000000000462001900004c800000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004c4b0000c13d00004c800000013d0000001f0530018f0000139006300198000000400200043d000000000462001900004cc30000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004c570000c13d00004cc30000013d0000001f0530018f0000139006300198000000400200043d000000000462001900004cc30000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004c630000c13d00004cc30000013d0000001f0530018f0000139006300198000000400200043d000000000462001900004cc30000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004c6f0000c13d00004cc30000013d0000138e033001970000001f0530018f0000139006300198000000400200043d000000000462001900004c800000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004c7c0000c13d000000000005004b00004c8d0000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f000000000014043500000060013002100000138e0020009c0000138e020080410000004002200210000000000121019f00004e34000104300000001f0530018f0000139006300198000000400200043d000000000462001900004cc30000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004c9a0000c13d00004cc30000013d0000001f0530018f0000139006300198000000400200043d000000000462001900004cc30000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004ca60000c13d00004cc30000013d0000001f0530018f0000139006300198000000400200043d000000000462001900004cc30000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004cb20000c13d00004cc30000013d0000138e033001970000001f0530018f0000139006300198000000400200043d000000000462001900004cc30000613d000000000701034f0000000008020019000000007907043c0000000008980436000000000048004b00004cbf0000c13d000000000005004b00004cd00000613d000000000161034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f000000000014043500000060013002100000138e0020009c0000138e020080410000004002200210000000000112019f00004e3400010430000000400200043d00000020030000390000000003320436000013910110019700000000001304350000146b0020009c00004cf30000813d0000004001200039000000400010043f0000138e0030009c0000138e03008041000000400130021000000000020204330000138e0020009c0000138e020080410000006002200210000000000112019f00000000020004140000138e0020009c0000138e02008041000000c002200210000000000112019f00001441011001c700008010020000394e324e2d0000040f000000010020019000004cf90000613d000000000101043b000000000001042d0000143d01000041000000000010043f0000004101000039000000040010043f000013fd0100004100004e3400010430000000000100001900004e34000104300007000000000002000400000005001d000200000004001d000100000002001d000300000001001d00001421010000410000000000100443000500000003001d000000040030044300000000010004140000138e0010009c0000138e01008041000000c00110021000001422011001c700008002020000394e324e2d0000040f000000010020019000004db00000613d000000000101043b000000000001004b00004dad0000613d000000400d00043d0000006401d00039000000800c0000390000000000c104350000004401d0003900000002020000290000000000210435000000010100002900001391011001970000002402d000390000000000120435000014650100004100000000001d0435000000030100002900001391011001970000000402d0003900000000001204350000008402d0003900000004010000290000000041010434000000000012043500000005020000290000139102200197000000200b00008a0000000006b1016f0000001f0510018f000000a403d00039000000000034004b00004d3d0000813d000000000006004b00004d390000613d00000000085400190000000007530019000000200770008a000000200880008a0000000009670019000000000a680019000000000a0a04330000000000a90435000000200660008c00004d330000c13d000000000005004b00004d530000613d000000000703001900004d490000013d0000000007630019000000000006004b00004d460000613d00000000080400190000000009030019000000008a0804340000000009a90436000000000079004b00004d420000c13d000000000005004b00004d530000613d00000000046400190000000305500210000000000607043300000000065601cf000000000656022f00000000040404330000010005500089000000000454022f00000000045401cf000000000464019f0000000000470435000000000331001900000000000304350000000003000414000000040020008c00004d600000c13d0000000005000415000000070550008a00000005055002100000000103000031000000200030008c0000002004000039000000000403401900004d980000013d00030000000c001d0000001f011000390000000001b1016f000000a4011000390000138e0010009c0000138e0100804100000060011002100000138e00d0009c0000138e0400004100000000040d40190000004004400210000000000141019f0000138e0030009c0000138e03008041000000c003300210000000000131019f000500000002001d00040000000d001d4e324e280000040f000000040d00002900000060031002700000138e03300197000000200030008c000000200400003900000000040340190000001f0640018f000000200740019000000000057d001900004d830000613d000000000801034f00000000090d0019000000008a08043c0000000009a90436000000000059004b00004d7f0000c13d000000000006004b00004d900000613d000000000771034f0000000306600210000000000805043300000000086801cf000000000868022f000000000707043b0000010006600089000000000767022f00000000066701cf000000000686019f0000000000650435000100000003001f00030000000103550000000005000415000000060550008a00000005055002100000000100200190000000050200002900004db10000613d0000001f01400039000000600410018f0000000001d40019000000000041004b00000000040000390000000104004039000013960010009c00004de50000213d000000010040019000004de50000c13d000000400010043f0000001f0030008c00004dae0000a13d00000000010d04330000144d0010019800004dae0000c13d0000000503500270000000000301001f0000146701100197000014650010009c00004de00000c13d000000000001042d000000000100001900004e3400010430000000000001042f000000000003004b00004db50000c13d000000600200003900004ddc0000013d0000001f023000390000138f022001970000003f022000390000146604200197000000400200043d0000000004420019000000000024004b00000000050000390000000105004039000013960040009c00004de50000213d000000010050019000004de50000c13d000000400040043f0000001f0430018f00000000063204360000139005300198000300000006001d000000000356001900004dcf0000613d000000000601034f0000000307000029000000006806043c0000000007870436000000000037004b00004dcb0000c13d000000000004004b00004ddc0000613d000000000151034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001304350000000001020433000000000001004b000000050200002900004deb0000c13d0000146001000041000000000010043f000000040020043f000013fd0100004100004e34000104300000143d01000041000000000010043f0000004101000039000000040010043f000013fd0100004100004e340001043000000003020000290000138e0020009c0000138e0200804100000040022002100000138e0010009c0000138e010080410000006001100210000000000121019f00004e3400010430000000000001042f0000138e0010009c0000138e0100804100000040011002100000138e0020009c0000138e020080410000006002200210000000000112019f00000000020004140000138e0020009c0000138e02008041000000c002200210000000000112019f00001441011001c700008010020000394e324e2d0000040f000000010020019000004e080000613d000000000101043b000000000001042d000000000100001900004e340001043000000000050100190000000000200443000000050030008c00004e180000413d000000040100003900000000020000190000000506200210000000000664001900000005066002700000000006060031000000000161043a0000000102200039000000000031004b00004e100000413d0000138e0030009c0000138e03008041000000600130021000000000020004140000138e0020009c0000138e02008041000000c002200210000000000112019f0000146c011001c700000000020500194e324e2d0000040f000000010020019000004e270000613d000000000101043b000000000001042d000000000001042f00004e2b002104210000000102000039000000000001042d0000000002000019000000000001042d00004e30002104230000000102000039000000000001042d0000000002000019000000000001042d00004e320000043200004e330001042e00004e340001043000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffff00000000000000000000000000000000000000000000000000000001ffffffe000000000000000000000000000000000000000000000000000000000ffffffe0000000000000000000000000ffffffffffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000ffffffffffffffbf474947412d524f4d000000000000000000000000000000000000000000000000524f4d0000000000000000000000000000000000000000000000000000000000474947412d524f4d202300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffd6f21326ab749d5729fcba5677c79037b459436ab7bff709c9d06ce9f10c1a9d290decd9548b62a8d60345a988386fc84ba6bc95484008f6362f93160ef3e56302000000000000000000000000000000000000200000000000000000000000004ef1d2ad89edf8c4d91132028e8195cdf30bb4b5053d4f8cd260341d4805f30ab10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf6ffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffff00d9a37d7c74ec5b11ca3635057b719aed5158ff7704d65f5572452e4c68c79cda209699368efae3c2ab13a6e9d9f9aceb6c5aebfb5ffd7bd0a9ff6281a30b5739df6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8c70000000200000000000000000000000000000080000001000000000000000000000000000000000000000000000000000000000000000000000000008245e47100000000000000000000000000000000000000000000000000000000bb997f2600000000000000000000000000000000000000000000000000000000dd898b2e00000000000000000000000000000000000000000000000000000000e7277dd600000000000000000000000000000000000000000000000000000000ed022ebc00000000000000000000000000000000000000000000000000000000ed022ebd00000000000000000000000000000000000000000000000000000000f0e56f0d00000000000000000000000000000000000000000000000000000000e7277dd700000000000000000000000000000000000000000000000000000000e985e9c500000000000000000000000000000000000000000000000000000000e6c35a9000000000000000000000000000000000000000000000000000000000e6c35a9100000000000000000000000000000000000000000000000000000000e725f87700000000000000000000000000000000000000000000000000000000dd898b2f00000000000000000000000000000000000000000000000000000000df30e54b00000000000000000000000000000000000000000000000000000000c87b56dc00000000000000000000000000000000000000000000000000000000d3b551cf00000000000000000000000000000000000000000000000000000000d3b551d000000000000000000000000000000000000000000000000000000000d5abeb0100000000000000000000000000000000000000000000000000000000c87b56dd00000000000000000000000000000000000000000000000000000000ce62bc8c00000000000000000000000000000000000000000000000000000000bb997f2700000000000000000000000000000000000000000000000000000000c03ad0be00000000000000000000000000000000000000000000000000000000c4e41b2200000000000000000000000000000000000000000000000000000000a16ad7d900000000000000000000000000000000000000000000000000000000a485b4ce00000000000000000000000000000000000000000000000000000000b76ac0d600000000000000000000000000000000000000000000000000000000b76ac0d700000000000000000000000000000000000000000000000000000000b88d4fde00000000000000000000000000000000000000000000000000000000a485b4cf00000000000000000000000000000000000000000000000000000000b55cd04b00000000000000000000000000000000000000000000000000000000a16ad7da00000000000000000000000000000000000000000000000000000000a22cb46500000000000000000000000000000000000000000000000000000000a2309ff80000000000000000000000000000000000000000000000000000000088e4f1ca0000000000000000000000000000000000000000000000000000000095d89b400000000000000000000000000000000000000000000000000000000095d89b410000000000000000000000000000000000000000000000000000000099d3a8860000000000000000000000000000000000000000000000000000000088e4f1cb000000000000000000000000000000000000000000000000000000008da5cb5b000000000000000000000000000000000000000000000000000000008245e4720000000000000000000000000000000000000000000000000000000082840eed00000000000000000000000000000000000000000000000000000000835f3967000000000000000000000000000000000000000000000000000000002fb0b8730000000000000000000000000000000000000000000000000000000055f804b2000000000000000000000000000000000000000000000000000000006352211d0000000000000000000000000000000000000000000000000000000077278ae70000000000000000000000000000000000000000000000000000000077278ae8000000000000000000000000000000000000000000000000000000008129fc1c000000000000000000000000000000000000000000000000000000006352211e0000000000000000000000000000000000000000000000000000000070a08231000000000000000000000000000000000000000000000000000000005c975aba000000000000000000000000000000000000000000000000000000005c975abb000000000000000000000000000000000000000000000000000000005d1ca6310000000000000000000000000000000000000000000000000000000055f804b3000000000000000000000000000000000000000000000000000000005633a3630000000000000000000000000000000000000000000000000000000042842e0d000000000000000000000000000000000000000000000000000000004c0f38c1000000000000000000000000000000000000000000000000000000004c0f38c2000000000000000000000000000000000000000000000000000000004f558e790000000000000000000000000000000000000000000000000000000042842e0e0000000000000000000000000000000000000000000000000000000042966c68000000000000000000000000000000000000000000000000000000002fb0b8740000000000000000000000000000000000000000000000000000000032cb6b0c0000000000000000000000000000000000000000000000000000000040c10f190000000000000000000000000000000000000000000000000000000015be71fe0000000000000000000000000000000000000000000000000000000023b872dc00000000000000000000000000000000000000000000000000000000267659e100000000000000000000000000000000000000000000000000000000267659e2000000000000000000000000000000000000000000000000000000002e1a7d4d0000000000000000000000000000000000000000000000000000000023b872dd00000000000000000000000000000000000000000000000000000000248b71fc0000000000000000000000000000000000000000000000000000000015be71ff0000000000000000000000000000000000000000000000000000000016c38b3c0000000000000000000000000000000000000000000000000000000018160ddd00000000000000000000000000000000000000000000000000000000081812fb000000000000000000000000000000000000000000000000000000000ca1c5c8000000000000000000000000000000000000000000000000000000000ca1c5c9000000000000000000000000000000000000000000000000000000001328357f00000000000000000000000000000000000000000000000000000000081812fc00000000000000000000000000000000000000000000000000000000095ea7b3000000000000000000000000000000000000000000000000000000000035a9ae0000000000000000000000000000000000000000000000000000000001ffc9a70000000000000000000000000000000000000000000000000000000006fdde030000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002000000080000000000000000053e41c1e000000000000000000000000000000000000000000000000000000009750ad73d9615445751d3fd0a61d867ae6a6dd1dfb5f65ef07fe835b7d5ca6bd0000000000000000000000000000000000000024000000800000000000000000e81b22ea0000000000000000000000000000000000000000000000000000000002016836a56b71f0d02689e69e326f4f4c1b9057164ef592671cf0d37c8040c000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000000024000000000000000000000000a1b9224c0000000000000000000000000000000000000000000000000000000030ae2c83fb63a1d7345739c2148d1bd925ce1b962c11197a573f48712e3c42d6796b89b91644bc98cd93958e4c9038275d622183e25ac5af08cc6b5d95539132020000020000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000000000000000000001000000006dfcc650000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044000000000000000000000000401b6ade0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040000000000000000000000007e2732890000000000000000000000000000000000000000000000000000000007fef633000000000000000000000000000000000000000000000000000000002361458367e696363fbcc70777d07ebbd2394e89fd0adcaf147faccd1d294d608a4bcc90000000000000000000000000000000000000000000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8000000000000000000000000000000000000000000000000000000000000000e217cc52bb17854a0b236c2e7b936de0d03c3e8e627c48d806ac42e6b4fd8b9f0000000000184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000000000000000000000000000000000000000004ee2d6d415b85acef810000000000000000000000000000000000000000000004ee2d6d415b85acef80ffffffff000000000000000000000000000000000000000000000000002386f26fc1000000000000000000000000000000000000ffffffffffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000005f5e10000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff30313233343536373839616263646566000000000000000000000000000000007f000000000000000000000000000000000000000000000000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0000000000000000000000000000000000000000000000000ffffffffffffff7fc36dd7ea000000000000000000000000000000000000000000000000000000009f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a65c975abb000000000000000000000000000000000000000000000000000000005061757361626c653a207061757365640000000000000000000000000000000008c379a0000000000000000000000000000000000000000000000000000000000161a64a00000000000000000000000000000000000000000000000000000000241ecf16d79d0f8dbfb92cbc07fe17840425976cf0667f022fe9877caa831b0800000000000000000000000000000000000000440000008000000000000000001806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b8302000002000000000000000000000000000000240000000000000000000000009e7ed7f8e6dcd193d98e2fd5ebd44790ad3072ac13a6c8399c17d661a1faa4bdf2c071ca000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000084000000000000000000000000ffffffffffffffffffffff0000000000000000000000000000000000000000ffa4b91481000000000000000000000000000000000000000000000000000000006818841ab9979379b712f05bf5316284ac48e388dba4038f832cb3c37f7aeeaf000000000000000000000000000000000000000000000000ffffffffffffffdf6e6578697374656e7420746f6b656e00000000000000000000000000000000004552433732314d657461646174613a2055524920717565727920666f72206e6fbfa2ccd2000000000000000000000000000000000000000000000000000000006516897000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000004000000000000000000000000017307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c315b08ba180000000000000000000000000000000000000000000000000000000007b920aa0000000000000000000000000000000000000000000000000000000093c0ba99f1a18bcdc81fcbcb6b4f15a9a6725f937075aed6fac107ffcb147068d3dc2a3a14cbd0cdbf3069fc3927e48506f271b9dda2c21625b93e6a99d3eb53fc425f2263d0df187444b70e47283d622c70181c5baebb1306a01edba1ce184c47696761526f6d4e4654000000000000000000000000000000000000000000000dc149f000000000000000000000000000000000000000000000000000000000421683f821a0574472445355be6d2b769119e8515f8376a1d7878523dfdecf7b0a41b90f00000000000000000000000000000000000000000000000000000000e95c048700000000000000000000000000000000000000000000000000000000a709fd3aa96d9faf770e44a5aef2f4808a6fe3a5ddf546568f36ad3a3873f31d9b29de69000000000000000000000000000000000000000000000000000000007e61c209e219816f2d6552de7fdbac392549e401c2ca89cd18a229b82bce31a24e487b7100000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffff00000000000000000000000000000000000000006b656e0000000000000000000000000000000000000000000000000000000000596f7520617265206e6f7420746865206f776e6572206f66207468697320746f0200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001ffffffffffffffe0000000000000000000000000000000000000000000000003ffffffffffffffe05472616e73666572206661696c656400000000000000000000000000000000003ee5aeb5000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000000000000065d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2585db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa5061757361626c653a206e6f7420706175736564000000000000000000000000a9fbf51f000000000000000000000000000000000000000000000000000000008c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92500000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff7c1ced5effffffffffffffffffffffffffffffffffffffffffffffffffffffff80ac58cd000000000000000000000000000000000000000000000000000000007c1ced5f0000000000000000000000000000000000000000000000000000000001ffc9a7000000000000000000000000000000000000000000000000000000005b5e139f00000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff310ab089e4439a4c15d089f94afb7896ff553aecb10793d0ab882de59d99a32e00000000000000000000000000000000000000000000000100000000000000007ec44d5489e2b86ed2f87d84b04b5a3949fba967937842e10302a5545dfc6315a4461be494c8ac4161bbebae7582b8b9702b218cee52e3af7374f39c418f8bdecdcba5b50000000000000000000000000000000000000000000000000000000047616d654e46543a20546f6b656e20697320736f756c626f756e640000000000177e802f00000000000000000000000000000000000000000000000000000000ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efea06f38f7e4f15e87567361213c28f235cccdaa1d7fd34c9db1dfe9489c6a09164283d7b0000000000000000000000000000000000000000000000000000000064a0ae92000000000000000000000000000000000000000000000000000000000200000200000000000000000000000000000044000000000000000000000000a2a9f6940e96680af2fe721eb59341cde71d9b7ae61dc834d205d6c59360268ec30436e90000000000000000000000000000000000000000000000000000000073c6ac6e00000000000000000000000000000000000000000000000000000000150b7a020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003ffffffe0ffffffff00000000000000000000000000000000000000000000000000000000608e8583c5619bbc3db921ebeaef749afb02ec159f0152f9091151af16e87a3cd7fe74ba2795604f471717a6182ac81070ad95ecee0b7d8ebcfbec785af7e79645786365656473206d617820737570706c790000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffc002000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a158145241dbeb03784c8c04d933567ca2d19265523778ef7e9b4466afd8fce8

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000000000000000000000000000000000000000002710000000000000000000000000b5f84708957e5628c363709ae1d4cb346081fbf6

-----Decoded View---------------
Arg [0] : maxSupply (uint256): 10000
Arg [1] : gameRegistryAddress (address): 0xb5f84708957E5628C363709AE1d4CB346081fbf6

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000002710
Arg [1] : 000000000000000000000000b5f84708957e5628c363709ae1d4cb346081fbf6


[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.